diff --git a/EVENTS.txt b/EVENTS.txt
index 1a329b9c0d..6cc1a7fe1c 100644
--- a/EVENTS.txt
+++ b/EVENTS.txt
@@ -1075,3 +1075,43 @@ StartCloseNoticeListItemElement: Before the closing of a notice list eleme
EndCloseNoticeListItemElement: After the closing of a notice list element
- $nli: The notice list item being shown
+
+StartGroupEditFormData: Beginning the group edit form entries
+- $form: The form widget being shown
+
+EndGroupEditFormData: Ending the group edit form entries
+- $form: The form widget being shown
+
+StartGroupSave: After initializing but before saving a group
+- &$group: group about to be saved
+
+EndGroupSave: After saving a group, aliases, and first member
+- $group: group that was saved
+
+StartInterpretCommand: Before running a command
+- $cmd: First word in the string, 'foo' in 'foo argument'
+- $arg: Argument, if any, like 'argument' in 'foo argument'
+- $user: User who issued the command
+- &$result: Resulting command; you can set this!
+
+EndInterpretCommand: Before running a command
+- $cmd: First word in the string, 'foo' in 'foo argument'
+- $arg: Argument, if any, like 'argument' in 'foo argument'
+- $user: User who issued the command
+- $result: Resulting command
+
+StartGroupActionsList: Start the list of actions on a group profile page (after
, before first
)
+- $action: action being executed (for output and params)
+- $group: group for the page
+
+EndGroupActionsList: End the list of actions on a group profile page (before
, after last )
+- $action: action being executed (for output and params)
+- $group: group for the page
+
+StartGroupProfileElements: Start showing stuff about the group on its profile page
+- $action: action being executed (for output and params)
+- $group: group for the page
+
+EndGroupProfileElements: Start showing stuff about the group on its profile page
+- $action: action being executed (for output and params)
+- $group: group for the page
diff --git a/README b/README
index a6db6d9c24..0dcbeea239 100644
--- a/README
+++ b/README
@@ -1283,7 +1283,7 @@ biolimit: max character length of bio; 0 means no limit; null means to use
backup: whether users can backup their own profiles. Defaults to true.
restore: whether users can restore their profiles from backup files. Defaults
to true.
-delete: whether users can delete their own accounts. Defaults to true.
+delete: whether users can delete their own accounts. Defaults to false.
move: whether users can move their accounts to another server. Defaults
to true.
@@ -1592,6 +1592,24 @@ proxy_user: Username to use for authenticating to the HTTP proxy. Default null.
proxy_password: Password to use for authenticating to the HTTP proxy. Default null.
proxy_auth_scheme: Scheme to use for authenticating to the HTTP proxy. Default null.
+plugins
+-------
+
+default: associative array mapping plugin name to array of arguments. To disable
+ a default plugin, unset its value in this array.
+locale_path: path for finding plugin locale files. In the plugin's directory
+ by default.
+server: Server to find static files for a plugin when the page is plain old HTTP.
+ Defaults to site/server (same as pages). Use this to move plugin CSS and
+ JS files to a CDN.
+sslserver: Server to find static files for a plugin when the page is HTTPS. Defaults
+ to site/server (same as pages). Use this to move plugin CSS and JS files
+ to a CDN.
+path: Path to the plugin files. defaults to site/path + '/plugins/'. Expects that
+ each plugin will have a subdirectory at plugins/NameOfPlugin. Change this
+ if you're using a CDN.
+sslpath: Path to use on the SSL server. Same as plugins/path.
+
Plugins
=======
diff --git a/actions/apiaccountupdatedeliverydevice.php b/actions/apiaccountupdatedeliverydevice.php
index e7d44dc44d..a36806b216 100644
--- a/actions/apiaccountupdatedeliverydevice.php
+++ b/actions/apiaccountupdatedeliverydevice.php
@@ -149,7 +149,7 @@ class ApiAccountUpdateDeliveryDeviceAction extends ApiAuthAction
if ($this->format == 'xml') {
$this->initDocument('xml');
- $this->showTwitterXmlUser($twitter_user);
+ $this->showTwitterXmlUser($twitter_user, 'user', true);
$this->endDocument('xml');
} elseif ($this->format == 'json') {
$this->initDocument('json');
diff --git a/actions/apiaccountupdateprofile.php b/actions/apiaccountupdateprofile.php
index 163dac42d8..d0b9abe9b7 100644
--- a/actions/apiaccountupdateprofile.php
+++ b/actions/apiaccountupdateprofile.php
@@ -154,7 +154,7 @@ class ApiAccountUpdateProfileAction extends ApiAuthAction
if ($this->format == 'xml') {
$this->initDocument('xml');
- $this->showTwitterXmlUser($twitter_user);
+ $this->showTwitterXmlUser($twitter_user, 'user', true);
$this->endDocument('xml');
} elseif ($this->format == 'json') {
$this->initDocument('json');
diff --git a/actions/apiaccountupdateprofilebackgroundimage.php b/actions/apiaccountupdateprofilebackgroundimage.php
index badd8db002..f26c30198d 100644
--- a/actions/apiaccountupdateprofilebackgroundimage.php
+++ b/actions/apiaccountupdateprofilebackgroundimage.php
@@ -204,7 +204,7 @@ class ApiAccountUpdateProfileBackgroundImageAction extends ApiAuthAction
if ($this->format == 'xml') {
$this->initDocument('xml');
- $this->showTwitterXmlUser($twitter_user);
+ $this->showTwitterXmlUser($twitter_user, 'user', true);
$this->endDocument('xml');
} elseif ($this->format == 'json') {
$this->initDocument('json');
diff --git a/actions/apiaccountupdateprofilecolors.php b/actions/apiaccountupdateprofilecolors.php
index 109fbf959e..4c102c4090 100644
--- a/actions/apiaccountupdateprofilecolors.php
+++ b/actions/apiaccountupdateprofilecolors.php
@@ -188,7 +188,7 @@ class ApiAccountUpdateProfileColorsAction extends ApiAuthAction
if ($this->format == 'xml') {
$this->initDocument('xml');
- $this->showTwitterXmlUser($twitter_user);
+ $this->showTwitterXmlUser($twitter_user, 'user', true);
$this->endDocument('xml');
} elseif ($this->format == 'json') {
$this->initDocument('json');
diff --git a/actions/apiaccountupdateprofileimage.php b/actions/apiaccountupdateprofileimage.php
index f2886509d7..986a8f3f1e 100644
--- a/actions/apiaccountupdateprofileimage.php
+++ b/actions/apiaccountupdateprofileimage.php
@@ -112,16 +112,17 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction
return;
}
+ $type = $imagefile->preferredType();
$filename = Avatar::filename(
$user->id,
- image_type_to_extension($imagefile->type),
+ image_type_to_extension($type),
null,
'tmp'.common_timestamp()
);
$filepath = Avatar::path($filename);
- move_uploaded_file($imagefile->filepath, $filepath);
+ $imagefile->copyTo($filepath);
$profile = $this->user->getProfile();
@@ -139,7 +140,7 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction
if ($this->format == 'xml') {
$this->initDocument('xml');
- $this->showTwitterXmlUser($twitter_user);
+ $this->showTwitterXmlUser($twitter_user, 'user', true);
$this->endDocument('xml');
} elseif ($this->format == 'json') {
$this->initDocument('json');
diff --git a/actions/apiatomservice.php b/actions/apiatomservice.php
index b60b312fc4..5d786723e9 100644
--- a/actions/apiatomservice.php
+++ b/actions/apiatomservice.php
@@ -39,7 +39,6 @@ require_once INSTALLDIR.'/lib/apibareauth.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
-
class ApiAtomServiceAction extends ApiBareAuthAction
{
/**
@@ -50,13 +49,13 @@ class ApiAtomServiceAction extends ApiBareAuthAction
* @return boolean success flag
*
*/
-
function prepare($args)
{
parent::prepare($args);
$this->user = $this->getTargetUser($this->arg('id'));
if (empty($this->user)) {
+ // TRANS: Client error displayed when making an Atom API request for an unknown user.
$this->clientError(_('No such user.'), 404, $this->format);
return;
}
@@ -71,7 +70,6 @@ class ApiAtomServiceAction extends ApiBareAuthAction
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -83,13 +81,15 @@ class ApiAtomServiceAction extends ApiBareAuthAction
'xmlns:atom' => 'http://www.w3.org/2005/Atom',
'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/'));
$this->elementStart('workspace');
- $this->element('atom:title', null, _('Main'));
+ // TRANS: Title for Atom feed.
+ $this->element('atom:title', null, _m('ATOM','Main'));
$this->elementStart('collection',
array('href' => common_local_url('ApiTimelineUser',
array('id' => $this->user->id,
'format' => 'atom'))));
$this->element('atom:title',
null,
+ // TRANS: Title for Atom feed. %s is a user nickname.
sprintf(_("%s timeline"),
$this->user->nickname));
$this->element('accept', null, 'application/atom+xml;type=entry');
@@ -100,6 +100,7 @@ class ApiAtomServiceAction extends ApiBareAuthAction
array('subscriber' => $this->user->id))));
$this->element('atom:title',
null,
+ // TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
sprintf(_("%s subscriptions"),
$this->user->nickname));
$this->element('accept', null, 'application/atom+xml;type=entry');
@@ -110,6 +111,7 @@ class ApiAtomServiceAction extends ApiBareAuthAction
array('profile' => $this->user->id))));
$this->element('atom:title',
null,
+ // TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
sprintf(_("%s favorites"),
$this->user->nickname));
$this->element('accept', null, 'application/atom+xml;type=entry');
@@ -120,6 +122,7 @@ class ApiAtomServiceAction extends ApiBareAuthAction
array('profile' => $this->user->id))));
$this->element('atom:title',
null,
+ // TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
sprintf(_("%s memberships"),
$this->user->nickname));
$this->element('accept', null, 'application/atom+xml;type=entry');
diff --git a/actions/apiblockcreate.php b/actions/apiblockcreate.php
index a9f31e791b..6942a53bb8 100644
--- a/actions/apiblockcreate.php
+++ b/actions/apiblockcreate.php
@@ -92,6 +92,7 @@ class ApiBlockCreateAction extends ApiAuthAction
}
if (empty($this->user) || empty($this->other)) {
+ // TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
$this->clientError(_('No such user.'), 404, $this->format);
return;
}
diff --git a/actions/apidirectmessagenew.php b/actions/apidirectmessagenew.php
index 978c753532..e33077cdac 100644
--- a/actions/apidirectmessagenew.php
+++ b/actions/apidirectmessagenew.php
@@ -141,7 +141,7 @@ class ApiDirectMessageNewAction extends ApiAuthAction
} else if (!$this->user->mutuallySubscribed($this->other)) {
$this->clientError(
// TRANS: Client error displayed trying to direct message another user who's not a friend (403).
- _('Can\'t send direct messages to users who aren\'t your friend.'),
+ _('Cannot send direct messages to users who aren\'t your friend.'),
403,
$this->format
);
diff --git a/actions/apigroupmembership.php b/actions/apigroupmembership.php
index 99ac965fa1..939d22d757 100644
--- a/actions/apigroupmembership.php
+++ b/actions/apigroupmembership.php
@@ -66,6 +66,12 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction
parent::prepare($args);
$this->group = $this->getTargetGroup($this->arg('id'));
+ if (empty($this->group)) {
+ // TRANS: Client error displayed trying to show group membership on a non-existing group.
+ $this->clientError(_('Group not found.'), 404, $this->format);
+ return false;
+ }
+
$this->profiles = $this->getProfiles();
return true;
@@ -84,12 +90,6 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction
{
parent::handle($args);
- if (empty($this->group)) {
- // TRANS: Client error displayed trying to show group membership on a non-existing group.
- $this->clientError(_('Group not found.'), 404, $this->format);
- return false;
- }
-
// XXX: RSS and Atom
switch($this->format) {
diff --git a/actions/apioauthaccesstoken.php b/actions/apioauthaccesstoken.php
index 064d05120f..76b06c28a2 100644
--- a/actions/apioauthaccesstoken.php
+++ b/actions/apioauthaccesstoken.php
@@ -84,6 +84,7 @@ class ApiOauthAccessTokenAction extends ApiOauthAction
common_debug(var_export($req, true));
$code = $e->getCode();
$this->clientError($e->getMessage(), empty($code) ? 401 : $code, 'text');
+ return;
}
if (empty($atok)) {
@@ -98,7 +99,7 @@ class ApiOauthAccessTokenAction extends ApiOauthAction
common_log(LOG_WARNING, $msg);
// TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
- $this->clientError(_("Invalid request token or verifier.", 400, 'text'));
+ $this->clientError(_('Invalid request token or verifier.'), 400, 'text');
} else {
common_log(
LOG_INFO,
diff --git a/actions/apistatusesshow.php b/actions/apistatusesshow.php
index 80b0374a63..de4c4065c1 100644
--- a/actions/apistatusesshow.php
+++ b/actions/apistatusesshow.php
@@ -114,6 +114,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction
$this->deleteNotice();
break;
default:
+ // TRANS: Client error displayed calling an unsupported HTTP error in API status show.
$this->clientError(_('HTTP method not supported.'), 405);
return;
}
@@ -138,7 +139,9 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction
$this->showSingleAtomStatus($this->notice);
break;
default:
- throw new Exception(sprintf(_("Unsupported format: %s"), $this->format));
+ // TRANS: Exception thrown requesting an unsupported notice output format.
+ // TRANS: %s is the requested output format.
+ throw new Exception(sprintf(_("Unsupported format: %s."), $this->format));
}
} else {
// XXX: Twitter just sets a 404 header and doens't bother
@@ -171,7 +174,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction
*
* @return boolean true
*/
-
+
function isReadOnly($args)
{
return ($_SERVER['REQUEST_METHOD'] == 'GET' || $_SERVER['REQUEST_METHOD'] == 'HEAD');
@@ -220,14 +223,16 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction
function deleteNotice()
{
if ($this->format != 'atom') {
- $this->clientError(_("Can only delete using the Atom format."));
+ // TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+ $this->clientError(_('Can only delete using the Atom format.'));
return;
}
if (empty($this->auth_user) ||
($this->notice->profile_id != $this->auth_user->id &&
!$this->auth_user->hasRight(Right::DELETEOTHERSNOTICE))) {
- $this->clientError(_('Can\'t delete this notice.'), 403);
+ // TRANS: Client error displayed when a user has no rights to delete notices of other users.
+ $this->clientError(_('Cannot delete this notice.'), 403);
return;
}
@@ -240,6 +245,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction
header('HTTP/1.1 200 OK');
header('Content-Type: text/plain');
+ // TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
print(sprintf(_('Deleted notice %d'), $this->notice->id));
print("\n");
}
diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php
index a8ec7f8bb9..5773bdc2e8 100644
--- a/actions/apistatusesupdate.php
+++ b/actions/apistatusesupdate.php
@@ -377,7 +377,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction
function supported($cmd)
{
static $cmdlist = array('MessageCommand', 'SubCommand', 'UnsubCommand',
- 'FavCommand', 'OnCommand', 'OffCommand');
+ 'FavCommand', 'OnCommand', 'OffCommand', 'JoinCommand', 'LeaveCommand');
if (in_array(get_class($cmd), $cmdlist)) {
return true;
diff --git a/actions/apistatusnetconfig.php b/actions/apistatusnetconfig.php
index 771a95baec..b34c6cc544 100644
--- a/actions/apistatusnetconfig.php
+++ b/actions/apistatusnetconfig.php
@@ -59,7 +59,8 @@ class ApiStatusnetConfigAction extends ApiAction
'notice' => array('contentlimit'),
'throttle' => array('enabled', 'count', 'timespan'),
'xmpp' => array('enabled', 'server', 'port', 'user'),
- 'integration' => array('source')
+ 'integration' => array('source'),
+ 'attachments' => array('uploads', 'file_quota')
);
/**
@@ -96,7 +97,7 @@ class ApiStatusnetConfigAction extends ApiAction
foreach ($this->keys as $section => $settings) {
$this->elementStart($section);
foreach ($settings as $setting) {
- $value = common_config($section, $setting);
+ $value = $this->setting($section, $setting);
if (is_array($value)) {
$value = implode(',', $value);
} else if ($value === false || $value == '0') {
@@ -125,7 +126,7 @@ class ApiStatusnetConfigAction extends ApiAction
$result[$section] = array();
foreach ($settings as $setting) {
$result[$section][$setting]
- = common_config($section, $setting);
+ = $this->setting($section, $setting);
}
}
$this->initDocument('json');
@@ -143,6 +144,20 @@ class ApiStatusnetConfigAction extends ApiAction
}
}
+ function setting($section, $key) {
+ $result = common_config($section, $key);
+ if ($key == 'file_quota') {
+ // hack: adjust for the live upload limit
+ if (common_config($section, 'uploads')) {
+ $max = ImageFile::maxFileSizeInt();
+ } else {
+ $max = 0;
+ }
+ return min($result, $max);
+ }
+ return $result;
+ }
+
/**
* Return true if read only.
*
diff --git a/actions/apitimelinefavorites.php b/actions/apitimelinefavorites.php
index c952c46238..36fc3089f5 100644
--- a/actions/apitimelinefavorites.php
+++ b/actions/apitimelinefavorites.php
@@ -169,6 +169,14 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction
case 'json':
$this->showJsonTimeline($this->notices);
break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($title);
+ $doc->addLink($link,'alternate', 'text/html');
+ $doc->addItemsFromNotices($this->notices);
+ $this->raw($doc->asString());
+ break;
default:
// TRANS: Client error displayed when trying to handle an unknown API method.
$this->clientError(_('API method not found.'), $code = 404);
diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php
index 71049f6eb1..0e356bb18b 100644
--- a/actions/apitimelinefriends.php
+++ b/actions/apitimelinefriends.php
@@ -263,6 +263,14 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction
case 'json':
$this->showJsonTimeline($this->notices);
break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($title);
+ $doc->addLink($link,'alternate', 'text/html');
+ $doc->addItemsFromNotices($this->notices);
+ $this->raw($doc->asString());
+ break;
default:
// TRANS: Client error displayed when trying to handle an unknown API method.
$this->clientError(_('API method not found.'), $code = 404);
diff --git a/actions/apitimelinegroup.php b/actions/apitimelinegroup.php
index e1bc102e45..3fc930fa08 100644
--- a/actions/apitimelinegroup.php
+++ b/actions/apitimelinegroup.php
@@ -106,6 +106,11 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction
$self = $this->getSelfUri();
+ $link = common_local_url(
+ 'ApiTimelineGroup',
+ array('nickname' => $this->group->nickname)
+ );
+
switch($this->format) {
case 'xml':
$this->showXmlTimeline($this->notices);
@@ -123,24 +128,20 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction
break;
case 'atom':
header('Content-Type: application/atom+xml; charset=utf-8');
-
- try {
$atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString());
- } catch (Atom10FeedException $e) {
- $this->serverError(
- // TRANS: Server error displayed when generating an Atom feed fails.
- // TRANS: %s is the error.
- sprintf(_('Could not generate feed for group - %s'),$e->getMessage()),
- 400,
- $this->format
- );
- return;
- }
break;
case 'json':
$this->showJsonTimeline($this->notices);
break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($atom->title);
+ $doc->addLink($link, 'alternate', 'text/html');
+ $doc->addItemsFromNotices($this->notices);
+ $this->raw($doc->asString());
+ break;
default:
$this->clientError(
// TRANS: Client error displayed when trying to handle an unknown API method.
diff --git a/actions/apitimelinehome.php b/actions/apitimelinehome.php
index 75a9f72580..023c9698a1 100644
--- a/actions/apitimelinehome.php
+++ b/actions/apitimelinehome.php
@@ -168,6 +168,14 @@ class ApiTimelineHomeAction extends ApiBareAuthAction
case 'json':
$this->showJsonTimeline($this->notices);
break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($title);
+ $doc->addLink($link, 'alternate', 'text/html');
+ $doc->addItemsFromNotices($this->notices);
+ $this->raw($doc->asString());
+ break;
default:
// TRANS: Client error displayed when trying to handle an unknown API method.
$this->clientError(_('API method not found.'), $code = 404);
diff --git a/actions/apitimelinementions.php b/actions/apitimelinementions.php
index a9b6d0b3df..2857bd41ea 100644
--- a/actions/apitimelinementions.php
+++ b/actions/apitimelinementions.php
@@ -169,6 +169,14 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction
case 'json':
$this->showJsonTimeline($this->notices);
break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($title);
+ $doc->addLink($link, 'alternate', 'text/html');
+ $doc->addItemsFromNotices($this->notices);
+ $this->raw($doc->asString());
+ break;
default:
// TRANS: Client error displayed when trying to handle an unknown API method.
$this->clientError(_('API method not found.'), $code = 404);
diff --git a/actions/apitimelinepublic.php b/actions/apitimelinepublic.php
index 2745e5d3fe..353973b653 100644
--- a/actions/apitimelinepublic.php
+++ b/actions/apitimelinepublic.php
@@ -234,6 +234,14 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
case 'json':
$this->showJsonTimeline($this->notices);
break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($title);
+ $doc->addLink($link, 'alternate', 'text/html');
+ $doc->addItemsFromNotices($this->notices);
+ $this->raw($doc->asString());
+ break;
default:
// TRANS: Client error displayed when trying to handle an unknown API method.
$this->clientError(_('API method not found.'), $code = 404);
diff --git a/actions/apitimelineretweetedtome.php b/actions/apitimelineretweetedtome.php
index 6213a08eac..b9f9be1dda 100644
--- a/actions/apitimelineretweetedtome.php
+++ b/actions/apitimelineretweetedtome.php
@@ -92,6 +92,20 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction
$offset = ($this->page-1) * $this->cnt;
$limit = $this->cnt;
+ // TRANS: Title for Atom feed "repeated to me". %s is the user nickname.
+ $title = sprintf(_("Repeated to %s"), $this->auth_user->nickname);
+ $subtitle = sprintf(
+ _('%1$s notices that were to repeated to %2$s / %3$s.'),
+ $sitename, $this->user->nickname, $profile->getBestName()
+ );
+ $taguribase = TagURI::base();
+ $id = "tag:$taguribase:RepeatedToMe:" . $this->auth_user->id;
+
+ $link = common_local_url(
+ 'all',
+ array('nickname' => $this->auth_user->nickname)
+ );
+
$strm = $this->auth_user->repeatedToMe($offset, $limit, $this->since_id, $this->max_id);
switch ($this->format) {
@@ -102,16 +116,31 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction
$this->showJsonTimeline($strm);
break;
case 'atom':
- $profile = $this->auth_user->getProfile();
+ header('Content-Type: application/atom+xml; charset=utf-8');
- // TRANS: Title for Atom feed "repeated to me". %s is the user nickname.
- $title = sprintf(_("Repeated to %s"), $this->auth_user->nickname);
- $taguribase = TagURI::base();
- $id = "tag:$taguribase:RepeatedToMe:" . $this->auth_user->id;
- $link = common_local_url('all',
- array('nickname' => $this->auth_user->nickname));
+ $atom = new AtomNoticeFeed($this->auth_user);
- $this->showAtomTimeline($strm, $title, $id, $link);
+ $atom->setId($id);
+ $atom->setTitle($title);
+ $atom->setSubtitle($subtitle);
+ $atom->setUpdated('now');
+ $atom->addLink($link);
+
+ $id = $this->arg('id');
+
+ $atom->setSelfLink($self);
+ $atom->addEntryFromNotices($strm);
+
+ $this->raw($atom->getString());
+
+ break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($title);
+ $doc->addLink($link, 'alternate', 'text/html');
+ $doc->addItemsFromNotices($strm);
+ $this->raw($doc->asString());
break;
default:
// TRANS: Client error displayed when trying to handle an unknown API method.
diff --git a/actions/apitimelineretweetsofme.php b/actions/apitimelineretweetsofme.php
index 9cb277279f..aec6877f15 100644
--- a/actions/apitimelineretweetsofme.php
+++ b/actions/apitimelineretweetsofme.php
@@ -93,9 +93,27 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction
$offset = ($this->page-1) * $this->cnt;
$limit = $this->cnt;
- $strm = $this->auth_user->repeatsOfMe($offset, $limit, $this->since_id, $this->max_id);
+ // TRANS: Title of list of repeated notices of the logged in user.
+ // TRANS: %s is the nickname of the logged in user.
+ $title = sprintf(_("Repeats of %s"), $this->auth_user->nickname);
+ $sitename = common_config('site', 'name');
- common_debug(var_export($strm, true));
+ $profile = $this->auth_user->getProfile();
+
+ $subtitle = sprintf(
+ _('%1$s notices that %2$s / %3$s has repeated.'),
+ $sitename, $this->auth_user->nickname, $profile->getBestName()
+ );
+
+ $taguribase = TagURI::base();
+ $id = "tag:$taguribase:RepeatsOfMe:" . $this->auth_user->id;
+
+ $link = common_local_url(
+ 'all',
+ array('nickname' => $this->auth_user->nickname)
+ );
+
+ $strm = $this->auth_user->repeatsOfMe($offset, $limit, $this->since_id, $this->max_id);
switch ($this->format) {
case 'xml':
@@ -105,49 +123,28 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction
$this->showJsonTimeline($strm);
break;
case 'atom':
- $profile = $this->auth_user->getProfile();
-
- // TRANS: Title of list of repeated notices of the logged in user.
- // TRANS: %s is the nickname of the logged in user.
- $title = sprintf(_("Repeats of %s"), $this->auth_user->nickname);
- $taguribase = TagURI::base();
- $id = "tag:$taguribase:RepeatsOfMe:" . $this->auth_user->id;
-
header('Content-Type: application/atom+xml; charset=utf-8');
-
$atom = new AtomNoticeFeed($this->auth_user);
-
$atom->setId($id);
$atom->setTitle($title);
$atom->setSubtitle($subtitle);
$atom->setUpdated('now');
-
- $atom->addLink(
- common_local_url(
- 'showstream',
- array('nickname' => $this->auth_user->nickname)
- )
- );
-
- $id = $this->arg('id');
- $aargs = array('format' => 'atom');
- if (!empty($id)) {
- $aargs['id'] = $id;
- }
-
- $atom->addLink(
- $this->getSelfUri('ApiTimelineRetweetsOfMe', $aargs),
- array('rel' => 'self', 'type' => 'application/atom+xml')
- );
-
+ $atom->addLink($link);
+ $atom->setSelfLink($this->getSelfUri());
$atom->addEntryFromNotices($strm);
-
$this->raw($atom->getString());
-
+ break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($title);
+ $doc->addLink($link, 'alternate', 'text/html');
+ $doc->addItemsFromNotices($strm);
+ $this->raw($doc->asString());
break;
default:
// TRANS: Client error displayed when trying to handle an unknown API method.
- $this->clientError(_('API method not found.'), $code = 404);
+ $this->clientError(_('API method not found.'), 404);
break;
}
}
diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php
index 4dbe1fc0db..5fa76d0cd0 100644
--- a/actions/apitimelinetag.php
+++ b/actions/apitimelinetag.php
@@ -107,7 +107,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction
$sitename
);
$taguribase = TagURI::base();
- $id = "tag:$taguribase:TagTimeline:".$tag;
+ $id = "tag:$taguribase:TagTimeline:".$this->tag;
$link = common_local_url(
'tag',
@@ -116,8 +116,6 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction
$self = $this->getSelfUri();
- common_debug("self link is: $self");
-
switch($this->format) {
case 'xml':
$this->showXmlTimeline($this->notices);
@@ -154,6 +152,14 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction
case 'json':
$this->showJsonTimeline($this->notices);
break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($title);
+ $doc->addLink($link, 'alternate', 'text/html');
+ $doc->addItemsFromNotices($this->notices);
+ $this->raw($doc->asString());
+ break;
default:
// TRANS: Client error displayed when trying to handle an unknown API method.
$this->clientError(_('API method not found.'), $code = 404);
diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php
index 5809df3b5e..66984b5abd 100644
--- a/actions/apitimelineuser.php
+++ b/actions/apitimelineuser.php
@@ -201,6 +201,17 @@ class ApiTimelineUserAction extends ApiBareAuthAction
case 'json':
$this->showJsonTimeline($this->notices);
break;
+ case 'as':
+ header('Content-Type: application/json; charset=utf-8');
+ $doc = new ActivityStreamJSONDocument($this->auth_user);
+ $doc->setTitle($atom->title);
+ $doc->addLink($link, 'alternate', 'text/html');
+ $doc->addItemsFromNotices($this->notices);
+
+ // XXX: Add paging extension?
+
+ $this->raw($doc->asString());
+ break;
default:
// TRANS: Client error displayed when trying to handle an unknown API method.
$this->clientError(_('API method not found.'), $code = 404);
@@ -241,7 +252,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction
*
* @return boolean true
*/
-
+
function isReadOnly($args)
{
return ($_SERVER['REQUEST_METHOD'] == 'GET' || $_SERVER['REQUEST_METHOD'] == 'HEAD');
@@ -307,11 +318,13 @@ class ApiTimelineUserAction extends ApiBareAuthAction
$xml = trim(file_get_contents('php://input'));
if (empty($xml)) {
+ // TRANS: Client error displayed attempting to post an empty API notice.
$this->clientError(_('Atom post must not be empty.'));
}
$dom = DOMDocument::loadXML($xml);
if (!$dom) {
+ // TRANS: Client error displayed attempting to post an API that is not well-formed XML.
$this->clientError(_('Atom post must be well-formed XML.'));
}
@@ -327,10 +340,8 @@ class ApiTimelineUserAction extends ApiBareAuthAction
$saved = null;
if (Event::handle('StartAtomPubNewActivity', array(&$activity, $this->user, &$saved))) {
-
if ($activity->verb != ActivityVerb::POST) {
- // TRANS: Client error displayed when not using the POST verb.
- // TRANS: Do not translate POST.
+ // TRANS: Client error displayed when not using the POST verb. Do not translate POST.
$this->clientError(_('Can only handle POST activities.'));
return;
}
@@ -375,6 +386,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction
} else {
// @fixme fetch from $sourceUrl?
// TRANS: Client error displayed when posting a notice without content through the API.
+ // TRANS: %d is the notice ID (number).
$this->clientError(sprintf(_('No content for notice %d.'),
$note->id));
return;
@@ -403,6 +415,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction
if (!empty($notice)) {
// TRANS: Client error displayed when using another format than AtomPub.
+ // TRANS: %s is the notice URI.
$this->clientError(sprintf(_('Notice with URI "%s" already exists.'),
$note->id));
return;
@@ -427,14 +440,14 @@ class ApiTimelineUserAction extends ApiBareAuthAction
$profile = Profile::fromURI($uri);
if (!empty($profile)) {
- $options['replies'] = $uri;
+ $options['replies'][] = $uri;
} else {
$group = User_group::staticGet('uri', $uri);
if (!empty($group)) {
- $options['groups'] = $uri;
+ $options['groups'][] = $uri;
} else {
// @fixme: hook for discovery here
- common_log(LOG_WARNING, sprintf(_('AtomPub post with unknown attention URI %s'), $uri));
+ common_log(LOG_WARNING, sprintf('AtomPub post with unknown attention URI %s', $uri));
}
}
}
diff --git a/actions/atompubfavoritefeed.php b/actions/atompubfavoritefeed.php
index 478a01b7c6..c31fcbd72a 100644
--- a/actions/atompubfavoritefeed.php
+++ b/actions/atompubfavoritefeed.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* Feed of ActivityStreams 'favorite' actions
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -46,7 +46,6 @@ require_once INSTALLDIR . '/lib/apiauth.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class AtompubfavoritefeedAction extends ApiAuthAction
{
private $_profile = null;
@@ -59,7 +58,6 @@ class AtompubfavoritefeedAction extends ApiAuthAction
*
* @return boolean true
*/
-
function prepare($argarray)
{
parent::prepare($argarray);
@@ -67,7 +65,8 @@ class AtompubfavoritefeedAction extends ApiAuthAction
$this->_profile = Profile::staticGet('id', $this->trimmed('profile'));
if (empty($this->_profile)) {
- throw new ClientException(_('No such profile'), 404);
+ // TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+ throw new ClientException(_('No such profile.'), 404);
}
$offset = ($this->page-1) * $this->count;
@@ -76,7 +75,7 @@ class AtompubfavoritefeedAction extends ApiAuthAction
$this->_faves = Fave::byProfile($this->_profile->id,
$offset,
$limit);
-
+
return true;
}
@@ -87,7 +86,6 @@ class AtompubfavoritefeedAction extends ApiAuthAction
*
* @return void
*/
-
function handle($argarray=null)
{
parent::handle($argarray);
@@ -101,6 +99,7 @@ class AtompubfavoritefeedAction extends ApiAuthAction
$this->addFavorite();
break;
default:
+ // TRANS: Client exception thrown when using an unsupported HTTP method.
throw new ClientException(_('HTTP method not supported.'), 405);
return;
}
@@ -113,7 +112,6 @@ class AtompubfavoritefeedAction extends ApiAuthAction
*
* @return void
*/
-
function showFeed()
{
header('Content-Type: application/atom+xml; charset=utf-8');
@@ -139,21 +137,25 @@ class AtompubfavoritefeedAction extends ApiAuthAction
$feed->addAuthor($this->_profile->getBestName(),
$this->_profile->getURI());
+ // TRANS: Title for Atom favorites feed.
+ // TRANS: %s is a user nickname.
$feed->setTitle(sprintf(_("%s favorites"),
$this->_profile->getBestName()));
- $feed->setSubtitle(sprintf(_("Notices %s has favorited to on %s"),
+ // TRANS: Subtitle for Atom favorites feed.
+ // TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+ $feed->setSubtitle(sprintf(_('Notices %1$s has favorited on %2$s'),
$this->_profile->getBestName(),
common_config('site', 'name')));
$feed->addLink(common_local_url('showfavorites',
- array('nickname' =>
+ array('nickname' =>
$this->_profile->nickname)));
$feed->addLink($url,
array('rel' => 'self',
'type' => 'application/atom+xml'));
-
+
// If there's more...
if ($this->page > 1) {
@@ -162,9 +164,9 @@ class AtompubfavoritefeedAction extends ApiAuthAction
'type' => 'application/atom+xml'));
$feed->addLink(common_local_url('AtomPubFavoriteFeed',
- array('profile' =>
+ array('profile' =>
$this->_profile->id),
- array('page' =>
+ array('page' =>
$this->page - 1)),
array('rel' => 'prev',
'type' => 'application/atom+xml'));
@@ -205,17 +207,17 @@ class AtompubfavoritefeedAction extends ApiAuthAction
*
* @return void
*/
-
function addFavorite()
{
// XXX: Refactor this; all the same for atompub
if (empty($this->auth_user) ||
$this->auth_user->id != $this->_profile->id) {
- throw new ClientException(_("Can't add someone else's".
- " subscription"), 403);
+ // TRANS: Client exception thrown when trying to set a favorite for another user.
+ throw new ClientException(_("Cannot add someone else's".
+ " subscription."), 403);
}
-
+
$xml = file_get_contents('php://input');
$dom = DOMDocument::loadXML($xml);
@@ -234,9 +236,8 @@ class AtompubfavoritefeedAction extends ApiAuthAction
if (Event::handle('StartAtomPubNewActivity', array(&$activity))) {
if ($activity->verb != ActivityVerb::FAVORITE) {
- // TRANS: Client error displayed when not using the POST verb.
- // TRANS: Do not translate POST.
- throw new ClientException(_('Can only handle Favorite activities.'));
+ // TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+ throw new ClientException(_('Can only handle favorite activities.'));
return;
}
@@ -245,6 +246,7 @@ class AtompubfavoritefeedAction extends ApiAuthAction
if (!in_array($note->type, array(ActivityObject::NOTE,
ActivityObject::BLOGENTRY,
ActivityObject::STATUS))) {
+ // TRANS: Client exception thrown when trying favorite an object that is not a notice.
throw new ClientException(_('Can only fave notices.'));
return;
}
@@ -253,6 +255,7 @@ class AtompubfavoritefeedAction extends ApiAuthAction
if (empty($notice)) {
// XXX: import from listed URL or something
+ // TRANS: Client exception thrown when trying favorite a notice without content.
throw new ClientException(_('Unknown note.'));
}
@@ -260,6 +263,7 @@ class AtompubfavoritefeedAction extends ApiAuthAction
'notice_id' => $notice->id));
if (!empty($old)) {
+ // TRANS: Client exception thrown when trying favorite an already favorited notice.
throw new ClientException(_('Already a favorite.'));
}
@@ -296,7 +300,6 @@ class AtompubfavoritefeedAction extends ApiAuthAction
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
@@ -328,7 +331,6 @@ class AtompubfavoritefeedAction extends ApiAuthAction
*
* @return string etag http header
*/
-
function etag()
{
return null;
@@ -339,7 +341,6 @@ class AtompubfavoritefeedAction extends ApiAuthAction
*
* @return boolean true if delete, else false
*/
-
function requiresAuth()
{
if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
@@ -359,7 +360,6 @@ class AtompubfavoritefeedAction extends ApiAuthAction
*
* @return void
*/
-
function notify($fave, $notice, $user)
{
$other = User::staticGet('id', $notice->profile_id);
diff --git a/actions/atompubmembershipfeed.php b/actions/atompubmembershipfeed.php
index 3002576c15..b52583314d 100644
--- a/actions/atompubmembershipfeed.php
+++ b/actions/atompubmembershipfeed.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* Feed of group memberships for a user, in ActivityStreams format
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -46,7 +46,6 @@ require_once INSTALLDIR . '/lib/apiauth.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class AtompubmembershipfeedAction extends ApiAuthAction
{
private $_profile = null;
@@ -59,7 +58,6 @@ class AtompubmembershipfeedAction extends ApiAuthAction
*
* @return boolean true
*/
-
function prepare($argarray)
{
parent::prepare($argarray);
@@ -67,8 +65,9 @@ class AtompubmembershipfeedAction extends ApiAuthAction
$profileId = $this->trimmed('profile');
$this->_profile = Profile::staticGet('id', $profileId);
-
+
if (empty($this->_profile)) {
+ // TRANS: Client exception.
throw new ClientException(_('No such profile.'), 404);
}
@@ -78,7 +77,7 @@ class AtompubmembershipfeedAction extends ApiAuthAction
$this->_memberships = Group_member::byMember($this->_profile->id,
$offset,
$limit);
-
+
return true;
}
@@ -89,7 +88,6 @@ class AtompubmembershipfeedAction extends ApiAuthAction
*
* @return void
*/
-
function handle($argarray=null)
{
parent::handle($argarray);
@@ -103,6 +101,7 @@ class AtompubmembershipfeedAction extends ApiAuthAction
$this->addMembership();
break;
default:
+ // TRANS: Client exception thrown when using an unsupported HTTP method.
throw new ClientException(_('HTTP method not supported.'), 405);
return;
}
@@ -115,7 +114,6 @@ class AtompubmembershipfeedAction extends ApiAuthAction
*
* @return void
*/
-
function showFeed()
{
header('Content-Type: application/atom+xml; charset=utf-8');
@@ -141,21 +139,25 @@ class AtompubmembershipfeedAction extends ApiAuthAction
$feed->addAuthor($this->_profile->getBestName(),
$this->_profile->getURI());
+ // TRANS: Title for group membership feed.
+ // TRANS: %s is a username.
$feed->setTitle(sprintf(_("%s group memberships"),
$this->_profile->getBestName()));
- $feed->setSubtitle(sprintf(_("Groups %s is a member of on %s"),
+ // TRANS: Subtitle for group membership feed.
+ // TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+ $feed->setSubtitle(sprintf(_('Groups %1$s is a member of on %2$s'),
$this->_profile->getBestName(),
common_config('site', 'name')));
$feed->addLink(common_local_url('usergroups',
- array('nickname' =>
+ array('nickname' =>
$this->_profile->nickname)));
$feed->addLink($url,
array('rel' => 'self',
'type' => 'application/atom+xml'));
-
+
// If there's more...
if ($this->page > 1) {
@@ -164,9 +166,9 @@ class AtompubmembershipfeedAction extends ApiAuthAction
'type' => 'application/atom+xml'));
$feed->addLink(common_local_url('AtomPubMembershipFeed',
- array('profile' =>
+ array('profile' =>
$this->_profile->id),
- array('page' =>
+ array('page' =>
$this->page - 1)),
array('rel' => 'prev',
'type' => 'application/atom+xml'));
@@ -207,17 +209,17 @@ class AtompubmembershipfeedAction extends ApiAuthAction
*
* @return void
*/
-
function addMembership()
{
// XXX: Refactor this; all the same for atompub
if (empty($this->auth_user) ||
$this->auth_user->id != $this->_profile->id) {
- throw new ClientException(_("Can't add someone else's".
- " membership"), 403);
+ // TRANS: Client exception thrown when trying subscribe someone else to a group.
+ throw new ClientException(_("Cannot add someone else's".
+ " membership."), 403);
}
-
+
$xml = file_get_contents('php://input');
$dom = DOMDocument::loadXML($xml);
@@ -234,25 +236,26 @@ class AtompubmembershipfeedAction extends ApiAuthAction
$membership = null;
if (Event::handle('StartAtomPubNewActivity', array(&$activity))) {
-
if ($activity->verb != ActivityVerb::JOIN) {
// TRANS: Client error displayed when not using the POST verb.
// TRANS: Do not translate POST.
- throw new ClientException(_('Can only handle Join activities.'));
+ throw new ClientException(_('Can only handle join activities.'));
return;
}
$groupObj = $activity->objects[0];
if ($groupObj->type != ActivityObject::GROUP) {
+ // TRANS: Client exception thrown when trying favorite an object that is not a notice.
throw new ClientException(_('Can only fave notices.'));
return;
}
$group = User_group::staticGet('uri', $groupObj->id);
-
+
if (empty($group)) {
// XXX: import from listed URL or something
+ // TRANS: Client exception thrown when trying to subscribe to a non-existing group.
throw new ClientException(_('Unknown group.'));
}
@@ -260,6 +263,7 @@ class AtompubmembershipfeedAction extends ApiAuthAction
'group_id' => $group->id));
if (!empty($old)) {
+ // TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
throw new ClientException(_('Already a member.'));
}
@@ -267,6 +271,7 @@ class AtompubmembershipfeedAction extends ApiAuthAction
if (Group_block::isBlocked($group, $profile)) {
// XXX: import from listed URL or something
+ // TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
throw new ClientException(_('Blocked by admin.'));
}
@@ -299,7 +304,6 @@ class AtompubmembershipfeedAction extends ApiAuthAction
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
@@ -331,7 +335,6 @@ class AtompubmembershipfeedAction extends ApiAuthAction
*
* @return string etag http header
*/
-
function etag()
{
return null;
@@ -342,7 +345,6 @@ class AtompubmembershipfeedAction extends ApiAuthAction
*
* @return boolean true if delete, else false
*/
-
function requiresAuth()
{
if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
diff --git a/actions/atompubshowfavorite.php b/actions/atompubshowfavorite.php
index 5fe680bb7b..1727e0c3cf 100644
--- a/actions/atompubshowfavorite.php
+++ b/actions/atompubshowfavorite.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* Show a single favorite in Atom Activity Streams format
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -48,7 +48,6 @@ require_once INSTALLDIR . '/lib/apiauth.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class AtompubshowfavoriteAction extends ApiAuthAction
{
private $_profile = null;
@@ -62,7 +61,6 @@ class AtompubshowfavoriteAction extends ApiAuthAction
*
* @return boolean true
*/
-
function prepare($argarray)
{
parent::prepare($argarray);
@@ -73,12 +71,14 @@ class AtompubshowfavoriteAction extends ApiAuthAction
$this->_profile = Profile::staticGet('id', $profileId);
if (empty($this->_profile)) {
+ // TRANS: Client exception.
throw new ClientException(_('No such profile.'), 404);
}
$this->_notice = Notice::staticGet('id', $noticeId);
if (empty($this->_notice)) {
+ // TRANS: Client exception thrown when referencing a non-existing notice.
throw new ClientException(_('No such notice.'), 404);
}
@@ -86,6 +86,7 @@ class AtompubshowfavoriteAction extends ApiAuthAction
'notice_id' => $noticeId));
if (empty($this->_fave)) {
+ // TRANS: Client exception thrown when referencing a non-existing favorite.
throw new ClientException(_('No such favorite.'), 404);
}
@@ -99,7 +100,6 @@ class AtompubshowfavoriteAction extends ApiAuthAction
*
* @return void
*/
-
function handle($argarray=null)
{
parent::handle($argarray);
@@ -113,6 +113,7 @@ class AtompubshowfavoriteAction extends ApiAuthAction
$this->deleteFave();
break;
default:
+ // TRANS: Client exception thrown using an unsupported HTTP method.
throw new ClientException(_('HTTP method not supported.'),
405);
}
@@ -121,10 +122,9 @@ class AtompubshowfavoriteAction extends ApiAuthAction
/**
* Show a single favorite, in ActivityStreams format
- *
+ *
* @return void
*/
-
function showFave()
{
$activity = $this->_fave->asActivity();
@@ -140,16 +140,16 @@ class AtompubshowfavoriteAction extends ApiAuthAction
/**
* Delete the favorite
- *
+ *
* @return void
*/
-
function deleteFave()
{
if (empty($this->auth_user) ||
$this->auth_user->id != $this->_profile->id) {
- throw new ClientException(_("Can't delete someone else's".
- " favorite"), 403);
+ // TRANS: Client exception thrown when trying to remove a favorite notice of another user.
+ throw new ClientException(_("Cannot delete someone else's".
+ " favorite."), 403);
}
$this->_fave->delete();
@@ -166,7 +166,6 @@ class AtompubshowfavoriteAction extends ApiAuthAction
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
@@ -184,7 +183,6 @@ class AtompubshowfavoriteAction extends ApiAuthAction
*
* @return string last modified http header
*/
-
function lastModified()
{
return max(strtotime($this->_profile->modified),
@@ -199,7 +197,6 @@ class AtompubshowfavoriteAction extends ApiAuthAction
*
* @return string etag http header
*/
-
function etag()
{
$mtime = strtotime($this->_fave->modified);
@@ -215,7 +212,6 @@ class AtompubshowfavoriteAction extends ApiAuthAction
*
* @return boolean true if delete, else false
*/
-
function requiresAuth()
{
if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
diff --git a/actions/atompubshowmembership.php b/actions/atompubshowmembership.php
index 6d848a2290..098cca8b3e 100644
--- a/actions/atompubshowmembership.php
+++ b/actions/atompubshowmembership.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* Show a single membership as an Activity Streams entry
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -46,7 +46,6 @@ require_once INSTALLDIR . '/lib/apiauth.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class AtompubshowmembershipAction extends ApiAuthAction
{
private $_profile = null;
@@ -60,7 +59,6 @@ class AtompubshowmembershipAction extends ApiAuthAction
*
* @return boolean true
*/
-
function prepare($argarray)
{
parent::prepare($argarray);
@@ -68,8 +66,9 @@ class AtompubshowmembershipAction extends ApiAuthAction
$profileId = $this->trimmed('profile');
$this->_profile = Profile::staticGet('id', $profileId);
-
+
if (empty($this->_profile)) {
+ // TRANS: Client exception.
throw new ClientException(_('No such profile.'), 404);
}
@@ -78,7 +77,8 @@ class AtompubshowmembershipAction extends ApiAuthAction
$this->_group = User_group::staticGet('id', $groupId);
if (empty($this->_group)) {
- throw new ClientException(_('No such group'), 404);
+ // TRANS: Client exception thrown when referencing a non-existing group.
+ throw new ClientException(_('No such group.'), 404);
}
$kv = array('group_id' => $groupId,
@@ -87,7 +87,8 @@ class AtompubshowmembershipAction extends ApiAuthAction
$this->_membership = Group_member::pkeyGet($kv);
if (empty($this->_membership)) {
- throw new ClientException(_('Not a member'), 404);
+ // TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+ throw new ClientException(_('Not a member.'), 404);
}
return true;
@@ -100,7 +101,6 @@ class AtompubshowmembershipAction extends ApiAuthAction
*
* @return void
*/
-
function handle($argarray=null)
{
switch ($_SERVER['REQUEST_METHOD']) {
@@ -112,7 +112,8 @@ class AtompubshowmembershipAction extends ApiAuthAction
$this->deleteMembership();
break;
default:
- throw new ClientException(_('Method not supported'), 405);
+ // TRANS: Client exception thrown when using an unsupported HTTP method.
+ throw new ClientException(_('HTTP method not supported.'), 405);
break;
}
return;
@@ -123,7 +124,6 @@ class AtompubshowmembershipAction extends ApiAuthAction
*
* @return void
*/
-
function showMembership()
{
$activity = $this->_membership->asActivity();
@@ -142,13 +142,13 @@ class AtompubshowmembershipAction extends ApiAuthAction
*
* @return void
*/
-
function deleteMembership()
{
if (empty($this->auth_user) ||
$this->auth_user->id != $this->_profile->id) {
- throw new ClientException(_("Can't delete someone else's".
- " membership"), 403);
+ // TRANS: Client exception thrown when deleting someone else's membership.
+ throw new ClientException(_("Cannot delete someone else's".
+ " membership."), 403);
}
if (Event::handle('StartLeaveGroup', array($this->_group, $this->auth_user))) {
@@ -168,7 +168,6 @@ class AtompubshowmembershipAction extends ApiAuthAction
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
@@ -203,7 +202,6 @@ class AtompubshowmembershipAction extends ApiAuthAction
*
* @return string etag http header
*/
-
function etag()
{
$ctime = strtotime($this->_membership->created);
@@ -222,7 +220,6 @@ class AtompubshowmembershipAction extends ApiAuthAction
*
* @return boolean true if delete, else false
*/
-
function requiresAuth()
{
if ($_SERVER['REQUEST_METHOD'] == 'GET' ||
diff --git a/actions/atompubshowsubscription.php b/actions/atompubshowsubscription.php
index 55ba68adc5..aeff0cbf2a 100644
--- a/actions/atompubshowsubscription.php
+++ b/actions/atompubshowsubscription.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* Single subscription
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -46,21 +46,19 @@ require_once INSTALLDIR . '/lib/apiauth.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class AtompubshowsubscriptionAction extends ApiAuthAction
{
private $_subscriber = null;
private $_subscribed = null;
private $_subscription = null;
- /**
+ /**
* For initializing members of the class.
*
* @param array $argarray misc. arguments
*
* @return boolean true
*/
-
function prepare($argarray)
{
parent::prepare($argarray);
@@ -69,7 +67,9 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
$this->_subscriber = Profile::staticGet('id', $subscriberId);
if (empty($this->_subscriber)) {
- throw new ClientException(sprintf(_('No such profile id: %d'),
+ // TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+ // TRANS: %d is the non-existing profile ID number.
+ throw new ClientException(sprintf(_('No such profile id: %d.'),
$subscriberId), 404);
}
@@ -78,16 +78,20 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
$this->_subscribed = Profile::staticGet('id', $subscribedId);
if (empty($this->_subscribed)) {
- throw new ClientException(sprintf(_('No such profile id: %d'),
+ // TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+ // TRANS: %d is the non-existing profile ID number.
+ throw new ClientException(sprintf(_('No such profile id: %d.'),
$subscribedId), 404);
}
- $this->_subscription =
+ $this->_subscription =
Subscription::pkeyGet(array('subscriber' => $subscriberId,
'subscribed' => $subscribedId));
if (empty($this->_subscription)) {
- $msg = sprintf(_('Profile %d not subscribed to profile %d'),
+ // TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+ // TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+ $msg = sprintf(_('Profile %1$d not subscribed to profile %2$d.'),
$subscriberId, $subscribedId);
throw new ClientException($msg, 404);
}
@@ -102,7 +106,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
*
* @return void
*/
-
function handle($argarray=null)
{
parent::handle($argarray);
@@ -115,6 +118,7 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
$this->deleteSubscription();
break;
default:
+ // TRANS: Client error shown when using a non-supported HTTP method.
$this->clientError(_('HTTP method not supported.'), 405);
return;
}
@@ -127,7 +131,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
*
* @return void
*/
-
function showSubscription()
{
$activity = $this->_subscription->asActivity();
@@ -146,13 +149,13 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
*
* @return void
*/
-
function deleteSubscription()
{
if (empty($this->auth_user) ||
$this->auth_user->id != $this->_subscriber->id) {
- throw new ClientException(_("Can't delete someone else's".
- " subscription"), 403);
+ // TRANS: Client exception thrown when trying to delete a subscription of another user.
+ throw new ClientException(_("Cannot delete someone else's ".
+ "subscription."), 403);
}
Subscription::cancel($this->_subscriber,
@@ -168,7 +171,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
*
* @return boolean true
*/
-
function isReadOnly($args)
{
if ($_SERVER['REQUEST_METHOD'] == 'DELETE') {
@@ -183,7 +185,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
*
* @return string last modified http header
*/
-
function lastModified()
{
return max(strtotime($this->_subscriber->modified),
@@ -196,7 +197,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
*
* @return string etag http header
*/
-
function etag()
{
$mtime = strtotime($this->_subscription->modified);
@@ -212,7 +212,6 @@ class AtompubshowsubscriptionAction extends ApiAuthAction
*
* @return boolean true if delete, else false
*/
-
function requiresAuth()
{
if ($_SERVER['REQUEST_METHOD'] == 'DELETE') {
diff --git a/actions/atompubsubscriptionfeed.php b/actions/atompubsubscriptionfeed.php
index 15ae79f6a6..26740da835 100644
--- a/actions/atompubsubscriptionfeed.php
+++ b/actions/atompubsubscriptionfeed.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* AtomPub subscription feed
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -40,7 +40,7 @@ require_once INSTALLDIR . '/lib/apiauth.php';
* Subscription feed class for AtomPub
*
* Generates a list of the user's subscriptions
- *
+ *
* @category AtomPub
* @package StatusNet
* @author Evan Prodromou
@@ -48,7 +48,6 @@ require_once INSTALLDIR . '/lib/apiauth.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class AtompubsubscriptionfeedAction extends ApiAuthAction
{
private $_profile = null;
@@ -61,17 +60,18 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
*
* @return boolean true
*/
-
function prepare($argarray)
{
parent::prepare($argarray);
-
+
$subscriber = $this->trimmed('subscriber');
$this->_profile = Profile::staticGet('id', $subscriber);
if (empty($this->_profile)) {
- throw new ClientException(sprintf(_('No such profile id: %d'),
+ // TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+ // TRANS: %d is the non-existing profile ID number.
+ throw new ClientException(sprintf(_('No such profile id: %d.'),
$subscriber), 404);
}
@@ -93,7 +93,6 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
*
* @return void
*/
-
function handle($argarray=null)
{
parent::handle($argarray);
@@ -106,6 +105,7 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
$this->addSubscription();
break;
default:
+ // TRANS: Client exception thrown when using an unsupported HTTP method.
$this->clientError(_('HTTP method not supported.'), 405);
return;
}
@@ -118,7 +118,6 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
*
* @return void
*/
-
function showFeed()
{
header('Content-Type: application/atom+xml; charset=utf-8');
@@ -144,21 +143,25 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
$feed->addAuthor($this->_profile->getBestName(),
$this->_profile->getURI());
+ // TRANS: Title for Atom subscription feed.
+ // TRANS: %s is a user nickname.
$feed->setTitle(sprintf(_("%s subscriptions"),
$this->_profile->getBestName()));
- $feed->setSubtitle(sprintf(_("People %s has subscribed to on %s"),
+ // TRANS: Subtitle for Atom subscription feed.
+ // TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+ $feed->setSubtitle(sprintf(_("People %1\$s has subscribed to on %2\$s"),
$this->_profile->getBestName(),
common_config('site', 'name')));
$feed->addLink(common_local_url('subscriptions',
- array('nickname' =>
+ array('nickname' =>
$this->_profile->nickname)));
$feed->addLink($url,
array('rel' => 'self',
'type' => 'application/atom+xml'));
-
+
// If there's more...
if ($this->page > 1) {
@@ -167,9 +170,9 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
'type' => 'application/atom+xml'));
$feed->addLink(common_local_url('AtomPubSubscriptionFeed',
- array('subscriber' =>
+ array('subscriber' =>
$this->_profile->id),
- array('page' =>
+ array('page' =>
$this->page - 1)),
array('rel' => 'prev',
'type' => 'application/atom+xml'));
@@ -214,15 +217,15 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
*
* @return void
*/
-
function addSubscription()
{
if (empty($this->auth_user) ||
$this->auth_user->id != $this->_profile->id) {
- throw new ClientException(_("Can't add someone else's".
- " subscription"), 403);
+ // TRANS: Client exception thrown when trying to subscribe another user.
+ throw new ClientException(_("Cannot add someone else's".
+ " subscription."), 403);
}
-
+
$xml = file_get_contents('php://input');
$dom = DOMDocument::loadXML($xml);
@@ -241,8 +244,7 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
if (Event::handle('StartAtomPubNewActivity', array(&$activity))) {
if ($activity->verb != ActivityVerb::FOLLOW) {
- // TRANS: Client error displayed when not using the POST verb.
- // TRANS: Do not translate POST.
+ // TRANS: Client error displayed when not using the follow verb.
$this->clientError(_('Can only handle Follow activities.'));
return;
}
@@ -250,6 +252,7 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
$person = $activity->objects[0];
if ($person->type != ActivityObject::PERSON) {
+ // TRANS: Client exception thrown when subscribing to an object that is not a person.
$this->clientError(_('Can only follow people.'));
return;
}
@@ -259,7 +262,19 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
$profile = Profile::fromURI($person->id);
if (empty($profile)) {
- $this->clientError(sprintf(_('Unknown profile %s'), $person->id));
+ // TRANS: Client exception thrown when subscribing to a non-existing profile.
+ // TRANS: %s is the unknown profile ID.
+ $this->clientError(sprintf(_('Unknown profile %s.'), $person->id));
+ return;
+ }
+
+ if (Subscription::exists($this->_profile, $profile)) {
+ // 409 Conflict
+ // TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+ // TRANS: %s is the profile the user already has a subscription on.
+ $this->clientError(sprintf(_('Already subscribed to %s.'),
+ $person->id),
+ 409);
return;
}
@@ -290,7 +305,6 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
return $_SERVER['REQUEST_METHOD'] != 'POST';
@@ -301,7 +315,6 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
*
* @return string last modified http header
*/
-
function lastModified()
{
return null;
@@ -312,7 +325,6 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
*
* @return string etag http header
*/
-
function etag()
{
return null;
@@ -323,7 +335,6 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction
*
* @return boolean true if delete, else false
*/
-
function requiresAuth()
{
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
diff --git a/actions/avatarsettings.php b/actions/avatarsettings.php
index 7b671d9e32..d9542a39c8 100644
--- a/actions/avatarsettings.php
+++ b/actions/avatarsettings.php
@@ -157,13 +157,13 @@ class AvatarsettingsAction extends SettingsAction
}
$this->elementStart('li', array ('id' => 'settings_attach'));
- $this->element('input', array('name' => 'avatarfile',
- 'type' => 'file',
- 'id' => 'avatarfile'));
$this->element('input', array('name' => 'MAX_FILE_SIZE',
'type' => 'hidden',
'id' => 'MAX_FILE_SIZE',
'value' => ImageFile::maxFileSizeInt()));
+ $this->element('input', array('name' => 'avatarfile',
+ 'type' => 'file',
+ 'id' => 'avatarfile'));
$this->elementEnd('li');
$this->elementEnd('ul');
@@ -211,7 +211,7 @@ class AvatarsettingsAction extends SettingsAction
array('id' => 'avatar_original',
'class' => 'avatar_view'));
// TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
- $this->element('h2', null, _("Original"));
+ $this->element('h2', null, _('Original'));
$this->elementStart('div', array('id'=>'avatar_original_view'));
$this->element('img', array('src' => Avatar::url($this->filedata['filename']),
'width' => $this->filedata['width'],
@@ -224,7 +224,7 @@ class AvatarsettingsAction extends SettingsAction
array('id' => 'avatar_preview',
'class' => 'avatar_view'));
// TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
- $this->element('h2', null, _("Preview"));
+ $this->element('h2', null, _('Preview'));
$this->elementStart('div', array('id'=>'avatar_preview_view'));
$this->element('img', array('src' => Avatar::url($this->filedata['filename']),
'width' => AVATAR_PROFILE_SIZE,
@@ -320,21 +320,20 @@ class AvatarsettingsAction extends SettingsAction
}
$cur = common_current_user();
-
+ $type = $imagefile->preferredType();
$filename = Avatar::filename($cur->id,
- image_type_to_extension($imagefile->type),
+ image_type_to_extension($type),
null,
'tmp'.common_timestamp());
$filepath = Avatar::path($filename);
-
- move_uploaded_file($imagefile->filepath, $filepath);
+ $imagefile->copyTo($filepath);
$filedata = array('filename' => $filename,
'filepath' => $filepath,
'width' => $imagefile->width,
'height' => $imagefile->height,
- 'type' => $imagefile->type);
+ 'type' => $type);
$_SESSION['FILEDATA'] = $filedata;
@@ -342,8 +341,8 @@ class AvatarsettingsAction extends SettingsAction
$this->mode = 'crop';
- // TRANS: Avatar upload form unstruction after uploading a file.
- $this->showForm(_('Pick a square area of the image to be your avatar'),
+ // TRANS: Avatar upload form instruction after uploading a file.
+ $this->showForm(_('Pick a square area of the image to be your avatar.'),
true);
}
diff --git a/actions/backupaccount.php b/actions/backupaccount.php
index 4f6fb936bd..8f642f3b77 100644
--- a/actions/backupaccount.php
+++ b/actions/backupaccount.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* Download a backup of your own account to the browser
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -48,18 +48,17 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class BackupaccountAction extends Action
{
/**
* Returns the title of the page
- *
+ *
* @return string page title
*/
-
function title()
{
- return _("Backup account");
+ // TRANS: Title for backup account page.
+ return _('Backup account');
}
/**
@@ -69,7 +68,6 @@ class BackupaccountAction extends Action
*
* @return boolean true
*/
-
function prepare($argarray)
{
parent::prepare($argarray);
@@ -77,10 +75,12 @@ class BackupaccountAction extends Action
$cur = common_current_user();
if (empty($cur)) {
+ // TRANS: Client exception thrown when trying to backup an account while not logged in.
throw new ClientException(_('Only logged-in users can backup their account.'), 403);
}
if (!$cur->hasRight(Right::BACKUPACCOUNT)) {
+ // TRANS: Client exception thrown when trying to backup an account without having backup rights.
throw new ClientException(_('You may not backup your account.'), 403);
}
@@ -94,7 +94,6 @@ class BackupaccountAction extends Action
*
* @return void
*/
-
function handle($argarray=null)
{
parent::handle($argarray);
@@ -109,7 +108,7 @@ class BackupaccountAction extends Action
/**
* Send a feed of the user's activities to the browser
- *
+ *
* Uses the UserActivityStream class; may take a long time!
*
* @return void
@@ -118,12 +117,14 @@ class BackupaccountAction extends Action
function sendFeed()
{
$cur = common_current_user();
-
- $stream = new UserActivityStream($cur);
+
+ $stream = new UserActivityStream($cur, true, UserActivityStream::OUTPUT_RAW);
header('Content-Disposition: attachment; filename='.$cur->nickname.'.atom');
header('Content-Type: application/atom+xml; charset=utf-8');
+ // @fixme atom feed logic is in getString...
+ // but we just want it to output to the outputter.
$this->raw($stream->getString());
}
@@ -132,13 +133,13 @@ class BackupaccountAction extends Action
*
* @return void
*/
-
+
function showContent()
{
$form = new BackupAccountForm($this);
$form->show();
}
-
+
/**
* Return true if read only.
*
@@ -148,10 +149,9 @@ class BackupaccountAction extends Action
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
- return false;
+ return true;
}
/**
@@ -161,7 +161,6 @@ class BackupaccountAction extends Action
*
* @return string last modified http header
*/
-
function lastModified()
{
// For comparison with If-Last-Modified
@@ -176,7 +175,6 @@ class BackupaccountAction extends Action
*
* @return string etag http header
*/
-
function etag()
{
return null;
@@ -193,7 +191,6 @@ class BackupaccountAction extends Action
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class BackupAccountForm extends Form
{
/**
@@ -201,7 +198,6 @@ class BackupAccountForm extends Form
*
* @return string the form's class
*/
-
function formClass()
{
return 'form_profile_backup';
@@ -212,7 +208,6 @@ class BackupAccountForm extends Form
*
* @return string the form's action URL
*/
-
function action()
{
return common_local_url('backupaccount');
@@ -220,18 +215,18 @@ class BackupAccountForm extends Form
/**
* Output form data
- *
+ *
* Really, just instructions for doing a backup.
*
* @return void
*/
-
function formData()
{
$msg =
+ // TRANS: Information displayed on the backup account page.
_('You can backup your account data in '.
'Activity Streams '.
- 'format. This is an experimental feature and provides an '.
+ 'format. This is an experimental feature and provides an '.
'incomplete backup; private account '.
'information like email and IM addresses is not backed up. '.
'Additionally, uploaded files and direct messages are not '.
@@ -243,18 +238,19 @@ class BackupAccountForm extends Form
/**
* Buttons for the form
- *
+ *
* In this case, a single submit button
*
* @return void
*/
-
function formActions()
{
$this->out->submit('submit',
+ // TRANS: Submit button to backup an account on the backup account page.
_m('BUTTON', 'Backup'),
'submit',
null,
- _('Backup your account'));
+ // TRANS: Title for submit button to backup an account on the backup account page.
+ _('Backup your account.'));
}
}
diff --git a/actions/block.php b/actions/block.php
index e87353b4e1..f195fb5a88 100644
--- a/actions/block.php
+++ b/actions/block.php
@@ -155,14 +155,14 @@ class BlockAction extends ProfileFormAction
'submit form_action-primary',
'no',
// TRANS: Submit button title for 'No' when blocking a user.
- _('Do not block this user'));
+ _('Do not block this user.'));
$this->submit('form_action-yes',
// TRANS: Button label on the user block form.
_m('BUTTON','Yes'),
'submit form_action-secondary',
'yes',
// TRANS: Submit button title for 'Yes' when blocking a user.
- _('Block this user'));
+ _('Block this user.'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}
diff --git a/actions/deleteaccount.php b/actions/deleteaccount.php
index 9abe2fcdb6..614519d474 100644
--- a/actions/deleteaccount.php
+++ b/actions/deleteaccount.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* Delete your own account
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -36,7 +36,7 @@ if (!defined('STATUSNET')) {
/**
* Action to delete your own account
- *
+ *
* Note that this is distinct from DeleteuserAction, which see. I thought
* that making that action do both things (delete another user and delete the
* current user) would open a lot of holes. I'm open to refactoring, however.
@@ -48,7 +48,6 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class DeleteaccountAction extends Action
{
private $_complete = false;
@@ -61,19 +60,20 @@ class DeleteaccountAction extends Action
*
* @return boolean true
*/
-
function prepare($argarray)
{
parent::prepare($argarray);
-
+
$cur = common_current_user();
if (empty($cur)) {
+ // TRANS: Client exception displayed trying to delete a user account while not logged in.
throw new ClientException(_("Only logged-in users ".
"can delete their account."), 403);
}
if (!$cur->hasRight(Right::DELETEACCOUNT)) {
+ // TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
throw new ClientException(_("You cannot delete your account."), 403);
}
@@ -87,7 +87,6 @@ class DeleteaccountAction extends Action
*
* @return void
*/
-
function handle($argarray=null)
{
parent::handle($argarray);
@@ -109,7 +108,6 @@ class DeleteaccountAction extends Action
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
return false;
@@ -122,7 +120,6 @@ class DeleteaccountAction extends Action
*
* @return string last modified http header
*/
-
function lastModified()
{
// For comparison with If-Last-Modified
@@ -137,7 +134,6 @@ class DeleteaccountAction extends Action
*
* @return string etag http header
*/
-
function etag()
{
return null;
@@ -145,7 +141,7 @@ class DeleteaccountAction extends Action
/**
* Delete the current user's account
- *
+ *
* Checks for the "I am sure." string to make sure the user really
* wants to delete their account.
*
@@ -156,13 +152,16 @@ class DeleteaccountAction extends Action
*
* @return void
*/
-
function deleteAccount()
{
$this->checkSessionToken();
-
- if ($this->trimmed('iamsure') != _('I am sure.')) {
- $this->_error = _('You must write "I am sure." exactly in the box.');
+ // !!! If this string is changed, it also needs to be changed in DeleteAccountForm::formData()
+ // TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+ $iamsure = _('I am sure.');
+ if ($this->trimmed('iamsure') != $iamsure ) {
+ // TRANS: Notification for user about the text that must be input to be able to delete a user account.
+ // TRANS: %s is the text that needs to be input.
+ $this->_error = sprintf(_('You must write "%s" exactly in the box.'), $iamsure);
$this->showPage();
return;
}
@@ -191,7 +190,7 @@ class DeleteaccountAction extends Action
/**
* Shows the page content.
- *
+ *
* If the deletion is complete, just shows a completion message.
*
* Otherwise, shows the deletion form.
@@ -199,11 +198,11 @@ class DeleteaccountAction extends Action
* @return void
*
*/
-
function showContent()
{
if ($this->_complete) {
- $this->element('p', 'confirmation',
+ $this->element('p', 'confirmation',
+ // TRANS: Confirmation that a user account has been deleted.
_('Account deleted.'));
return;
}
@@ -216,7 +215,7 @@ class DeleteaccountAction extends Action
$form = new DeleteAccountForm($this);
$form->show();
}
-
+
/**
* Show the title of the page
*
@@ -225,13 +224,14 @@ class DeleteaccountAction extends Action
function title()
{
+ // TRANS: Page title for page on which a user account can be deleted.
return _('Delete account');
}
}
/**
* Form for deleting your account
- *
+ *
* Note that this mostly is here to keep you from accidentally deleting your
* account.
*
@@ -242,7 +242,6 @@ class DeleteaccountAction extends Action
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class DeleteAccountForm extends Form
{
/**
@@ -250,7 +249,6 @@ class DeleteAccountForm extends Form
*
* @return string the form's class
*/
-
function formClass()
{
return 'form_profile_delete';
@@ -261,7 +259,6 @@ class DeleteAccountForm extends Form
*
* @return string the form's action URL
*/
-
function action()
{
return common_local_url('deleteaccount');
@@ -269,51 +266,60 @@ class DeleteAccountForm extends Form
/**
* Output form data
- *
+ *
* Instructions plus an 'i am sure' entry box.
*
* @return void
*/
-
function formData()
{
$cur = common_current_user();
- $msg = _('
This will permanently delete '.
- 'your account data from this server.
');
+ // TRANS: Form text for user deletion form.
+ $msg = '
' . _('This will permanently delete '.
+ 'your account data from this server.') . '
';
if ($cur->hasRight(Right::BACKUPACCOUNT)) {
- $msg .= sprintf(_('
You are strongly advised to '.
+ // TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+ // TRANS: %s is a URL to the backup page.
+ $msg .= '
' . sprintf(_('You are strongly advised to '.
'back up your data'.
- ' before deletion.
'),
- common_local_url('backupaccount'));
+ ' before deletion.'),
+ common_local_url('backupaccount')) . '';
}
$this->out->elementStart('p');
$this->out->raw($msg);
$this->out->elementEnd('p');
+ // !!! If this string is changed, it also needs to be changed in class DeleteaccountAction.
+ // TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+ $iamsure = _("I am sure.");
$this->out->input('iamsure',
+ // TRANS: Field label for delete account confirmation entry.
_('Confirm'),
null,
- _('Enter "I am sure." to confirm that '.
- 'you want to delete your account.'));
+ // TRANS: Input title for the delete account field.
+ // TRANS: %s is the text that needs to be input.
+ sprintf(_('Enter "%s" to confirm that '.
+ 'you want to delete your account.'),$iamsure ));
}
/**
* Buttons for the form
- *
+ *
* In this case, a single submit button
*
* @return void
*/
-
function formActions()
{
$this->out->submit('submit',
+ // TRANS: Button text for user account deletion.
_m('BUTTON', 'Delete'),
'submit',
null,
- _('Permanently your account'));
+ // TRANS: Button title for user account deletion.
+ _('Permanently delete your account'));
}
}
diff --git a/actions/deleteapplication.php b/actions/deleteapplication.php
index 272a91762c..9f9ac18971 100644
--- a/actions/deleteapplication.php
+++ b/actions/deleteapplication.php
@@ -158,13 +158,13 @@ class DeleteapplicationAction extends Action
'submit form_action-primary',
'no',
// TRANS: Submit button title for 'No' when deleting an application.
- _('Do not delete this application'));
+ _('Do not delete this application.'));
$this->submit('form_action-yes',
// TRANS: Button label on the delete application form.
_m('BUTTON','Yes'),
'submit form_action-secondary',
// TRANS: Submit button title for 'Yes' when deleting an application.
- 'yes', _('Delete this application'));
+ 'yes', _('Delete this application.'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}
diff --git a/actions/deletegroup.php b/actions/deletegroup.php
index 4e9b9851f1..637a7cba73 100644
--- a/actions/deletegroup.php
+++ b/actions/deletegroup.php
@@ -221,14 +221,14 @@ class DeletegroupAction extends RedirectingAction
'submit form_action-primary',
'no',
// TRANS: Submit button title for 'No' when deleting a group.
- _('Do not delete this group'));
+ _('Do not delete this group.'));
$this->submit('form_action-yes',
// TRANS: Button label on the delete group form.
_m('BUTTON','Yes'),
'submit form_action-secondary',
'yes',
// TRANS: Submit button title for 'Yes' when deleting a group.
- _('Delete this group'));
+ _('Delete this group.'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}
diff --git a/actions/deletenotice.php b/actions/deletenotice.php
index a7ac28e19c..c997bb756a 100644
--- a/actions/deletenotice.php
+++ b/actions/deletenotice.php
@@ -75,7 +75,7 @@ class DeletenoticeAction extends Action
if ($this->notice->profile_id != $this->user_profile->id &&
!$this->user->hasRight(Right::DELETEOTHERSNOTICE)) {
// TRANS: Error message displayed trying to delete a notice that was not made by the current user.
- common_user_error(_('Can\'t delete this notice.'));
+ common_user_error(_('Cannot delete this notice.'));
exit;
}
// XXX: Ajax!
@@ -156,14 +156,14 @@ class DeletenoticeAction extends Action
'submit form_action-primary',
'no',
// TRANS: Submit button title for 'No' when deleting a notice.
- _("Do not delete this notice"));
+ _('Do not delete this notice.'));
$this->submit('form_action-yes',
// TRANS: Button label on the delete notice form.
_m('BUTTON','Yes'),
'submit form_action-secondary',
'yes',
// TRANS: Submit button title for 'Yes' when deleting a notice.
- _('Delete this notice'));
+ _('Delete this notice.'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}
diff --git a/actions/deleteuser.php b/actions/deleteuser.php
index 02ded68b31..19b1e20e83 100644
--- a/actions/deleteuser.php
+++ b/actions/deleteuser.php
@@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
-
class DeleteuserAction extends ProfileFormAction
{
var $user = null;
@@ -52,7 +51,6 @@ class DeleteuserAction extends ProfileFormAction
*
* @return boolean success flag
*/
-
function prepare($args)
{
if (!parent::prepare($args)) {
@@ -64,6 +62,7 @@ class DeleteuserAction extends ProfileFormAction
assert(!empty($cur)); // checked by parent
if (!$cur->hasRight(Right::DELETEUSER)) {
+ // TRANS: Client error displayed when trying to delete a user without having the right to delete users.
$this->clientError(_('You cannot delete users.'));
return false;
}
@@ -71,6 +70,7 @@ class DeleteuserAction extends ProfileFormAction
$this->user = User::staticGet('id', $this->profile->id);
if (empty($this->user)) {
+ // TRANS: Client error displayed when trying to delete a non-local user.
$this->clientError(_('You can only delete local users.'));
return false;
}
@@ -87,7 +87,6 @@ class DeleteuserAction extends ProfileFormAction
*
* @return void
*/
-
function handle($args)
{
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
@@ -107,7 +106,8 @@ class DeleteuserAction extends ProfileFormAction
}
function title() {
- return _('Delete user');
+ // TRANS: Title of delete user page.
+ return _m('TITLE','Delete user');
}
function showNoticeForm() {
@@ -130,9 +130,11 @@ class DeleteuserAction extends ProfileFormAction
'action' => common_local_url('deleteuser')));
$this->elementStart('fieldset');
$this->hidden('token', common_session_token());
+ // TRANS: Fieldset legend on delete user page.
$this->element('legend', _('Delete user'));
if (Event::handle('StartDeleteUserForm', array($this, $this->user))) {
$this->element('p', null,
+ // TRANS: Information text to request if a user is certain that the described action has to be performed.
_('Are you sure you want to delete this user? '.
'This will clear all data about the user from the '.
'database, without a backup.'));
@@ -153,14 +155,14 @@ class DeleteuserAction extends ProfileFormAction
'submit form_action-primary',
'no',
// TRANS: Submit button title for 'No' when deleting a user.
- _('Do not block this user'));
+ _('Do not delete this user.'));
$this->submit('form_action-yes',
// TRANS: Button label on the delete user form.
_m('BUTTON','Yes'),
'submit form_action-secondary',
'yes',
// TRANS: Submit button title for 'Yes' when deleting a user.
- _('Delete this user'));
+ _('Delete this user.'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}
@@ -170,7 +172,6 @@ class DeleteuserAction extends ProfileFormAction
*
* @return void
*/
-
function handlePost()
{
if (Event::handle('StartDeleteUser', array($this, $this->user))) {
diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php
index 321a8ee5eb..a77b842fe3 100644
--- a/actions/designadminpanel.php
+++ b/actions/designadminpanel.php
@@ -44,10 +44,8 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class DesignadminpanelAction extends AdminPanelAction
{
-
/* The default site design */
var $design = null;
@@ -56,7 +54,6 @@ class DesignadminpanelAction extends AdminPanelAction
*
* @return string page title
*/
-
function title()
{
// TRANS: Message used as title for design settings for the site.
@@ -68,9 +65,9 @@ class DesignadminpanelAction extends AdminPanelAction
*
* @return string instructions
*/
-
function getInstructions()
{
+ // TRANS: Instructions for design adminsitration panel.
return _('Design settings for this StatusNet site');
}
@@ -79,7 +76,6 @@ class DesignadminpanelAction extends AdminPanelAction
*
* @return void
*/
-
function showForm()
{
$this->design = Design::siteDesign();
@@ -93,7 +89,6 @@ class DesignadminpanelAction extends AdminPanelAction
*
* @return void
*/
-
function saveSettings()
{
if ($this->arg('save')) {
@@ -101,6 +96,7 @@ class DesignadminpanelAction extends AdminPanelAction
} else if ($this->arg('defaults')) {
$this->restoreDefaults();
} else {
+ // TRANS: Client error displayed when the submitted form contains unexpected data.
$this->clientError(_('Unexpected form submission.'));
}
}
@@ -110,7 +106,6 @@ class DesignadminpanelAction extends AdminPanelAction
*
* @return void
*/
-
function saveDesignSettings()
{
// Workaround for PHP returning empty $_POST and $_FILES when POST
@@ -225,11 +220,10 @@ class DesignadminpanelAction extends AdminPanelAction
}
/**
- * Restore the default design
- *
- * @return void
- */
-
+ * Restore the default design
+ *
+ * @return void
+ */
function restoreDefaults()
{
$this->deleteSetting('site', 'logo');
@@ -257,7 +251,6 @@ class DesignadminpanelAction extends AdminPanelAction
*
* @return string $filename the filename of the image
*/
-
function saveBackgroundImage()
{
$filename = null;
@@ -302,7 +295,6 @@ class DesignadminpanelAction extends AdminPanelAction
* @throws ClientException for invalid theme archives
* @throws ServerException if trouble saving the theme files
*/
-
function saveCustomTheme()
{
if (common_config('theme_upload', 'enabled') &&
@@ -327,21 +319,24 @@ class DesignadminpanelAction extends AdminPanelAction
*
* @return void
*/
-
function validate(&$values)
{
if (!empty($values['logo']) &&
!Validate::uri($values['logo'], array('allowed_schemes' => array('http', 'https')))) {
+ // TRANS: Client error displayed when a logo URL does is not valid.
$this->clientError(_('Invalid logo URL.'));
}
if (!empty($values['ssllogo']) &&
!Validate::uri($values['ssllogo'], array('allowed_schemes' => array('https')))) {
+ // TRANS: Client error displayed when an SSL logo URL is invalid.
$this->clientError(_('Invalid SSL logo URL.'));
}
if (!in_array($values['theme'], Theme::listAvailable())) {
- $this->clientError(sprintf(_("Theme not available: %s."), $values['theme']));
+ // TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+ // TRANS: %s is the chosen unavailable theme.
+ $this->clientError(sprintf(_('Theme not available: %s.'), $values['theme']));
}
}
@@ -350,7 +345,6 @@ class DesignadminpanelAction extends AdminPanelAction
*
* @return void
*/
-
function showStylesheets()
{
parent::showStylesheets();
@@ -362,7 +356,6 @@ class DesignadminpanelAction extends AdminPanelAction
*
* @return void
*/
-
function showScripts()
{
parent::showScripts();
@@ -383,7 +376,6 @@ class DesignAdminPanelForm extends AdminForm
*
* @return int ID of the form
*/
-
function id()
{
return 'form_design_admin_panel';
@@ -394,7 +386,6 @@ class DesignAdminPanelForm extends AdminForm
*
* @return string class of the form
*/
-
function formClass()
{
return 'form_settings';
@@ -408,7 +399,6 @@ class DesignAdminPanelForm extends AdminForm
*
* @return string the method to use for submitting
*/
-
function method()
{
$this->enctype = 'multipart/form-data';
@@ -421,7 +411,6 @@ class DesignAdminPanelForm extends AdminForm
*
* @return string URL of the action
*/
-
function action()
{
return common_local_url('designadminpanel');
@@ -432,7 +421,6 @@ class DesignAdminPanelForm extends AdminForm
*
* @return void
*/
-
function formData()
{
$this->showLogo();
@@ -445,16 +433,25 @@ class DesignAdminPanelForm extends AdminForm
function showLogo()
{
$this->out->elementStart('fieldset', array('id' => 'settings_design_logo'));
+ // TRANS: Fieldset legend for form to change logo.
$this->out->element('legend', null, _('Change logo'));
$this->out->elementStart('ul', 'form_data');
$this->li();
- $this->input('logo', _('Site logo'), 'Logo for the site (full URL)');
+ $this->input('logo',
+ // TRANS: Field label for StatusNet site logo.
+ _('Site logo'),
+ // TRANS: Title for field label for StatusNet site logo.
+ 'Logo for the site (full URL).');
$this->unli();
$this->li();
- $this->input('ssllogo', _('SSL logo'), 'Logo to show on SSL pages');
+ $this->input('ssllogo',
+ // TRANS: Field label for SSL StatusNet site logo.
+ _('SSL logo'),
+ // TRANS: Title for field label for SSL StatusNet site logo.
+ 'Logo to show on SSL pages.');
$this->unli();
$this->out->elementEnd('ul');
@@ -466,6 +463,7 @@ class DesignAdminPanelForm extends AdminForm
function showTheme()
{
$this->out->elementStart('fieldset', array('id' => 'settings_design_theme'));
+ // TRANS: Fieldset legend for form change StatusNet site's theme.
$this->out->element('legend', null, _('Change theme'));
$this->out->elementStart('ul', 'form_data');
@@ -483,17 +481,21 @@ class DesignAdminPanelForm extends AdminForm
$themes = array_combine($themes, $themes);
$this->li();
+ // TRANS: Field label for dropdown to choose site theme.
$this->out->dropdown('theme', _('Site theme'),
+ // TRANS: Title for field label for dropdown to choose site theme.
$themes, _('Theme for the site.'),
false, $this->value('theme'));
$this->unli();
if (common_config('theme_upload', 'enabled')) {
$this->li();
+ // TRANS: Field label for uploading a cutom theme.
$this->out->element('label', array('for' => 'design_upload_theme'), _('Custom theme'));
$this->out->element('input', array('id' => 'design_upload_theme',
'name' => 'design_upload_theme',
'type' => 'file'));
+ // TRANS: Form instructions for uploading a cutom StatusNet theme.
$this->out->element('p', 'form_guide', _('You can upload a custom StatusNet theme as a .ZIP archive.'));
$this->unli();
}
@@ -509,22 +511,25 @@ class DesignAdminPanelForm extends AdminForm
$this->out->elementStart('fieldset', array('id' =>
'settings_design_background-image'));
+ // TRANS: Fieldset legend for theme background image.
$this->out->element('legend', null, _('Change background image'));
$this->out->elementStart('ul', 'form_data');
$this->li();
+ $this->out->element('input', array('name' => 'MAX_FILE_SIZE',
+ 'type' => 'hidden',
+ 'id' => 'MAX_FILE_SIZE',
+ 'value' => ImageFile::maxFileSizeInt()));
$this->out->element('label', array('for' => 'design_background-image_file'),
+ // TRANS: Field label for background image on theme designer page.
_('Background'));
$this->out->element('input', array('name' => 'design_background-image_file',
'type' => 'file',
'id' => 'design_background-image_file'));
$this->out->element('p', 'form_guide',
+ // TRANS: Form guide for background image upload form on theme designer page.
sprintf(_('You can upload a background image for the site. ' .
'The maximum file size is %1$s.'), ImageFile::maxFileSize()));
- $this->out->element('input', array('name' => 'MAX_FILE_SIZE',
- 'type' => 'hidden',
- 'id' => 'MAX_FILE_SIZE',
- 'value' => ImageFile::maxFileSizeInt()));
$this->unli();
if (!empty($design->backgroundimage)) {
@@ -568,11 +573,13 @@ class DesignAdminPanelForm extends AdminForm
'class' => 'radio'),
// TRANS: Used as radio button label to not add a background image.
_('Off'));
+ // TRANS: Form guide for turning background image on or off on theme designer page.
$this->out->element('p', 'form_guide', _('Turn background image on or off.'));
$this->unli();
$this->li();
$this->out->checkbox('design_background-image_repeat',
+ // TRANS: Checkbox label to title background image on theme designer page.
_('Tile background image'),
($design->disposition & BACKGROUND_TILE) ? true : false);
$this->unli();
@@ -587,7 +594,8 @@ class DesignAdminPanelForm extends AdminForm
$design = $this->out->design;
$this->out->elementStart('fieldset', array('id' => 'settings_design_color'));
- $this->out->element('legend', null, _('Change colours'));
+ // TRANS: Fieldset legend for theme colors.
+ $this->out->element('legend', null, _('Change colors'));
$this->out->elementStart('ul', 'form_data');
@@ -597,6 +605,7 @@ class DesignAdminPanelForm extends AdminForm
$bgcolor = new WebColor($design->backgroundcolor);
$this->li();
+ // TRANS: Field label for background color selector.
$this->out->element('label', array('for' => 'swatch-1'), _('Background'));
$this->out->element('input', array('name' => 'design_background',
'type' => 'text',
@@ -610,6 +619,7 @@ class DesignAdminPanelForm extends AdminForm
$ccolor = new WebColor($design->contentcolor);
$this->li();
+ // TRANS: Field label for content color selector.
$this->out->element('label', array('for' => 'swatch-2'), _('Content'));
$this->out->element('input', array('name' => 'design_content',
'type' => 'text',
@@ -623,6 +633,7 @@ class DesignAdminPanelForm extends AdminForm
$sbcolor = new WebColor($design->sidebarcolor);
$this->li();
+ // TRANS: Field label for sidebar color selector.
$this->out->element('label', array('for' => 'swatch-3'), _('Sidebar'));
$this->out->element('input', array('name' => 'design_sidebar',
'type' => 'text',
@@ -636,6 +647,7 @@ class DesignAdminPanelForm extends AdminForm
$tcolor = new WebColor($design->textcolor);
$this->li();
+ // TRANS: Field label for text color selector.
$this->out->element('label', array('for' => 'swatch-4'), _('Text'));
$this->out->element('input', array('name' => 'design_text',
'type' => 'text',
@@ -649,6 +661,7 @@ class DesignAdminPanelForm extends AdminForm
$lcolor = new WebColor($design->linkcolor);
$this->li();
+ // TRANS: Field label for link color selector.
$this->out->element('label', array('for' => 'swatch-5'), _('Links'));
$this->out->element('input', array('name' => 'design_links',
'type' => 'text',
@@ -674,10 +687,12 @@ class DesignAdminPanelForm extends AdminForm
{
if (common_config('custom_css', 'enabled')) {
$this->out->elementStart('fieldset', array('id' => 'settings_design_advanced'));
+ // TRANS: Fieldset legend for advanced theme design settings.
$this->out->element('legend', null, _('Advanced'));
$this->out->elementStart('ul', 'form_data');
$this->li();
+ // TRANS: Field label for custom CSS.
$this->out->element('label', array('for' => 'css'), _('Custom CSS'));
$this->out->element('textarea', array('name' => 'css',
'id' => 'css',
@@ -699,17 +714,25 @@ class DesignAdminPanelForm extends AdminForm
function formActions()
{
- $this->out->submit('defaults', _('Use defaults'), 'submit form_action-default',
- 'defaults', _('Restore default designs'));
+ // TRANS: Button text for resetting theme settings.
+ $this->out->submit('defaults', _m('BUTTON','Use defaults'), 'submit form_action-default',
+ // TRANS: Title for button for resetting theme settings.
+ 'defaults', _('Restore default designs.'));
$this->out->element('input', array('id' => 'settings_design_reset',
'type' => 'reset',
+ // TRANS: Button text for resetting theme settings.
'value' => 'Reset',
'class' => 'submit form_action-primary',
- 'title' => _('Reset back to default')));
+ // TRANS: Title for button for resetting theme settings.
+ 'title' => _('Reset back to default.')));
- $this->out->submit('save', _('Save'), 'submit form_action-secondary',
- 'save', _('Save design'));
+ $this->out->submit('save',
+ // TRANS: Button text for saving theme settings.
+ _m('BUTTON','Save'),
+ 'submit form_action-secondary',
+ 'save',
+ // TRANS: Title for button for saving theme settings.
+ _('Save design.'));
}
-
}
diff --git a/actions/disfavor.php b/actions/disfavor.php
index 3ccdd69af2..39598d60bf 100644
--- a/actions/disfavor.php
+++ b/actions/disfavor.php
@@ -1,5 +1,4 @@
clientError(_('Not logged in.'));
return;
}
@@ -71,6 +71,7 @@ class DisfavorAction extends Action
$notice = Notice::staticGet($id);
$token = $this->trimmed('token-'.$notice->id);
if (!$token || $token != common_session_token()) {
+ // TRANS: Client error displayed when the session token does not match or is not given.
$this->clientError(_('There was a problem with your session token. Try again, please.'));
return;
}
@@ -78,12 +79,14 @@ class DisfavorAction extends Action
$fave->user_id = $user->id;
$fave->notice_id = $notice->id;
if (!$fave->find(true)) {
+ // TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
$this->clientError(_('This notice is not a favorite!'));
return;
}
$result = $fave->delete();
if (!$result) {
common_log_db_error($fave, 'DELETE', __FILE__);
+ // TRANS: Server error displayed when removing a favorite from the database fails.
$this->serverError(_('Could not delete favorite.'));
return;
}
@@ -91,6 +94,7 @@ class DisfavorAction extends Action
if ($this->boolean('ajax')) {
$this->startHTML('text/xml;charset=utf-8');
$this->elementStart('head');
+ // TRANS: Title for page on which favorites can be added.
$this->element('title', null, _('Add to favorites'));
$this->elementEnd('head');
$this->elementStart('body');
@@ -105,4 +109,3 @@ class DisfavorAction extends Action
}
}
}
-
diff --git a/actions/doc.php b/actions/doc.php
index f876fb8beb..20cf9e2810 100644
--- a/actions/doc.php
+++ b/actions/doc.php
@@ -1,5 +1,4 @@
element('h1', array('class' => 'entry-title'), $this->title());
@@ -96,7 +94,6 @@ class DocAction extends Action
*
* @return void.
*/
-
function showContentBlock()
{
$this->elementStart('div', array('id' => 'content', 'class' => 'hentry'));
@@ -117,7 +114,6 @@ class DocAction extends Action
*
* @return void
*/
-
function showContent()
{
$this->raw($this->output);
@@ -142,7 +138,6 @@ class DocAction extends Action
*
* @return boolean read-only flag (false)
*/
-
function isReadOnly($args)
{
return true;
@@ -155,7 +150,9 @@ class DocAction extends Action
$this->filename = $this->getFilename();
if (empty($this->filename)) {
- throw new ClientException(sprintf(_('No such document "%s"'), $this->title), 404);
+ // TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+ // TRANS: %s is the non-existing document.
+ throw new ClientException(sprintf(_('No such document "%s".'), $this->title), 404);
}
$c = file_get_contents($this->filename);
diff --git a/actions/editapplication.php b/actions/editapplication.php
index 760b1d284e..4e67d9e57b 100644
--- a/actions/editapplication.php
+++ b/actions/editapplication.php
@@ -198,6 +198,7 @@ class EditApplicationAction extends OwnerDesignAction
} elseif (Oauth_application::descriptionTooLong($description)) {
$this->showForm(sprintf(
// TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+ // TRANS: %d is the maximum number of allowed characters.
_m('Description is too long (maximum %d character).',
'Description is too long (maximum %d characters).',
Oauth_application::maxDesc()),
@@ -223,6 +224,7 @@ class EditApplicationAction extends OwnerDesignAction
$this->showForm(_('Organization is too long (maximum 255 characters).'));
return;
} elseif (empty($homepage)) {
+ // TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
$this->showForm(_('Organization homepage is required.'));
return;
} elseif ((mb_strlen($homepage) > 0)
diff --git a/actions/editgroup.php b/actions/editgroup.php
index ab4dbb2836..0e04170051 100644
--- a/actions/editgroup.php
+++ b/actions/editgroup.php
@@ -177,116 +177,121 @@ class EditgroupAction extends GroupDesignAction
return;
}
- $nickname = Nickname::normalize($this->trimmed('nickname'));
- $fullname = $this->trimmed('fullname');
- $homepage = $this->trimmed('homepage');
- $description = $this->trimmed('description');
- $location = $this->trimmed('location');
- $aliasstring = $this->trimmed('aliases');
+ if (Event::handle('StartGroupSaveForm', array($this))) {
- if ($this->nicknameExists($nickname)) {
- // TRANS: Group edit form validation error.
- $this->showForm(_('Nickname already in use. Try another one.'));
- return;
- } else if (!User_group::allowedNickname($nickname)) {
- // TRANS: Group edit form validation error.
- $this->showForm(_('Not a valid nickname.'));
- return;
- } else if (!is_null($homepage) && (strlen($homepage) > 0) &&
- !Validate::uri($homepage,
- array('allowed_schemes' =>
- array('http', 'https')))) {
- // TRANS: Group edit form validation error.
- $this->showForm(_('Homepage is not a valid URL.'));
- return;
- } else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
- // TRANS: Group edit form validation error.
- $this->showForm(_('Full name is too long (maximum 255 characters).'));
- return;
- } else if (User_group::descriptionTooLong($description)) {
- $this->showForm(sprintf(
+ $nickname = Nickname::normalize($this->trimmed('nickname'));
+ $fullname = $this->trimmed('fullname');
+ $homepage = $this->trimmed('homepage');
+ $description = $this->trimmed('description');
+ $location = $this->trimmed('location');
+ $aliasstring = $this->trimmed('aliases');
+
+ if ($this->nicknameExists($nickname)) {
// TRANS: Group edit form validation error.
- _m('Description is too long (maximum %d character).',
- 'Description is too long (maximum %d characters).',
- User_group::maxDescription()),
+ $this->showForm(_('Nickname already in use. Try another one.'));
+ return;
+ } else if (!User_group::allowedNickname($nickname)) {
+ // TRANS: Group edit form validation error.
+ $this->showForm(_('Not a valid nickname.'));
+ return;
+ } else if (!is_null($homepage) && (strlen($homepage) > 0) &&
+ !Validate::uri($homepage,
+ array('allowed_schemes' =>
+ array('http', 'https')))) {
+ // TRANS: Group edit form validation error.
+ $this->showForm(_('Homepage is not a valid URL.'));
+ return;
+ } else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
+ // TRANS: Group edit form validation error.
+ $this->showForm(_('Full name is too long (maximum 255 characters).'));
+ return;
+ } else if (User_group::descriptionTooLong($description)) {
+ $this->showForm(sprintf(
+ // TRANS: Group edit form validation error.
+ _m('Description is too long (maximum %d character).',
+ 'Description is too long (maximum %d characters).',
+ User_group::maxDescription()),
User_group::maxDescription()));
- return;
- } else if (!is_null($location) && mb_strlen($location) > 255) {
- // TRANS: Group edit form validation error.
- $this->showForm(_('Location is too long (maximum 255 characters).'));
- return;
- }
-
- if (!empty($aliasstring)) {
- $aliases = array_map('common_canonical_nickname', array_unique(preg_split('/[\s,]+/', $aliasstring)));
- } else {
- $aliases = array();
- }
-
- if (count($aliases) > common_config('group', 'maxaliases')) {
- // TRANS: Group edit form validation error.
- // TRANS: %d is the maximum number of allowed aliases.
- $this->showForm(sprintf(_m('Too many aliases! Maximum %d allowed.',
- 'Too many aliases! Maximum %d allowed.',
- common_config('group', 'maxaliases')),
- common_config('group', 'maxaliases')));
- return;
- }
-
- foreach ($aliases as $alias) {
- if (!Nickname::isValid($alias)) {
+ return;
+ } else if (!is_null($location) && mb_strlen($location) > 255) {
// TRANS: Group edit form validation error.
- $this->showForm(sprintf(_('Invalid alias: "%s"'), $alias));
+ $this->showForm(_('Location is too long (maximum 255 characters).'));
return;
}
- if ($this->nicknameExists($alias)) {
+
+ if (!empty($aliasstring)) {
+ $aliases = array_map('common_canonical_nickname', array_unique(preg_split('/[\s,]+/', $aliasstring)));
+ } else {
+ $aliases = array();
+ }
+
+ if (count($aliases) > common_config('group', 'maxaliases')) {
// TRANS: Group edit form validation error.
- $this->showForm(sprintf(_('Alias "%s" already in use. Try another one.'),
- $alias));
+ // TRANS: %d is the maximum number of allowed aliases.
+ $this->showForm(sprintf(_m('Too many aliases! Maximum %d allowed.',
+ 'Too many aliases! Maximum %d allowed.',
+ common_config('group', 'maxaliases')),
+ common_config('group', 'maxaliases')));
return;
}
- // XXX assumes alphanum nicknames
- if (strcmp($alias, $nickname) == 0) {
- // TRANS: Group edit form validation error.
- $this->showForm(_('Alias can\'t be the same as nickname.'));
- return;
+
+ foreach ($aliases as $alias) {
+ if (!Nickname::isValid($alias)) {
+ // TRANS: Group edit form validation error.
+ $this->showForm(sprintf(_('Invalid alias: "%s"'), $alias));
+ return;
+ }
+ if ($this->nicknameExists($alias)) {
+ // TRANS: Group edit form validation error.
+ $this->showForm(sprintf(_('Alias "%s" already in use. Try another one.'),
+ $alias));
+ return;
+ }
+ // XXX assumes alphanum nicknames
+ if (strcmp($alias, $nickname) == 0) {
+ // TRANS: Group edit form validation error.
+ $this->showForm(_('Alias can\'t be the same as nickname.'));
+ return;
+ }
}
+
+ $this->group->query('BEGIN');
+
+ $orig = clone($this->group);
+
+ $this->group->nickname = $nickname;
+ $this->group->fullname = $fullname;
+ $this->group->homepage = $homepage;
+ $this->group->description = $description;
+ $this->group->location = $location;
+ $this->group->mainpage = common_local_url('showgroup', array('nickname' => $nickname));
+
+ $result = $this->group->update($orig);
+
+ if (!$result) {
+ common_log_db_error($this->group, 'UPDATE', __FILE__);
+ // TRANS: Server error displayed when editing a group fails.
+ $this->serverError(_('Could not update group.'));
+ }
+
+ $result = $this->group->setAliases($aliases);
+
+ if (!$result) {
+ // TRANS: Server error displayed when group aliases could not be added.
+ $this->serverError(_('Could not create aliases.'));
+ }
+
+ if ($nickname != $orig->nickname) {
+ common_log(LOG_INFO, "Saving local group info.");
+ $local = Local_group::staticGet('group_id', $this->group->id);
+ $local->setNickname($nickname);
+ }
+
+ $this->group->query('COMMIT');
+
+ Event::handle('EndGroupSaveForm', array($this));
}
- $this->group->query('BEGIN');
-
- $orig = clone($this->group);
-
- $this->group->nickname = $nickname;
- $this->group->fullname = $fullname;
- $this->group->homepage = $homepage;
- $this->group->description = $description;
- $this->group->location = $location;
- $this->group->mainpage = common_local_url('showgroup', array('nickname' => $nickname));
-
- $result = $this->group->update($orig);
-
- if (!$result) {
- common_log_db_error($this->group, 'UPDATE', __FILE__);
- // TRANS: Server error displayed when editing a group fails.
- $this->serverError(_('Could not update group.'));
- }
-
- $result = $this->group->setAliases($aliases);
-
- if (!$result) {
- // TRANS: Server error displayed when group aliases could not be added.
- $this->serverError(_('Could not create aliases.'));
- }
-
- if ($nickname != $orig->nickname) {
- common_log(LOG_INFO, "Saving local group info.");
- $local = Local_group::staticGet('group_id', $this->group->id);
- $local->setNickname($nickname);
- }
-
- $this->group->query('COMMIT');
-
if ($this->group->nickname != $orig->nickname) {
common_redirect(common_local_url('editgroup',
array('nickname' => $nickname)),
diff --git a/actions/emailsettings.php b/actions/emailsettings.php
index 41c12f2a04..6780928157 100644
--- a/actions/emailsettings.php
+++ b/actions/emailsettings.php
@@ -54,7 +54,6 @@ class EmailsettingsAction extends SettingsAction
*
* @return string Title of the page
*/
-
function title()
{
// TRANS: Title for e-mail settings.
@@ -66,7 +65,6 @@ class EmailsettingsAction extends SettingsAction
*
* @return instructions for use
*/
-
function getInstructions()
{
// XXX: For consistency of parameters in messages, this should be a
@@ -91,7 +89,6 @@ class EmailsettingsAction extends SettingsAction
*
* @return void
*/
-
function showContent()
{
$user = common_current_user();
@@ -118,8 +115,8 @@ class EmailsettingsAction extends SettingsAction
$confirm = $this->getConfirmation();
if ($confirm) {
$this->element('p', array('id' => 'form_unconfirmed'), $confirm->address);
- // TRANS: Form note in e-mail settings form.
$this->element('p', array('class' => 'form_note'),
+ // TRANS: Form note in e-mail settings form.
_('Awaiting confirmation on this address. '.
'Check your inbox (and spam box!) for a message '.
'with further instructions.'));
@@ -173,7 +170,7 @@ class EmailsettingsAction extends SettingsAction
if ($user->incomingemail) {
$this->elementStart('p');
$this->element('span', 'address', $user->incomingemail);
- // XXX: Looks a little awkward in the UI.
+ // @todo XXX: Looks a little awkward in the UI.
// Something like "xxxx@identi.ca Send email ..". Needs improvement.
$this->element('span', 'input_instructions',
// TRANS: Form instructions for incoming e-mail form in e-mail settings.
@@ -208,7 +205,7 @@ class EmailsettingsAction extends SettingsAction
$this->element('legend', null, _('Email preferences'));
$this->elementStart('ul', 'form_data');
-
+
if (Event::handle('StartEmailFormData', array($this))) {
$this->elementStart('li');
$this->checkbox('emailnotifysub',
@@ -262,7 +259,6 @@ class EmailsettingsAction extends SettingsAction
*
* @return Confirm_address Email address confirmation for user, or null
*/
-
function getConfirmation()
{
$user = common_current_user();
@@ -288,7 +284,6 @@ class EmailsettingsAction extends SettingsAction
*
* @return void
*/
-
function handlePost()
{
// CSRF protection
@@ -322,13 +317,12 @@ class EmailsettingsAction extends SettingsAction
*
* @return void
*/
-
function savePreferences()
{
$user = common_current_user();
-
+
if (Event::handle('StartEmailSaveForm', array($this, &$user))) {
-
+
$emailnotifysub = $this->boolean('emailnotifysub');
$emailnotifyfav = $this->boolean('emailnotifyfav');
$emailnotifymsg = $this->boolean('emailnotifymsg');
@@ -336,13 +330,13 @@ class EmailsettingsAction extends SettingsAction
$emailnotifyattn = $this->boolean('emailnotifyattn');
$emailmicroid = $this->boolean('emailmicroid');
$emailpost = $this->boolean('emailpost');
-
+
assert(!is_null($user)); // should already be checked
-
+
$user->query('BEGIN');
-
+
$original = clone($user);
-
+
$user->emailnotifysub = $emailnotifysub;
$user->emailnotifyfav = $emailnotifyfav;
$user->emailnotifymsg = $emailnotifymsg;
@@ -350,20 +344,20 @@ class EmailsettingsAction extends SettingsAction
$user->emailnotifyattn = $emailnotifyattn;
$user->emailmicroid = $emailmicroid;
$user->emailpost = $emailpost;
-
+
$result = $user->update($original);
-
+
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
// TRANS: Server error thrown on database error updating e-mail preferences.
- $this->serverError(_('Couldn\'t update user.'));
+ $this->serverError(_('Could not update user.'));
return;
}
-
+
$user->query('COMMIT');
-
+
Event::handle('EndEmailSaveForm', array($this));
-
+
// TRANS: Confirmation message for successful e-mail preferences save.
$this->showForm(_('Email preferences saved.'), true);
}
@@ -374,7 +368,6 @@ class EmailsettingsAction extends SettingsAction
*
* @return void
*/
-
function addAddress()
{
$user = common_current_user();
@@ -393,7 +386,7 @@ class EmailsettingsAction extends SettingsAction
if (!$email) {
// TRANS: Message given saving e-mail address that cannot be normalised.
- $this->showForm(_('Cannot normalize that email address'));
+ $this->showForm(_('Cannot normalize that email address.'));
return;
}
if (!Validate::email($email, common_config('email', 'check_domain'))) {
@@ -423,7 +416,7 @@ class EmailsettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($confirm, 'INSERT', __FILE__);
// TRANS: Server error thrown on database error adding e-mail confirmation code.
- $this->serverError(_('Couldn\'t insert confirmation code.'));
+ $this->serverError(_('Could not insert confirmation code.'));
return;
}
@@ -442,7 +435,6 @@ class EmailsettingsAction extends SettingsAction
*
* @return void
*/
-
function cancelConfirmation()
{
$email = $this->arg('email');
@@ -465,7 +457,7 @@ class EmailsettingsAction extends SettingsAction
if (!$result) {
common_log_db_error($confirm, 'DELETE', __FILE__);
// TRANS: Server error thrown on database error canceling e-mail address confirmation.
- $this->serverError(_('Couldn\'t delete email confirmation.'));
+ $this->serverError(_('Could not delete email confirmation.'));
return;
}
@@ -478,7 +470,6 @@ class EmailsettingsAction extends SettingsAction
*
* @return void
*/
-
function removeAddress()
{
$user = common_current_user();
@@ -505,7 +496,7 @@ class EmailsettingsAction extends SettingsAction
if (!$result) {
common_log_db_error($user, 'UPDATE', __FILE__);
// TRANS: Server error thrown on database error removing a registered e-mail address.
- $this->serverError(_('Couldn\'t update user.'));
+ $this->serverError(_('Could not update user.'));
return;
}
$user->query('COMMIT');
@@ -519,12 +510,12 @@ class EmailsettingsAction extends SettingsAction
*
* @return void
*/
-
function removeIncoming()
{
$user = common_current_user();
if (!$user->incomingemail) {
+ // TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
$this->showForm(_('No incoming email address.'));
return;
}
@@ -537,7 +528,7 @@ class EmailsettingsAction extends SettingsAction
if (!$user->updateKeys($orig)) {
common_log_db_error($user, 'UPDATE', __FILE__);
// TRANS: Server error thrown on database error removing incoming e-mail address.
- $this->serverError(_("Couldn't update user record."));
+ $this->serverError(_('Could not update user record.'));
}
// TRANS: Message given after successfully removing an incoming e-mail address.
@@ -549,7 +540,6 @@ class EmailsettingsAction extends SettingsAction
*
* @return void
*/
-
function newIncoming()
{
$user = common_current_user();
@@ -562,7 +552,7 @@ class EmailsettingsAction extends SettingsAction
if (!$user->updateKeys($orig)) {
common_log_db_error($user, 'UPDATE', __FILE__);
// TRANS: Server error thrown on database error adding incoming e-mail address.
- $this->serverError(_("Couldn't update user record."));
+ $this->serverError(_('Could not update user record.'));
}
// TRANS: Message given after successfully adding an incoming e-mail address.
diff --git a/actions/favor.php b/actions/favor.php
index 01976a38f5..61db235738 100644
--- a/actions/favor.php
+++ b/actions/favor.php
@@ -1,5 +1,4 @@
clientError(_('Not logged in.'));
return;
}
@@ -76,11 +76,13 @@ class FavorAction extends Action
return;
}
if ($user->hasFave($notice)) {
+ // TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
$this->clientError(_('This notice is already a favorite!'));
return;
}
$fave = Fave::addNew($user->getProfile(), $notice);
if (!$fave) {
+ // TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
$this->serverError(_('Could not create favorite.'));
return;
}
@@ -89,7 +91,8 @@ class FavorAction extends Action
if ($this->boolean('ajax')) {
$this->startHTML('text/xml;charset=utf-8');
$this->elementStart('head');
- $this->element('title', null, _('Disfavor favorite'));
+ // TRANS: Page title for page on which favorite notices can be unfavourited.
+ $this->element('title', null, _('Disfavor favorite.'));
$this->elementEnd('head');
$this->elementStart('body');
$disfavor = new DisFavorForm($this, $notice);
@@ -123,4 +126,3 @@ class FavorAction extends Action
}
}
}
-
diff --git a/actions/favorited.php b/actions/favorited.php
index 19d49feecf..c137cf424f 100644
--- a/actions/favorited.php
+++ b/actions/favorited.php
@@ -48,7 +48,6 @@ require_once INSTALLDIR.'/lib/noticelist.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class FavoritedAction extends Action
{
var $page = null;
@@ -62,8 +61,11 @@ class FavoritedAction extends Action
function title()
{
if ($this->page == 1) {
+ // TRANS: Page title for first page of favorited notices.
return _('Popular notices');
} else {
+ // TRANS: Page title for all but first page of favorited notices.
+ // TRANS: %d is the page number being displayed.
return sprintf(_('Popular notices, page %d'), $this->page);
}
}
@@ -73,9 +75,9 @@ class FavoritedAction extends Action
*
* @return instructions for use
*/
-
function getInstructions()
{
+ // TRANS: Description on page displaying favorited notices.
return _('The most popular notices on the site right now.');
}
@@ -84,7 +86,6 @@ class FavoritedAction extends Action
*
* @return boolean true
*/
-
function isReadOnly($args)
{
return true;
@@ -99,7 +100,6 @@ class FavoritedAction extends Action
*
* @todo move queries from showContent() to here
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -119,7 +119,6 @@ class FavoritedAction extends Action
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -134,7 +133,6 @@ class FavoritedAction extends Action
*
* @return void
*/
-
function showPageNotice()
{
$instr = $this->getInstructions();
@@ -147,12 +145,16 @@ class FavoritedAction extends Action
function showEmptyList()
{
+ // TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
$message = _('Favorite notices appear on this page but no one has favorited one yet.') . ' ';
if (common_logged_in()) {
+ // TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
$message .= _('Be the first to add a notice to your favorites by clicking the fave button next to any notice you like.');
}
else {
+ // TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+ // TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
$message .= _('Why not [register an account](%%action.register%%) and be the first to add a notice to your favorites!');
}
@@ -168,7 +170,6 @@ class FavoritedAction extends Action
*
* @return void
*/
-
function showLocalNav()
{
$nav = new PublicGroupNav($this);
@@ -182,7 +183,6 @@ class FavoritedAction extends Action
*
* @return void
*/
-
function showContent()
{
$pop = new Popularity();
diff --git a/actions/favoritesrss.php b/actions/favoritesrss.php
index 51c92af933..494327674d 100644
--- a/actions/favoritesrss.php
+++ b/actions/favoritesrss.php
@@ -1,5 +1,4 @@
user = User::staticGet('nickname', $nickname);
if (!$this->user) {
+ // TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
$this->clientError(_('No such user.'));
return false;
} else {
@@ -108,10 +106,14 @@ class FavoritesrssAction extends Rss10Action
$c = array('url' => common_local_url('favoritesrss',
array('nickname' =>
$user->nickname)),
+ // TRANS: Title of RSS feed with favourite notices of a user.
+ // TRANS: %s is a user's nickname.
'title' => sprintf(_("%s's favorite notices"), $user->nickname),
'link' => common_local_url('showfavorites',
array('nickname' =>
$user->nickname)),
+ // TRANS: Desciption of RSS feed with favourite notices of a user.
+ // TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
'description' => sprintf(_('Updates favored by %1$s on %2$s!'),
$user->nickname, common_config('site', 'name')));
return $c;
diff --git a/actions/featured.php b/actions/featured.php
index dd1056dd58..9a7f128b57 100644
--- a/actions/featured.php
+++ b/actions/featured.php
@@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/publicgroupnav.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class FeaturedAction extends Action
{
var $page = null;
@@ -66,8 +65,11 @@ class FeaturedAction extends Action
function title()
{
if ($this->page == 1) {
+ // TRANS: Page title for first page of featured users.
return _('Featured users');
} else {
+ // TRANS: Page title for all but first page of featured users.
+ // TRANS: %d is the page number being displayed.
return sprintf(_('Featured users, page %d'), $this->page);
}
}
@@ -96,7 +98,8 @@ class FeaturedAction extends Action
function getInstructions()
{
- return sprintf(_('A selection of some great users on %s'),
+ // TRANS: Description on page displaying featured users.
+ return sprintf(_('A selection of some great users on %s.'),
common_config('site', 'name'));
}
diff --git a/actions/file.php b/actions/file.php
index c6f7b998a2..49ed8af1d6 100644
--- a/actions/file.php
+++ b/actions/file.php
@@ -21,6 +21,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
require_once(INSTALLDIR.'/actions/shownotice.php');
+// @todo FIXME: Add documentation.
class FileAction extends Action
{
var $id = null;
@@ -31,14 +32,17 @@ class FileAction extends Action
parent::prepare($args);
$this->id = $this->trimmed('notice');
if (empty($this->id)) {
+ // TRANS: Client error displayed when no notice ID was given trying do display a file.
$this->clientError(_('No notice ID.'));
}
$notice = Notice::staticGet('id', $this->id);
if (empty($notice)) {
+ // TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
$this->clientError(_('No notice.'));
}
$atts = $notice->attachments();
if (empty($atts)) {
+ // TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
$this->clientError(_('No attachments.'));
}
foreach ($atts as $att) {
@@ -48,6 +52,9 @@ class FileAction extends Action
}
}
if (empty($this->filerec)) {
+ // XXX: Is this translation hint correct? If yes, please remove comment, if no, please correct and remove comment.
+ // TRANS: Client error displayed when trying do display a file for a notice with file attachements
+ // TRANS: that could not be found.
$this->clientError(_('No uploaded attachments.'));
}
return true;
@@ -62,11 +69,8 @@ class FileAction extends Action
*
* @return boolean true
*/
-
function isReadOnly($args)
{
return true;
}
-
}
-
diff --git a/actions/finishremotesubscribe.php b/actions/finishremotesubscribe.php
index 0325f6adbb..59725af27f 100644
--- a/actions/finishremotesubscribe.php
+++ b/actions/finishremotesubscribe.php
@@ -48,7 +48,6 @@ require_once INSTALLDIR.'/lib/omb.php';
*/
class FinishremotesubscribeAction extends Action
{
-
/**
* Class handler.
*
@@ -56,7 +55,7 @@ class FinishremotesubscribeAction extends Action
*
* @return nothing
*
- **/
+ */
function handle($args)
{
parent::handle($args);
@@ -66,6 +65,7 @@ class FinishremotesubscribeAction extends Action
$service = unserialize($_SESSION['oauth_authorization_request']);
if (!$service) {
+ // TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
$this->clientError(_('Not expecting this response!'));
return;
}
@@ -77,6 +77,7 @@ class FinishremotesubscribeAction extends Action
$user = User::staticGet('uri', $service->getListeneeURI());
if (!$user) {
+ // TRANS: Client error displayed when subscribing to a remote profile that does not exist.
$this->clientError(_('User being listened to does not exist.'));
return;
}
@@ -84,6 +85,7 @@ class FinishremotesubscribeAction extends Action
$other = User::staticGet('uri', $service->getListenerURI());
if ($other) {
+ // TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
$this->clientError(_('You can use the local subscription!'));
return;
}
@@ -96,6 +98,7 @@ class FinishremotesubscribeAction extends Action
$profile = Profile::staticGet($remote->id);
if ($user->hasBlocked($profile)) {
+ // TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
$this->clientError(_('That user has blocked you from subscribing.'));
return;
}
@@ -107,14 +110,17 @@ class FinishremotesubscribeAction extends Action
} catch (OAuthException $e) {
if ($e->getMessage() == 'The authorized token does not equal the ' .
'submitted token.') {
+ // TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
$this->clientError(_('You are not authorized.'));
return;
} else {
+ // TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
$this->clientError(_('Could not convert request token to ' .
'access token.'));
return;
}
} catch (OMB_RemoteServiceException $e) {
+ // TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
$this->clientError(_('Remote service uses unknown version of ' .
'OMB protocol.'));
return;
@@ -135,6 +141,7 @@ class FinishremotesubscribeAction extends Action
$service->getServiceURI(OMB_ENDPOINT_UPDATEPROFILE);
if (!$remote->update($orig_remote)) {
+ // TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
$this->serverError(_('Error updating remote profile.'));
return;
}
diff --git a/actions/foaf.php b/actions/foaf.php
index 09af7b5026..ceb575c736 100644
--- a/actions/foaf.php
+++ b/actions/foaf.php
@@ -23,6 +23,7 @@ define('LISTENER', 1);
define('LISTENEE', -1);
define('BOTH', 0);
+// @todo XXX: Documentation missing.
class FoafAction extends Action
{
function isReadOnly($args)
@@ -37,6 +38,7 @@ class FoafAction extends Action
$nickname_arg = $this->arg('nickname');
if (empty($nickname_arg)) {
+ // TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
$this->clientError(_('No such user.'), 404);
return false;
}
@@ -55,6 +57,7 @@ class FoafAction extends Action
$this->user = User::staticGet('nickname', $this->nickname);
if (!$this->user) {
+ // TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
$this->clientError(_('No such user.'), 404);
return false;
}
@@ -62,6 +65,7 @@ class FoafAction extends Action
$this->profile = $this->user->getProfile();
if (!$this->profile) {
+ // TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
$this->serverError(_('User has no profile.'), 500);
return false;
}
@@ -110,7 +114,7 @@ class FoafAction extends Action
if ($this->profile->bio) {
$this->element('bio:olb', null, $this->profile->bio);
}
-
+
$location = $this->profile->getLocation();
if ($location) {
$attr = array();
@@ -118,7 +122,7 @@ class FoafAction extends Action
$attr['rdf:about'] = $location->getRdfURL();
}
$location_name = $location->getName();
-
+
$this->elementStart('based_near');
$this->elementStart('geo:SpatialThing', $attr);
if ($location_name) {
@@ -193,7 +197,7 @@ class FoafAction extends Action
$this->element('knows', array('rdf:resource' => $uri));
}
}
-
+
$this->elementEnd('Agent');
@@ -239,18 +243,17 @@ class FoafAction extends Action
/**
* Output FOAF bit for the given profile.
- *
+ *
* @param Profile $profile
* @param mixed $service Root URL of this StatusNet instance for a local
* user, otherwise null.
* @param mixed $useruri URI string for the referenced profile..
* @param boolean $fetchSubscriptions Should we load and list all their subscriptions?
* @param boolean $isSubscriber if not fetching subs, we can still mark the user as following the current page.
- *
+ *
* @return array if $fetchSubscribers is set, return a list of info on those
* subscriptions.
*/
-
function showMicrobloggingAccount($profile, $service=null, $useruri=null, $fetchSubscriptions=false, $isSubscriber=false)
{
$attr = array();
diff --git a/actions/foafgroup.php b/actions/foafgroup.php
index 4db40c28be..9638ea0f34 100644
--- a/actions/foafgroup.php
+++ b/actions/foafgroup.php
@@ -27,6 +27,7 @@
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+// @todo XXX: Documentation missing.
class FoafGroupAction extends Action
{
function isReadOnly($args)
@@ -41,6 +42,7 @@ class FoafGroupAction extends Action
$nickname_arg = $this->arg('nickname');
if (empty($nickname_arg)) {
+ // TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -59,6 +61,7 @@ class FoafGroupAction extends Action
$local = Local_group::staticGet('nickname', $this->nickname);
if (!$local) {
+ // TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -66,6 +69,7 @@ class FoafGroupAction extends Action
$this->group = User_group::staticGet('id', $local->group_id);
if (!$this->group) {
+ // TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
$this->clientError(_('No such group.'), 404);
return false;
}
diff --git a/actions/geocode.php b/actions/geocode.php
index d934930608..123a839f56 100644
--- a/actions/geocode.php
+++ b/actions/geocode.php
@@ -68,7 +68,7 @@ class GeocodeAction extends Action
*
* @return nothing
*
- **/
+ */
function handle($args)
{
header('Content-Type: application/json; charset=utf-8');
@@ -89,7 +89,6 @@ class GeocodeAction extends Action
*
* @return boolean true
*/
-
function isReadOnly($args)
{
return true;
diff --git a/actions/getfile.php b/actions/getfile.php
index a45506ce2a..4b57a05cd6 100644
--- a/actions/getfile.php
+++ b/actions/getfile.php
@@ -47,13 +47,11 @@ require_once 'MIME/Type.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class GetfileAction extends Action
{
/**
* Path of file to return
*/
-
var $path = null;
/**
@@ -63,7 +61,6 @@ class GetfileAction extends Action
*
* @return success flag
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -76,10 +73,12 @@ class GetfileAction extends Action
}
if (empty($path) or !file_exists($path)) {
+ // TRANS: Client error displayed when requesting a non-existent file.
$this->clientError(_('No such file.'), 404);
return false;
}
if (!is_readable($path)) {
+ // TRANS: Client error displayed when requesting a file without having read access to it.
$this->clientError(_('Cannot read file.'), 403);
return false;
}
@@ -93,7 +92,6 @@ class GetfileAction extends Action
*
* @return boolean true
*/
-
function isReadOnly($args)
{
return true;
@@ -104,7 +102,6 @@ class GetfileAction extends Action
*
* @return int last-modified date as unix timestamp
*/
-
function lastModified()
{
if (common_config('site', 'use_x_sendfile')) {
@@ -122,7 +119,6 @@ class GetfileAction extends Action
*
* @return string etag http header
*/
-
function etag()
{
if (common_config('site', 'use_x_sendfile')) {
@@ -151,7 +147,6 @@ class GetfileAction extends Action
*
* @return void
*/
-
function handle($args)
{
// undo headers set by PHP sessions
diff --git a/actions/grantrole.php b/actions/grantrole.php
index b8b23d02e9..36369a8600 100644
--- a/actions/grantrole.php
+++ b/actions/grantrole.php
@@ -2,7 +2,7 @@
/**
* StatusNet, the distributed open-source microblogging tool
*
- * Action class to sandbox an abusive user
+ * Action class to grant user roles.
*
* PHP version 5
*
@@ -32,7 +32,7 @@ if (!defined('STATUSNET')) {
}
/**
- * Sandbox a user.
+ * Assign role to user.
*
* @category Action
* @package StatusNet
@@ -40,7 +40,6 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
-
class GrantRoleAction extends ProfileFormAction
{
/**
@@ -50,19 +49,20 @@ class GrantRoleAction extends ProfileFormAction
*
* @return boolean success flag
*/
-
function prepare($args)
{
if (!parent::prepare($args)) {
return false;
}
-
+
$this->role = $this->arg('role');
if (!Profile_role::isValid($this->role)) {
+ // TRANS: Client error displayed when trying to assign an invalid role to a user.
$this->clientError(_('Invalid role.'));
return false;
}
if (!Profile_role::isSettable($this->role)) {
+ // TRANS: Client error displayed when trying to assign an reserved role to a user.
$this->clientError(_('This role is reserved and cannot be set.'));
return false;
}
@@ -72,6 +72,7 @@ class GrantRoleAction extends ProfileFormAction
assert(!empty($cur)); // checked by parent
if (!$cur->hasRight(Right::GRANTROLE)) {
+ // TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
$this->clientError(_('You cannot grant user roles on this site.'));
return false;
}
@@ -79,6 +80,7 @@ class GrantRoleAction extends ProfileFormAction
assert(!empty($this->profile)); // checked by parent
if ($this->profile->hasRole($this->role)) {
+ // TRANS: Client error displayed when trying to assign a role to a user that already has that role.
$this->clientError(_('User already has this role.'));
return false;
}
@@ -91,7 +93,6 @@ class GrantRoleAction extends ProfileFormAction
*
* @return void
*/
-
function handlePost()
{
$this->profile->grantRole($this->role);
diff --git a/actions/groupblock.php b/actions/groupblock.php
index 39f783397a..d426563d8c 100644
--- a/actions/groupblock.php
+++ b/actions/groupblock.php
@@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
-
class GroupblockAction extends RedirectingAction
{
var $profile = null;
@@ -53,11 +52,11 @@ class GroupblockAction extends RedirectingAction
*
* @return boolean success flag
*/
-
function prepare($args)
{
parent::prepare($args);
if (!common_logged_in()) {
+ // TRANS: Client error displayed trying to block a user from a group while not logged in.
$this->clientError(_('Not logged in.'));
return false;
}
@@ -68,35 +67,42 @@ class GroupblockAction extends RedirectingAction
}
$id = $this->trimmed('blockto');
if (empty($id)) {
+ // TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
$this->clientError(_('No profile specified.'));
return false;
}
$this->profile = Profile::staticGet('id', $id);
if (empty($this->profile)) {
+ // TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
$this->clientError(_('No profile with that ID.'));
return false;
}
$group_id = $this->trimmed('blockgroup');
if (empty($group_id)) {
+ // TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
$this->clientError(_('No group specified.'));
return false;
}
$this->group = User_group::staticGet('id', $group_id);
if (empty($this->group)) {
+ // TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
$this->clientError(_('No such group.'));
return false;
}
$user = common_current_user();
if (!$user->isAdmin($this->group)) {
+ // TRANS: Client error displayed trying to block a user from a group while not being an admin user.
$this->clientError(_('Only an admin can block group members.'), 401);
return false;
}
if (Group_block::isBlocked($this->group, $this->profile)) {
+ // TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
$this->clientError(_('User is already blocked from group.'));
return false;
}
// XXX: could have proactive blocks, but we don't have UI for it.
if (!$this->profile->isMember($this->group)) {
+ // TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
$this->clientError(_('User is not a member of group.'));
return false;
}
@@ -131,6 +137,7 @@ class GroupblockAction extends RedirectingAction
}
function title() {
+ // TRANS: Title for block user from group page.
return _('Block user from group');
}
@@ -145,7 +152,6 @@ class GroupblockAction extends RedirectingAction
*
* @return void
*/
-
function areYouSureForm()
{
$id = $this->profile->id;
@@ -155,8 +161,11 @@ class GroupblockAction extends RedirectingAction
'action' => common_local_url('groupblock')));
$this->elementStart('fieldset');
$this->hidden('token', common_session_token());
+ // TRANS: Fieldset legend for block user from group form.
$this->element('legend', _('Block user'));
$this->element('p', null,
+ // TRANS: Explanatory text for block user from group form before setting the block.
+ // TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
sprintf(_('Are you sure you want to block user "%1$s" from the group "%2$s"? '.
'They will be removed from the group, unable to post, and '.
'unable to subscribe to the group in the future.'),
@@ -179,14 +188,14 @@ class GroupblockAction extends RedirectingAction
'submit form_action-primary',
'no',
// TRANS: Submit button title for 'No' when blocking a user from a group.
- _('Do not block this user from this group'));
+ _('Do not block this user from this group.'));
$this->submit('form_action-yes',
// TRANS: Button label on the form to block a user from a group.
_m('BUTTON','Yes'),
'submit form_action-secondary',
'yes',
// TRANS: Submit button title for 'Yes' when blocking a user from a group.
- _('Block this user from this group'));
+ _('Block this user from this group.'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}
@@ -196,24 +205,24 @@ class GroupblockAction extends RedirectingAction
*
* @return void
*/
-
function blockProfile()
{
$block = Group_block::blockProfile($this->group, $this->profile,
common_current_user());
if (empty($block)) {
+ // TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
$this->serverError(_("Database error blocking user from group."));
return false;
}
-
+
$this->returnToPrevious();
}
/**
* If we reached this form without returnto arguments, default to
* the top of the group's member list.
- *
+ *
* @return string URL
*/
function defaultReturnTo()
@@ -227,6 +236,4 @@ class GroupblockAction extends RedirectingAction
parent::showScripts();
$this->autofocus('form_action-yes');
}
-
}
-
diff --git a/actions/groupbyid.php b/actions/groupbyid.php
index 5af7109cb4..f18e4540c0 100644
--- a/actions/groupbyid.php
+++ b/actions/groupbyid.php
@@ -47,7 +47,6 @@ require_once INSTALLDIR.'/lib/feedlist.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class GroupbyidAction extends Action
{
/** group we're viewing. */
@@ -58,7 +57,6 @@ class GroupbyidAction extends Action
*
* @return boolean true
*/
-
function isReadOnly($args)
{
return true;
@@ -71,6 +69,7 @@ class GroupbyidAction extends Action
$id = $this->arg('id');
if (!$id) {
+ // TRANS: Client error displayed referring to a group's permalink without providing a group ID.
$this->clientError(_('No ID.'));
return false;
}
@@ -80,6 +79,7 @@ class GroupbyidAction extends Action
$this->group = User_group::staticGet('id', $id);
if (!$this->group) {
+ // TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -95,9 +95,8 @@ class GroupbyidAction extends Action
*
* @return void
*/
-
function handle($args)
{
common_redirect($this->group->homeUrl(), 303);
}
-}
\ No newline at end of file
+}
diff --git a/actions/groupdesignsettings.php b/actions/groupdesignsettings.php
index 526226a285..3ef5e20e44 100644
--- a/actions/groupdesignsettings.php
+++ b/actions/groupdesignsettings.php
@@ -2,7 +2,7 @@
/**
* StatusNet, the distributed open-source microblogging tool
*
- * Change user password
+ * Saves a design for a given group.
*
* PHP version 5
*
@@ -46,7 +46,6 @@ require_once INSTALLDIR . '/lib/designsettings.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class GroupDesignSettingsAction extends DesignSettingsAction
{
var $group = null;
@@ -59,12 +58,12 @@ class GroupDesignSettingsAction extends DesignSettingsAction
*
* @return boolean true
*/
-
function prepare($args)
{
parent::prepare($args);
if (!common_logged_in()) {
+ // TRANS: Client error displayed trying to change group design settings while not logged in.
$this->clientError(_('You must be logged in to edit a group.'));
return false;
}
@@ -81,6 +80,7 @@ class GroupDesignSettingsAction extends DesignSettingsAction
}
if (!$nickname) {
+ // TRANS: Client error displayed trying to change group design settings without providing a group nickname.
$this->clientError(_('No nickname.'), 404);
return false;
}
@@ -97,6 +97,7 @@ class GroupDesignSettingsAction extends DesignSettingsAction
}
if (!$this->group) {
+ // TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -104,6 +105,7 @@ class GroupDesignSettingsAction extends DesignSettingsAction
$cur = common_current_user();
if (!$cur->isAdmin($this->group)) {
+ // TRANS: Client error displayed trying to change group design settings without being a (group) admin.
$this->clientError(_('You must be an admin to edit the group.'), 403);
return false;
}
@@ -122,7 +124,6 @@ class GroupDesignSettingsAction extends DesignSettingsAction
*
* @return Design a design object to use
*/
-
function getDesign()
{
@@ -141,6 +142,7 @@ class GroupDesignSettingsAction extends DesignSettingsAction
function title()
{
+ // TRANS: Title group design settings page.
return _('Group design');
}
@@ -149,9 +151,9 @@ class GroupDesignSettingsAction extends DesignSettingsAction
*
* @return instructions for use
*/
-
function getInstructions()
{
+ // TRANS: Instructions for group design settings page.
return _('Customize the way your group looks ' .
'with a background image and a colour palette of your choice.');
}
@@ -161,7 +163,6 @@ class GroupDesignSettingsAction extends DesignSettingsAction
*
* @return nothing
*/
-
function showLocalNav()
{
$nav = new GroupNav($this, $this->group);
@@ -173,7 +174,6 @@ class GroupDesignSettingsAction extends DesignSettingsAction
*
* @return Design
*/
-
function getWorkingDesign()
{
$design = null;
@@ -192,7 +192,6 @@ class GroupDesignSettingsAction extends DesignSettingsAction
*
* @return void
*/
-
function showContent()
{
$design = $this->getWorkingDesign();
@@ -209,17 +208,14 @@ class GroupDesignSettingsAction extends DesignSettingsAction
*
* @return void
*/
-
function saveDesign()
{
try {
-
$bgcolor = new WebColor($this->trimmed('design_background'));
$ccolor = new WebColor($this->trimmed('design_content'));
$sbcolor = new WebColor($this->trimmed('design_sidebar'));
$tcolor = new WebColor($this->trimmed('design_text'));
$lcolor = new WebColor($this->trimmed('design_links'));
-
} catch (WebColorException $e) {
$this->showForm($e->getMessage());
return;
@@ -246,7 +242,6 @@ class GroupDesignSettingsAction extends DesignSettingsAction
$design = $this->group->getDesign();
if (!empty($design)) {
-
// update design
$original = clone($design);
@@ -263,12 +258,11 @@ class GroupDesignSettingsAction extends DesignSettingsAction
if ($result === false) {
common_log_db_error($design, 'UPDATE', __FILE__);
- $this->showForm(_('Couldn\'t update your design.'));
+ // TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+ $this->showForm(_('Unable to update your design settings.'));
return;
}
-
} else {
-
$this->group->query('BEGIN');
// save new design
@@ -287,6 +281,7 @@ class GroupDesignSettingsAction extends DesignSettingsAction
if (empty($id)) {
common_log_db_error($id, 'INSERT', __FILE__);
+ // TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
$this->showForm(_('Unable to save your design settings.'));
return;
}
@@ -297,18 +292,18 @@ class GroupDesignSettingsAction extends DesignSettingsAction
if (empty($result)) {
common_log_db_error($original, 'UPDATE', __FILE__);
+ // TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
$this->showForm(_('Unable to save your design settings.'));
$this->group->query('ROLLBACK');
return;
}
$this->group->query('COMMIT');
-
}
$this->saveBackgroundImage($design);
+ // TRANS: Form text to confirm saved group design settings.
$this->showForm(_('Design preferences saved.'), true);
}
-
}
diff --git a/actions/grouplogo.php b/actions/grouplogo.php
index 69840485e0..d490cd9875 100644
--- a/actions/grouplogo.php
+++ b/actions/grouplogo.php
@@ -49,7 +49,6 @@ define('MAX_ORIGINAL', 480);
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class GrouplogoAction extends GroupDesignAction
{
var $mode = null;
@@ -61,12 +60,12 @@ class GrouplogoAction extends GroupDesignAction
/**
* Prepare to run
*/
-
function prepare($args)
{
parent::prepare($args);
if (!common_logged_in()) {
+ // TRANS: Client error displayed when trying to create a group while not logged in.
$this->clientError(_('You must be logged in to create a group.'));
return false;
}
@@ -83,6 +82,7 @@ class GrouplogoAction extends GroupDesignAction
}
if (!$nickname) {
+ // TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
$this->clientError(_('No nickname.'), 404);
return false;
}
@@ -99,6 +99,7 @@ class GrouplogoAction extends GroupDesignAction
}
if (!$this->group) {
+ // TRANS: Client error displayed when trying to update logo settings for a non-existing group.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -106,6 +107,7 @@ class GrouplogoAction extends GroupDesignAction
$cur = common_current_user();
if (!$cur->isAdmin($this->group)) {
+ // TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
$this->clientError(_('You must be an admin to edit the group.'), 403);
return false;
}
@@ -136,9 +138,9 @@ class GrouplogoAction extends GroupDesignAction
*
* @return string Title of the page
*/
-
function title()
{
+ // TRANS: Title for group logo settings page.
return _('Group logo');
}
@@ -147,9 +149,10 @@ class GrouplogoAction extends GroupDesignAction
*
* @return instructions for use
*/
-
function getInstructions()
{
+ // TRANS: Instructions for group logo page.
+ // TRANS: %s is the maximum file size for that site.
return sprintf(_('You can upload a logo image for your group. The maximum file size is %s.'), ImageFile::maxFileSize());
}
@@ -160,7 +163,6 @@ class GrouplogoAction extends GroupDesignAction
*
* @return void
*/
-
function showContent()
{
if ($this->mode == 'crop') {
@@ -178,6 +180,7 @@ class GrouplogoAction extends GroupDesignAction
if (!$profile) {
common_log_db_error($user, 'SELECT', __FILE__);
+ // TRANS: Server error displayed coming across a request from a user without a profile.
$this->serverError(_('User without matching profile.'));
return;
}
@@ -192,6 +195,7 @@ class GrouplogoAction extends GroupDesignAction
common_local_url('grouplogo',
array('nickname' => $this->group->nickname))));
$this->elementStart('fieldset');
+ // TRANS: Group logo form legend.
$this->element('legend', null, _('Group logo'));
$this->hidden('token', common_session_token());
@@ -199,7 +203,8 @@ class GrouplogoAction extends GroupDesignAction
if ($original) {
$this->elementStart('li', array('id' => 'avatar_original',
'class' => 'avatar_view'));
- $this->element('h2', null, _("Original"));
+ // TRANS: Uploaded original file in group logo form.
+ $this->element('h2', null, _('Original'));
$this->elementStart('div', array('id'=>'avatar_original_view'));
$this->element('img', array('src' => $this->group->original_logo,
'alt' => $this->group->nickname));
@@ -210,7 +215,8 @@ class GrouplogoAction extends GroupDesignAction
if ($this->group->homepage_logo) {
$this->elementStart('li', array('id' => 'avatar_preview',
'class' => 'avatar_view'));
- $this->element('h2', null, _("Preview"));
+ // TRANS: Header for preview of to be displayed group logo.
+ $this->element('h2', null, _('Preview'));
$this->elementStart('div', array('id'=>'avatar_preview_view'));
$this->element('img', array('src' => $this->group->homepage_logo,
'width' => AVATAR_PROFILE_SIZE,
@@ -221,25 +227,25 @@ class GrouplogoAction extends GroupDesignAction
}
$this->elementStart('li', array ('id' => 'settings_attach'));
- $this->element('input', array('name' => 'avatarfile',
- 'type' => 'file',
- 'id' => 'avatarfile'));
$this->element('input', array('name' => 'MAX_FILE_SIZE',
'type' => 'hidden',
'id' => 'MAX_FILE_SIZE',
'value' => ImageFile::maxFileSizeInt()));
+ $this->element('input', array('name' => 'avatarfile',
+ 'type' => 'file',
+ 'id' => 'avatarfile'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->elementStart('ul', 'form_actions');
$this->elementStart('li');
+ // TRANS: Submit button for uploading a group logo.
$this->submit('upload', _('Upload'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->elementEnd('fieldset');
$this->elementEnd('form');
-
}
function showCropForm()
@@ -251,6 +257,7 @@ class GrouplogoAction extends GroupDesignAction
common_local_url('grouplogo',
array('nickname' => $this->group->nickname))));
$this->elementStart('fieldset');
+ // TRANS: Legend for group logo settings fieldset.
$this->element('legend', null, _('Avatar settings'));
$this->hidden('token', common_session_token());
@@ -259,7 +266,8 @@ class GrouplogoAction extends GroupDesignAction
$this->elementStart('li',
array('id' => 'avatar_original',
'class' => 'avatar_view'));
- $this->element('h2', null, _("Original"));
+ // TRANS: Header for originally uploaded file before a crop on the group logo page.
+ $this->element('h2', null, _('Original'));
$this->elementStart('div', array('id'=>'avatar_original_view'));
$this->element('img', array('src' => Avatar::url($this->filedata['filename']),
'width' => $this->filedata['width'],
@@ -271,7 +279,8 @@ class GrouplogoAction extends GroupDesignAction
$this->elementStart('li',
array('id' => 'avatar_preview',
'class' => 'avatar_view'));
- $this->element('h2', null, _("Preview"));
+ // TRANS: Header for the cropped group logo on the group logo page.
+ $this->element('h2', null, _('Preview'));
$this->elementStart('div', array('id'=>'avatar_preview_view'));
$this->element('img', array('src' => Avatar::url($this->filedata['filename']),
'width' => AVATAR_PROFILE_SIZE,
@@ -286,13 +295,13 @@ class GrouplogoAction extends GroupDesignAction
'id' => $crop_info));
}
+ // TRANS: Button text for cropping an uploaded group logo.
$this->submit('crop', _('Crop'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->elementEnd('fieldset');
$this->elementEnd('form');
-
}
/**
@@ -302,13 +311,13 @@ class GrouplogoAction extends GroupDesignAction
*
* @return void
*/
-
function handlePost()
{
// CSRF protection
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
+ // TRANS: Form validation error message.
$this->show_form(_('There was a problem with your session token. '.
'Try again, please.'));
return;
@@ -319,6 +328,7 @@ class GrouplogoAction extends GroupDesignAction
} else if ($this->arg('crop')) {
$this->cropLogo();
} else {
+ // TRANS: Form validation error message when an unsupported argument is used.
$this->showForm(_('Unexpected form submission.'));
}
}
@@ -331,7 +341,6 @@ class GrouplogoAction extends GroupDesignAction
*
* @return void
*/
-
function uploadLogo()
{
try {
@@ -341,20 +350,21 @@ class GrouplogoAction extends GroupDesignAction
return;
}
+ $type = $imagefile->preferredType();
$filename = Avatar::filename($this->group->id,
- image_type_to_extension($imagefile->type),
+ image_type_to_extension($type),
null,
'group-temp-'.common_timestamp());
$filepath = Avatar::path($filename);
- move_uploaded_file($imagefile->filepath, $filepath);
+ $imagefile->copyTo($filepath);
$filedata = array('filename' => $filename,
'filepath' => $filepath,
'width' => $imagefile->width,
'height' => $imagefile->height,
- 'type' => $imagefile->type);
+ 'type' => $type);
$_SESSION['FILEDATA'] = $filedata;
@@ -362,6 +372,7 @@ class GrouplogoAction extends GroupDesignAction
$this->mode = 'crop';
+ // TRANS: Form instructions on the group logo page.
$this->showForm(_('Pick a square area of the image to be the logo.'),
true);
}
@@ -371,12 +382,12 @@ class GrouplogoAction extends GroupDesignAction
*
* @return void
*/
-
function cropLogo()
{
$filedata = $_SESSION['FILEDATA'];
if (!$filedata) {
+ // TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
$this->serverError(_('Lost our file data.'));
return;
}
@@ -396,8 +407,10 @@ class GrouplogoAction extends GroupDesignAction
@unlink($filedata['filepath']);
unset($_SESSION['FILEDATA']);
$this->mode = 'upload';
+ // TRANS: Form success message after updating a group logo.
$this->showForm(_('Logo updated.'), true);
} else {
+ // TRANS: Form failure message after failing to update a group logo.
$this->showForm(_('Failed updating logo.'));
}
}
@@ -422,7 +435,6 @@ class GrouplogoAction extends GroupDesignAction
*
* @return void
*/
-
function showStylesheets()
{
parent::showStylesheets();
@@ -434,7 +446,6 @@ class GrouplogoAction extends GroupDesignAction
*
* @return void
*/
-
function showScripts()
{
parent::showScripts();
diff --git a/actions/groupmembers.php b/actions/groupmembers.php
index d03d0b5a3a..7b1512dfab 100644
--- a/actions/groupmembers.php
+++ b/actions/groupmembers.php
@@ -43,7 +43,6 @@ require_once INSTALLDIR.'/lib/publicgroupnav.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class GroupmembersAction extends GroupDesignAction
{
var $page = null;
@@ -73,6 +72,7 @@ class GroupmembersAction extends GroupDesignAction
}
if (!$nickname) {
+ // TRANS: Client error displayed when trying to view group members without providing a group nickname.
$this->clientError(_('No nickname.'), 404);
return false;
}
@@ -80,6 +80,7 @@ class GroupmembersAction extends GroupDesignAction
$local = Local_group::staticGet('nickname', $nickname);
if (!$local) {
+ // TRANS: Client error displayed when trying to view group members for a non-existing group.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -87,6 +88,7 @@ class GroupmembersAction extends GroupDesignAction
$this->group = User_group::staticGet('id', $local->group_id);
if (!$this->group) {
+ // TRANS: Client error displayed when trying to view group members for an object that is not a group.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -119,6 +121,7 @@ class GroupmembersAction extends GroupDesignAction
function showPageNotice()
{
$this->element('p', 'instructions',
+ // TRANS: Page notice for group members page.
_('A list of the users in this group.'));
}
@@ -182,7 +185,8 @@ class GroupMemberListItem extends ProfileListItem
{
parent::showFullName();
if ($this->profile->isAdmin($this->group)) {
- $this->out->text(' ');
+ $this->out->text(' '); // for separating the classes.
+ // TRANS: Indicator in group members list that this user is a group administrator.
$this->out->element('span', 'role', _('Admin'));
}
}
@@ -254,7 +258,7 @@ class GroupMemberListItem extends ProfileListItem
/**
* Fetch necessary return-to arguments for the profile forms
* to return to this list when they're done.
- *
+ *
* @return array
*/
protected function returnToArgs()
@@ -281,7 +285,6 @@ class GroupMemberListItem extends ProfileListItem
*
* @see BlockForm
*/
-
class GroupBlockForm extends Form
{
/**
@@ -310,7 +313,6 @@ class GroupBlockForm extends Form
* @param User_group $group group to block user from
* @param array $args return-to args
*/
-
function __construct($out=null, $profile=null, $group=null, $args=null)
{
parent::__construct($out);
@@ -325,7 +327,6 @@ class GroupBlockForm extends Form
*
* @return int ID of the form
*/
-
function id()
{
// This should be unique for the page.
@@ -337,7 +338,6 @@ class GroupBlockForm extends Form
*
* @return string class of the form
*/
-
function formClass()
{
return 'form_group_block';
@@ -348,7 +348,6 @@ class GroupBlockForm extends Form
*
* @return string URL of the action
*/
-
function action()
{
return common_local_url('groupblock');
@@ -361,6 +360,7 @@ class GroupBlockForm extends Form
*/
function formLegend()
{
+ // TRANS: Form legend for form to block user from a group.
$this->out->element('legend', null, _('Block user from group'));
}
@@ -369,7 +369,6 @@ class GroupBlockForm extends Form
*
* @return void
*/
-
function formData()
{
$this->out->hidden('blockto-' . $this->profile->id,
@@ -390,7 +389,6 @@ class GroupBlockForm extends Form
*
* @return void
*/
-
function formActions()
{
$this->out->submit(
@@ -414,25 +412,21 @@ class GroupBlockForm extends Form
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class MakeAdminForm extends Form
{
/**
* Profile of user to block
*/
-
var $profile = null;
/**
* Group to block the user from
*/
-
var $group = null;
/**
* Return-to args
*/
-
var $args = null;
/**
@@ -443,7 +437,6 @@ class MakeAdminForm extends Form
* @param User_group $group group to block user from
* @param array $args return-to args
*/
-
function __construct($out=null, $profile=null, $group=null, $args=null)
{
parent::__construct($out);
@@ -458,7 +451,6 @@ class MakeAdminForm extends Form
*
* @return int ID of the form
*/
-
function id()
{
// This should be unique for the page.
@@ -470,7 +462,6 @@ class MakeAdminForm extends Form
*
* @return string class of the form
*/
-
function formClass()
{
return 'form_make_admin';
@@ -481,7 +472,6 @@ class MakeAdminForm extends Form
*
* @return string URL of the action
*/
-
function action()
{
return common_local_url('makeadmin', array('nickname' => $this->group->nickname));
@@ -492,9 +482,9 @@ class MakeAdminForm extends Form
*
* @return void
*/
-
function formLegend()
{
+ // TRANS: Form legend for form to make a user a group admin.
$this->out->element('legend', null, _('Make user an admin of the group'));
}
@@ -503,7 +493,6 @@ class MakeAdminForm extends Form
*
* @return void
*/
-
function formData()
{
$this->out->hidden('profileid-' . $this->profile->id,
@@ -524,7 +513,6 @@ class MakeAdminForm extends Form
*
* @return void
*/
-
function formActions()
{
$this->out->submit(
diff --git a/actions/grouprss.php b/actions/grouprss.php
index 98fdea38de..39dcff83d9 100644
--- a/actions/grouprss.php
+++ b/actions/grouprss.php
@@ -45,7 +45,6 @@ define('MEMBERS_PER_SECTION', 27);
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class groupRssAction extends Rss10Action
{
/** group we're viewing. */
@@ -56,7 +55,6 @@ class groupRssAction extends Rss10Action
*
* @return boolean true
*/
-
function isReadOnly($args)
{
return true;
@@ -71,7 +69,6 @@ class groupRssAction extends Rss10Action
*
* @return boolean success flag
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -88,6 +85,7 @@ class groupRssAction extends Rss10Action
}
if (!$nickname) {
+ // TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
$this->clientError(_('No nickname.'), 404);
return false;
}
@@ -95,6 +93,7 @@ class groupRssAction extends Rss10Action
$local = Local_group::staticGet('nickname', $nickname);
if (!$local) {
+ // TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -102,6 +101,7 @@ class groupRssAction extends Rss10Action
$this->group = User_group::staticGet('id', $local->group_id);
if (!$this->group) {
+ // TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -112,7 +112,6 @@ class groupRssAction extends Rss10Action
function getNotices($limit=0)
{
-
$group = $this->group;
if (is_null($group)) {
diff --git a/actions/groups.php b/actions/groups.php
index 8aacff8b0e..958c5921bf 100644
--- a/actions/groups.php
+++ b/actions/groups.php
@@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/grouplist.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class GroupsAction extends Action
{
var $page = null;
@@ -59,9 +58,12 @@ class GroupsAction extends Action
function title()
{
if ($this->page == 1) {
- return _("Groups");
+ // TRANS: Title for first page of the groups list.
+ return _m('TITLE',"Groups");
} else {
- return sprintf(_("Groups, page %d"), $this->page);
+ // TRANS: Title for all but the first page of the groups list.
+ // TRANS: %d is the page number.
+ return sprintf(_m('TITLE',"Groups, page %d"), $this->page);
}
}
@@ -87,12 +89,15 @@ class GroupsAction extends Action
function showPageNotice()
{
$notice =
+ // TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+ // TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+ // TRANS: This message contains Markdown links in the form [link text](link).
sprintf(_('%%%%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%%%%)'));
+ '[start your own](%%%%action.newgroup%%%%)!'));
$this->elementStart('div', 'instructions');
$this->raw(common_markup_to_html($notice));
$this->elementEnd('div');
@@ -104,6 +109,7 @@ class GroupsAction extends Action
$this->elementStart('p', array('id' => 'new_group'));
$this->element('a', array('href' => common_local_url('newgroup'),
'class' => 'more'),
+ // TRANS: Link to create a new group on the group list page.
_('Create a new group'));
$this->elementEnd('p');
}
diff --git a/actions/groupsearch.php b/actions/groupsearch.php
index 55f4cee625..fce5c2b16a 100644
--- a/actions/groupsearch.php
+++ b/actions/groupsearch.php
@@ -49,12 +49,14 @@ class GroupsearchAction extends SearchAction
{
function getInstructions()
{
+ // TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
return _('Search for groups on %%site.name%% by their name, location, or description. ' .
'Separate the terms by spaces; they must be 3 characters or more.');
}
function title()
{
+ // TRANS: Title for page where groups can be searched.
return _('Group search');
}
@@ -76,12 +78,17 @@ class GroupsearchAction extends SearchAction
$this->pagination($page > 1, $cnt > GROUPS_PER_PAGE,
$page, 'groupsearch', array('q' => $q));
} else {
+ // TRANS: Text on page where groups can be searched if no results were found for a query.
$this->element('p', 'error', _('No results.'));
$this->searchSuggestions($q);
if (common_logged_in()) {
- $message = _('If you can\'t find the group you\'re looking for, you can [create it](%%action.newgroup%%) yourself.');
+ // TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+ // TRANS: This message contains Markdown links in the form [link text](link).
+ $message = _('If you cannot find the group you\'re looking for, you can [create it](%%action.newgroup%%) yourself.');
}
else {
+ // TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+ // TRANS: This message contains Markdown links in the form [link text](link).
$message = _('Why not [register an account](%%action.register%%) and [create the group](%%action.newgroup%%) yourself!');
}
$this->elementStart('div', 'guide');
@@ -116,4 +123,3 @@ class GroupSearchResults extends GroupList
return preg_replace($this->pattern, '\\1', htmlspecialchars($text));
}
}
-
diff --git a/actions/groupunblock.php b/actions/groupunblock.php
index ef2380725e..de0af59821 100644
--- a/actions/groupunblock.php
+++ b/actions/groupunblock.php
@@ -79,6 +79,7 @@ class GroupunblockAction extends Action
}
$group_id = $this->trimmed('unblockgroup');
if (empty($group_id)) {
+ // TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
$this->clientError(_('No group specified.'));
return false;
}
diff --git a/actions/hcard.php b/actions/hcard.php
index 55d0f65c8f..8781f6f882 100644
--- a/actions/hcard.php
+++ b/actions/hcard.php
@@ -40,7 +40,6 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
-
class HcardAction extends Action
{
var $user;
@@ -64,6 +63,7 @@ class HcardAction extends Action
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
+ // TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
$this->clientError(_('No such user.'), 404);
return false;
}
@@ -71,6 +71,7 @@ class HcardAction extends Action
$this->profile = $this->user->getProfile();
if (!$this->profile) {
+ // TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
$this->serverError(_('User has no profile.'));
return false;
}
@@ -117,4 +118,4 @@ class ShortUserProfile extends UserProfile
{
return;
}
-}
\ No newline at end of file
+}
diff --git a/actions/hostmeta.php b/actions/hostmeta.php
index 331fc8a999..e921b5ad59 100644
--- a/actions/hostmeta.php
+++ b/actions/hostmeta.php
@@ -28,9 +28,9 @@ if (!defined('STATUSNET')) {
exit(1);
}
+// @todo XXX: Add documentation.
class HostMetaAction extends Action
{
-
/**
* Is read only?
*
diff --git a/actions/imsettings.php b/actions/imsettings.php
index 76fb2285c3..f45848a13d 100644
--- a/actions/imsettings.php
+++ b/actions/imsettings.php
@@ -50,10 +50,9 @@ class ImsettingsAction extends SettingsAction
*
* @return string Title of the page
*/
-
function title()
{
- // TRANS: Title for instance messaging settings.
+ // TRANS: Title for Instant Messaging settings.
return _('IM settings');
}
@@ -62,7 +61,6 @@ class ImsettingsAction extends SettingsAction
*
* @return instructions for use
*/
-
function getInstructions()
{
// TRANS: Instant messaging settings page instructions.
@@ -82,7 +80,6 @@ class ImsettingsAction extends SettingsAction
*
* @return void
*/
-
function showContent()
{
$transports = array();
@@ -210,7 +207,6 @@ class ImsettingsAction extends SettingsAction
*
* @return Confirm_address address object for this user
*/
-
function getConfirmation($transport)
{
$user = common_current_user();
@@ -237,7 +233,6 @@ class ImsettingsAction extends SettingsAction
*
* @return void
*/
-
function handlePost()
{
// CSRF protection
@@ -257,7 +252,7 @@ class ImsettingsAction extends SettingsAction
} else if ($this->arg('remove')) {
$this->removeAddress();
} else {
- // TRANS: Message given submitting a form with an unknown action in IM settings.
+ // TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
$this->showForm(_('Unexpected form submission.'));
}
}
@@ -270,7 +265,6 @@ class ImsettingsAction extends SettingsAction
*
* @return void
*/
-
function savePreferences()
{
$user = common_current_user();
@@ -312,7 +306,6 @@ class ImsettingsAction extends SettingsAction
*
* @return void
*/
-
function addAddress()
{
$user = common_current_user();
@@ -365,8 +358,8 @@ class ImsettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($confirm, 'INSERT', __FILE__);
- // TRANS: Server error thrown on database error adding IM confirmation code.
- $this->serverError(_('Couldn\'t insert confirmation code.'));
+ // TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
+ $this->serverError(_('Could not insert confirmation code.'));
return;
}
@@ -386,7 +379,6 @@ class ImsettingsAction extends SettingsAction
*
* @return void
*/
-
function cancelConfirmation()
{
$screenname = $this->trimmed('screenname');
@@ -395,7 +387,7 @@ class ImsettingsAction extends SettingsAction
$confirm = $this->getConfirmation($transport);
if (!$confirm) {
- // TRANS: Message given canceling IM address confirmation that is not pending.
+ // TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
$this->showForm(_('No pending confirmation to cancel.'));
return;
}
@@ -425,7 +417,6 @@ class ImsettingsAction extends SettingsAction
*
* @return void
*/
-
function removeAddress()
{
$user = common_current_user();
@@ -456,7 +447,7 @@ class ImsettingsAction extends SettingsAction
// XXX: unsubscribe to the old address
- // TRANS: Message given after successfully removing a registered IM address.
+ // TRANS: Message given after successfully removing a registered Instant Messaging address.
$this->showForm(_('The IM address was removed.'), true);
}
diff --git a/actions/inbox.php b/actions/inbox.php
index 8330f753ff..e9aa34317d 100644
--- a/actions/inbox.php
+++ b/actions/inbox.php
@@ -43,7 +43,6 @@ require_once INSTALLDIR.'/lib/mailbox.php';
* @link http://status.net/
* @see MailboxAction
*/
-
class InboxAction extends MailboxAction
{
@@ -52,13 +51,16 @@ class InboxAction extends MailboxAction
*
* @return string page title
*/
-
function title()
{
if ($this->page > 1) {
+ // TRANS: Title for all but the first page of the inbox page.
+ // TRANS: %1$s is the user's nickname, %2$s is the page number.
return sprintf(_('Inbox for %1$s - page %2$d'), $this->user->nickname,
$this->page);
} else {
+ // TRANS: Title for the first page of the inbox page.
+ // TRANS: %s is the user's nickname.
return sprintf(_('Inbox for %s'), $this->user->nickname);
}
}
@@ -72,7 +74,6 @@ class InboxAction extends MailboxAction
*
* @see MailboxAction::getMessages()
*/
-
function getMessages()
{
$message = new Message();
@@ -89,19 +90,9 @@ class InboxAction extends MailboxAction
}
}
- /**
- * Returns the profile we want to show with the message
- *
- * For inboxes, we show the sender; for outboxes, the recipient.
- *
- * @param Message $message The message to get the profile for
- *
- * @return Profile The profile that matches the message
- */
-
- function getMessageProfile($message)
+ function getMessageList($message)
{
- return $message->getFrom();
+ return new InboxMessageList($this, $message);
}
/**
@@ -109,9 +100,30 @@ class InboxAction extends MailboxAction
*
* @return string localised instructions for using the page
*/
-
function getInstructions()
{
+ // TRANS: Instructions for user inbox page.
return _('This is your inbox, which lists your incoming private messages.');
}
}
+
+class InboxMessageList extends MessageList
+{
+ function newItem($message)
+ {
+ return new InboxMessageListItem($this->out, $message);
+ }
+}
+
+class InboxMessageListItem extends MessageListItem
+{
+ /**
+ * Returns the profile we want to show with the message
+ *
+ * @return Profile The profile that matches the message
+ */
+ function getMessageProfile()
+ {
+ return $this->message->getFrom();
+ }
+}
diff --git a/actions/invite.php b/actions/invite.php
index e9adb3b7f9..a2a0e0714a 100644
--- a/actions/invite.php
+++ b/actions/invite.php
@@ -19,6 +19,7 @@
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+// @todo XXX: Add documentation.
class InviteAction extends CurrentUserDesignAction
{
var $mode = null;
@@ -217,7 +218,7 @@ class InviteAction extends CurrentUserDesignAction
$this->textarea('addresses', _('Email addresses'),
$this->trimmed('addresses'),
// TRANS: Tooltip for field label for a list of e-mail addresses.
- _('Addresses of friends to invite (one per line)'));
+ _('Addresses of friends to invite (one per line).'));
$this->elementEnd('li');
$this->elementStart('li');
// TRANS: Field label for a personal message to send to invitees.
diff --git a/actions/joingroup.php b/actions/joingroup.php
index f87e5dae29..7beaf4f64a 100644
--- a/actions/joingroup.php
+++ b/actions/joingroup.php
@@ -43,7 +43,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class JoingroupAction extends Action
{
var $group = null;
@@ -51,12 +50,12 @@ class JoingroupAction extends Action
/**
* Prepare to run
*/
-
function prepare($args)
{
parent::prepare($args);
if (!common_logged_in()) {
+ // TRANS: Client error displayed when trying to join a group while not logged in.
$this->clientError(_('You must be logged in to join a group.'));
return false;
}
@@ -79,17 +78,20 @@ class JoingroupAction extends Action
$local = Local_group::staticGet('nickname', $nickname);
if (!$local) {
+ // TRANS: Client error displayed when trying to join a non-local group.
$this->clientError(_('No such group.'), 404);
return false;
}
$this->group = User_group::staticGet('id', $local->group_id);
} else {
+ // TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
$this->clientError(_('No nickname or ID.'), 404);
return false;
}
if (!$this->group) {
+ // TRANS: Client error displayed when trying to join a non-existing group.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -97,11 +99,13 @@ class JoingroupAction extends Action
$cur = common_current_user();
if ($cur->isMember($this->group)) {
+ // TRANS: Client error displayed when trying to join a group while already a member.
$this->clientError(_('You are already a member of that group.'), 403);
return false;
}
if (Group_block::isBlocked($this->group, $cur->getProfile())) {
+ // TRANS: Client error displayed when trying to join a group while being blocked form joining it.
$this->clientError(_('You have been blocked from that group by the admin.'), 403);
return false;
}
@@ -118,7 +122,6 @@ class JoingroupAction extends Action
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -131,6 +134,8 @@ class JoingroupAction extends Action
Event::handle('EndJoinGroup', array($this->group, $cur));
}
} catch (Exception $e) {
+ // TRANS: Server error displayed when joining a group failed in the database.
+ // TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
$this->serverError(sprintf(_('Could not join user %1$s to group %2$s.'),
$cur->nickname, $this->group->nickname));
}
@@ -138,7 +143,8 @@ class JoingroupAction extends Action
if ($this->boolean('ajax')) {
$this->startHTML('text/xml;charset=utf-8');
$this->elementStart('head');
- $this->element('title', null, sprintf(_('%1$s joined group %2$s'),
+ // TRANS: Title for join group page after joining.
+ $this->element('title', null, sprintf(_m('TITLE','%1$s joined group %2$s'),
$cur->nickname,
$this->group->nickname));
$this->elementEnd('head');
@@ -153,4 +159,4 @@ class JoingroupAction extends Action
303);
}
}
-}
\ No newline at end of file
+}
diff --git a/actions/leavegroup.php b/actions/leavegroup.php
index 329b5aafe1..f5d1ccd08c 100644
--- a/actions/leavegroup.php
+++ b/actions/leavegroup.php
@@ -43,7 +43,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class LeavegroupAction extends Action
{
var $group = null;
@@ -51,12 +50,12 @@ class LeavegroupAction extends Action
/**
* Prepare to run
*/
-
function prepare($args)
{
parent::prepare($args);
if (!common_logged_in()) {
+ // TRANS: Client error displayed when trying to leave a group while not logged in.
$this->clientError(_('You must be logged in to leave a group.'));
return false;
}
@@ -79,17 +78,20 @@ class LeavegroupAction extends Action
$local = Local_group::staticGet('nickname', $nickname);
if (!$local) {
+ // TRANS: Client error displayed when trying to leave a non-local group.
$this->clientError(_('No such group.'), 404);
return false;
}
$this->group = User_group::staticGet('id', $local->group_id);
} else {
+ // TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
$this->clientError(_('No nickname or ID.'), 404);
return false;
}
if (!$this->group) {
+ // TRANS: Client error displayed when trying to leave a non-existing group.
$this->clientError(_('No such group.'), 404);
return false;
}
@@ -97,6 +99,7 @@ class LeavegroupAction extends Action
$cur = common_current_user();
if (!$cur->isMember($this->group)) {
+ // TRANS: Client error displayed when trying to join a group while already a member.
$this->clientError(_('You are not a member of that group.'), 403);
return false;
}
@@ -113,7 +116,6 @@ class LeavegroupAction extends Action
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -126,6 +128,8 @@ class LeavegroupAction extends Action
Event::handle('EndLeaveGroup', array($this->group, $cur));
}
} catch (Exception $e) {
+ // TRANS: Server error displayed when leaving a group failed in the database.
+ // TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
$this->serverError(sprintf(_('Could not remove user %1$s from group %2$s.'),
$cur->nickname, $this->group->nickname));
return;
@@ -134,7 +138,8 @@ class LeavegroupAction extends Action
if ($this->boolean('ajax')) {
$this->startHTML('text/xml;charset=utf-8');
$this->elementStart('head');
- $this->element('title', null, sprintf(_('%1$s left group %2$s'),
+ // TRANS: Title for leave group page after leaving.
+ $this->element('title', null, sprintf(_m('TITLE','%1$s left group %2$s'),
$cur->nickname,
$this->group->nickname));
$this->elementEnd('head');
diff --git a/actions/licenseadminpanel.php b/actions/licenseadminpanel.php
index 95ac48cc8f..4adeb5c3c6 100644
--- a/actions/licenseadminpanel.php
+++ b/actions/licenseadminpanel.php
@@ -40,7 +40,6 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class LicenseadminpanelAction extends AdminPanelAction
{
@@ -61,7 +60,6 @@ class LicenseadminpanelAction extends AdminPanelAction
*
* @return string instructions
*/
-
function getInstructions()
{
return _('License for this StatusNet site');
@@ -72,7 +70,6 @@ class LicenseadminpanelAction extends AdminPanelAction
*
* @return void
*/
-
function showForm()
{
$form = new LicenseAdminPanelForm($this);
@@ -85,7 +82,6 @@ class LicenseadminpanelAction extends AdminPanelAction
*
* @return void
*/
-
function saveSettings()
{
static $settings = array(
@@ -128,7 +124,6 @@ class LicenseadminpanelAction extends AdminPanelAction
*
* @return nothing
*/
-
function validate(&$values)
{
// Validate license type (shouldn't have to do it, but just in case)
@@ -197,7 +192,6 @@ class LicenseAdminPanelForm extends AdminForm
*
* @return int ID of the form
*/
-
function id()
{
return 'licenseadminpanel';
@@ -208,7 +202,6 @@ class LicenseAdminPanelForm extends AdminForm
*
* @return string class of the form
*/
-
function formClass()
{
return 'form_settings';
@@ -312,7 +305,6 @@ class LicenseAdminPanelForm extends AdminForm
*
* @return void
*/
-
function formActions()
{
$this->out->submit(
diff --git a/actions/login.php b/actions/login.php
index 103df7ee5a..8d51a01449 100644
--- a/actions/login.php
+++ b/actions/login.php
@@ -42,13 +42,11 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class LoginAction extends Action
{
/**
* Has there been an error?
*/
-
var $error = null;
/**
@@ -56,12 +54,32 @@ class LoginAction extends Action
*
* @return boolean false
*/
-
function isReadOnly($args)
{
return false;
}
+ /**
+ * Prepare page to run
+ *
+ *
+ * @param $args
+ * @return string title
+ */
+ function prepare($args)
+ {
+ parent::prepare($args);
+
+ // @todo this check should really be in index.php for all sensitive actions
+ $ssl = common_config('site', 'ssl');
+ if (empty($_SERVER['HTTPS']) && ($ssl == 'always' || $ssl == 'sometimes')) {
+ common_redirect(common_local_url('login'));
+ // exit
+ }
+
+ return true;
+ }
+
/**
* Handle input, produce output
*
@@ -71,7 +89,6 @@ class LoginAction extends Action
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -95,8 +112,7 @@ class LoginAction extends Action
*
* @return void
*/
-
- function checkLogin($user_id=null)
+ function checkLogin($user_id=null, $token=null)
{
// XXX: login throttle
@@ -147,7 +163,6 @@ class LoginAction extends Action
*
* @return void
*/
-
function showForm($error=null)
{
$this->error = $error;
@@ -165,7 +180,6 @@ class LoginAction extends Action
*
* @return string title of the page
*/
-
function title()
{
return _('Login');
@@ -179,7 +193,6 @@ class LoginAction extends Action
*
* @return void
*/
-
function showPageNotice()
{
if ($this->error) {
@@ -199,7 +212,6 @@ class LoginAction extends Action
*
* @return void
*/
-
function showContent()
{
$this->elementStart('form', array('method' => 'post',
@@ -238,7 +250,6 @@ class LoginAction extends Action
*
* @return void
*/
-
function getInstructions()
{
if (common_logged_in() && !common_is_real_login() &&
@@ -266,7 +277,6 @@ class LoginAction extends Action
*
* @return void
*/
-
function showLocalNav()
{
$nav = new LoginGroupNav($this);
diff --git a/actions/logout.php b/actions/logout.php
index 1e0adae575..f747371225 100644
--- a/actions/logout.php
+++ b/actions/logout.php
@@ -66,6 +66,7 @@ class LogoutAction extends Action
{
parent::handle($args);
if (!common_logged_in()) {
+ // TRANS: Client error displayed trying to log out when not logged in.
$this->clientError(_('Not logged in.'));
} else {
if (Event::handle('StartLogout', array($this))) {
@@ -83,5 +84,4 @@ class LogoutAction extends Action
common_real_login(false); // not logged in
common_forgetme(); // don't log back in!
}
-
}
diff --git a/actions/newapplication.php b/actions/newapplication.php
index ae17545589..eb13593536 100644
--- a/actions/newapplication.php
+++ b/actions/newapplication.php
@@ -55,7 +55,6 @@ class NewApplicationAction extends OwnerDesignAction
/**
* Prepare to run
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -78,7 +77,6 @@ class NewApplicationAction extends OwnerDesignAction
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -122,6 +120,7 @@ class NewApplicationAction extends OwnerDesignAction
} elseif ($this->arg('save')) {
$this->trySave();
} else {
+ // TRANS: Client error displayed when encountering an unexpected action on form submission.
$this->clientError(_('Unexpected form submission.'));
}
}
@@ -144,6 +143,7 @@ class NewApplicationAction extends OwnerDesignAction
$this->element('p', 'error', $this->msg);
} else {
$this->element('p', 'instructions',
+ // TRANS: Form instructions for registering a new application.
_('Use this form to register a new application.'));
}
}
@@ -160,15 +160,19 @@ class NewApplicationAction extends OwnerDesignAction
$access_type = $this->arg('default_access_type');
if (empty($name)) {
+ // TRANS: Validation error shown when not providing a name in the "New application" form.
$this->showForm(_('Name is required.'));
return;
} else if ($this->nameExists($name)) {
+ // TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
$this->showForm(_('Name already in use. Try another one.'));
return;
} elseif (mb_strlen($name) > 255) {
+ // TRANS: Validation error shown when providing too long a name in the "New application" form.
$this->showForm(_('Name is too long (maximum 255 characters).'));
return;
} elseif (empty($description)) {
+ // TRANS: Validation error shown when not providing a description in the "New application" form.
$this->showForm(_('Description is required.'));
return;
} elseif (Oauth_application::descriptionTooLong($description)) {
@@ -181,6 +185,7 @@ class NewApplicationAction extends OwnerDesignAction
Oauth_application::maxDesc()));
return;
} elseif (empty($source_url)) {
+ // TRANS: Validation error shown when not providing a source URL in the "New application" form.
$this->showForm(_('Source URL is required.'));
return;
} elseif ((strlen($source_url) > 0)
@@ -190,15 +195,19 @@ class NewApplicationAction extends OwnerDesignAction
)
)
{
+ // TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
$this->showForm(_('Source URL is not valid.'));
return;
} elseif (empty($organization)) {
+ // TRANS: Validation error shown when not providing an organisation in the "New application" form.
$this->showForm(_('Organization is required.'));
return;
} elseif (mb_strlen($organization) > 255) {
+ // TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
$this->showForm(_('Organization is too long (maximum 255 characters).'));
return;
} elseif (empty($homepage)) {
+ // TRANS: Form validation error show when an organisation name has not been provided in the new application form.
$this->showForm(_('Organization homepage is required.'));
return;
} elseif ((strlen($homepage) > 0)
@@ -208,9 +217,11 @@ class NewApplicationAction extends OwnerDesignAction
)
)
{
+ // TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
$this->showForm(_('Homepage is not a valid URL.'));
return;
} elseif (mb_strlen($callback_url) > 255) {
+ // TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
$this->showForm(_('Callback is too long.'));
return;
} elseif (strlen($callback_url) > 0
@@ -220,6 +231,7 @@ class NewApplicationAction extends OwnerDesignAction
)
)
{
+ // TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
$this->showForm(_('Callback URL is not valid.'));
return;
}
@@ -263,6 +275,7 @@ class NewApplicationAction extends OwnerDesignAction
if (!$result) {
common_log_db_error($consumer, 'INSERT', __FILE__);
+ // TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
$this->serverError(_('Could not create application.'));
}
@@ -272,6 +285,7 @@ class NewApplicationAction extends OwnerDesignAction
if (!$this->app_id) {
common_log_db_error($app, 'INSERT', __FILE__);
+ // TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
$this->serverError(_('Could not create application.'));
$app->query('ROLLBACK');
}
@@ -281,7 +295,6 @@ class NewApplicationAction extends OwnerDesignAction
$app->query('COMMIT');
common_redirect(common_local_url('oauthappssettings'), 303);
-
}
/**
@@ -294,12 +307,9 @@ class NewApplicationAction extends OwnerDesignAction
*
* @return boolean true if the name already exists
*/
-
function nameExists($name)
{
$app = Oauth_application::staticGet('name', $name);
return !empty($app);
}
-
}
-
diff --git a/actions/newgroup.php b/actions/newgroup.php
index 42d488e54e..9682b875cb 100644
--- a/actions/newgroup.php
+++ b/actions/newgroup.php
@@ -120,105 +120,109 @@ class NewgroupAction extends Action
function trySave()
{
- try {
- $nickname = Nickname::normalize($this->trimmed('nickname'));
- } catch (NicknameException $e) {
- $this->showForm($e->getMessage());
- }
- $fullname = $this->trimmed('fullname');
- $homepage = $this->trimmed('homepage');
- $description = $this->trimmed('description');
- $location = $this->trimmed('location');
- $aliasstring = $this->trimmed('aliases');
+ if (Event::handle('StartGroupSaveForm', array($this))) {
+ try {
+ $nickname = Nickname::normalize($this->trimmed('nickname'));
+ } catch (NicknameException $e) {
+ $this->showForm($e->getMessage());
+ }
+ $fullname = $this->trimmed('fullname');
+ $homepage = $this->trimmed('homepage');
+ $description = $this->trimmed('description');
+ $location = $this->trimmed('location');
+ $aliasstring = $this->trimmed('aliases');
- if ($this->nicknameExists($nickname)) {
- // TRANS: Group create form validation error.
- $this->showForm(_('Nickname already in use. Try another one.'));
- return;
- } else if (!User_group::allowedNickname($nickname)) {
- // TRANS: Group create form validation error.
- $this->showForm(_('Not a valid nickname.'));
- return;
- } else if (!is_null($homepage) && (strlen($homepage) > 0) &&
- !Validate::uri($homepage,
- array('allowed_schemes' =>
- array('http', 'https')))) {
- // TRANS: Group create form validation error.
- $this->showForm(_('Homepage is not a valid URL.'));
- return;
- } else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
- // TRANS: Group create form validation error.
- $this->showForm(_('Full name is too long (maximum 255 characters).'));
- return;
- } else if (User_group::descriptionTooLong($description)) {
- // TRANS: Group create form validation error.
- // TRANS: %d is the maximum number of allowed characters.
- $this->showForm(sprintf(_m('Description is too long (maximum %d character).',
- 'Description is too long (maximum %d characters).',
- User_group::maxDescription()),
- User_group::maxDescription()));
- return;
- } else if (!is_null($location) && mb_strlen($location) > 255) {
- // TRANS: Group create form validation error.
- $this->showForm(_('Location is too long (maximum 255 characters).'));
- return;
- }
-
- if (!empty($aliasstring)) {
- $aliases = array_map('common_canonical_nickname', array_unique(preg_split('/[\s,]+/', $aliasstring)));
- } else {
- $aliases = array();
- }
-
- if (count($aliases) > common_config('group', 'maxaliases')) {
- // TRANS: Group create form validation error.
- // TRANS: %d is the maximum number of allowed aliases.
- $this->showForm(sprintf(_m('Too many aliases! Maximum %d allowed.',
- 'Too many aliases! Maximum %d allowed.',
- common_config('group', 'maxaliases')),
- common_config('group', 'maxaliases')));
- return;
- }
-
- foreach ($aliases as $alias) {
- if (!Nickname::isValid($alias)) {
+ if ($this->nicknameExists($nickname)) {
// TRANS: Group create form validation error.
- $this->showForm(sprintf(_('Invalid alias: "%s"'), $alias));
+ $this->showForm(_('Nickname already in use. Try another one.'));
+ return;
+ } else if (!User_group::allowedNickname($nickname)) {
+ // TRANS: Group create form validation error.
+ $this->showForm(_('Not a valid nickname.'));
+ return;
+ } else if (!is_null($homepage) && (strlen($homepage) > 0) &&
+ !Validate::uri($homepage,
+ array('allowed_schemes' =>
+ array('http', 'https')))) {
+ // TRANS: Group create form validation error.
+ $this->showForm(_('Homepage is not a valid URL.'));
+ return;
+ } else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
+ // TRANS: Group create form validation error.
+ $this->showForm(_('Full name is too long (maximum 255 characters).'));
+ return;
+ } else if (User_group::descriptionTooLong($description)) {
+ // TRANS: Group create form validation error.
+ // TRANS: %d is the maximum number of allowed characters.
+ $this->showForm(sprintf(_m('Description is too long (maximum %d character).',
+ 'Description is too long (maximum %d characters).',
+ User_group::maxDescription()),
+ User_group::maxDescription()));
+ return;
+ } else if (!is_null($location) && mb_strlen($location) > 255) {
+ // TRANS: Group create form validation error.
+ $this->showForm(_('Location is too long (maximum 255 characters).'));
return;
}
- if ($this->nicknameExists($alias)) {
+
+ if (!empty($aliasstring)) {
+ $aliases = array_map('common_canonical_nickname', array_unique(preg_split('/[\s,]+/', $aliasstring)));
+ } else {
+ $aliases = array();
+ }
+
+ if (count($aliases) > common_config('group', 'maxaliases')) {
// TRANS: Group create form validation error.
- $this->showForm(sprintf(_('Alias "%s" already in use. Try another one.'),
- $alias));
+ // TRANS: %d is the maximum number of allowed aliases.
+ $this->showForm(sprintf(_m('Too many aliases! Maximum %d allowed.',
+ 'Too many aliases! Maximum %d allowed.',
+ common_config('group', 'maxaliases')),
+ common_config('group', 'maxaliases')));
return;
}
- // XXX assumes alphanum nicknames
- if (strcmp($alias, $nickname) == 0) {
- // TRANS: Group create form validation error.
- $this->showForm(_('Alias can\'t be the same as nickname.'));
- return;
+
+ foreach ($aliases as $alias) {
+ if (!Nickname::isValid($alias)) {
+ // TRANS: Group create form validation error.
+ // TRANS: %s is the invalid alias.
+ $this->showForm(sprintf(_('Invalid alias: "%s"'), $alias));
+ return;
+ }
+ if ($this->nicknameExists($alias)) {
+ // TRANS: Group create form validation error. %s is the already used alias.
+ $this->showForm(sprintf(_('Alias "%s" already in use. Try another one.'),
+ $alias));
+ return;
+ }
+ // XXX assumes alphanum nicknames
+ if (strcmp($alias, $nickname) == 0) {
+ // TRANS: Group create form validation error.
+ $this->showForm(_('Alias cannot be the same as nickname.'));
+ return;
+ }
}
+
+ $cur = common_current_user();
+
+ // Checked in prepare() above
+
+ assert(!is_null($cur));
+
+ $group = User_group::register(array('nickname' => $nickname,
+ 'fullname' => $fullname,
+ 'homepage' => $homepage,
+ 'description' => $description,
+ 'location' => $location,
+ 'aliases' => $aliases,
+ 'userid' => $cur->id,
+ 'local' => true));
+
+ $this->group = $group;
+
+ Event::handle('EndGroupSaveForm', array($this));
+
+ common_redirect($group->homeUrl(), 303);
}
-
- $mainpage = common_local_url('showgroup', array('nickname' => $nickname));
-
- $cur = common_current_user();
-
- // Checked in prepare() above
-
- assert(!is_null($cur));
-
- $group = User_group::register(array('nickname' => $nickname,
- 'fullname' => $fullname,
- 'homepage' => $homepage,
- 'description' => $description,
- 'location' => $location,
- 'aliases' => $aliases,
- 'userid' => $cur->id,
- 'mainpage' => $mainpage,
- 'local' => true));
-
- common_redirect($group->homeUrl(), 303);
}
function nicknameExists($nickname)
diff --git a/actions/noticesearch.php b/actions/noticesearch.php
index d0673420d6..4f4c7a05ba 100644
--- a/actions/noticesearch.php
+++ b/actions/noticesearch.php
@@ -48,7 +48,6 @@ require_once INSTALLDIR.'/lib/searchaction.php';
*/
class NoticesearchAction extends SearchAction
{
-
function prepare($args)
{
parent::prepare($args);
@@ -65,6 +64,8 @@ class NoticesearchAction extends SearchAction
*/
function getInstructions()
{
+ // TRANS: Instructions for Notice search page.
+ // TRANS: %%site.name%% is the name of the StatusNet site.
return _('Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more.');
}
@@ -75,6 +76,7 @@ class NoticesearchAction extends SearchAction
*/
function title()
{
+ // TRANS: Title of the page where users can search for notices.
return _('Text search');
}
@@ -88,6 +90,8 @@ class NoticesearchAction extends SearchAction
return array(new Feed(Feed::RSS1, common_local_url('noticesearchrss',
array('q' => $q)),
+ // TRANS: Test in RSS notice search.
+ // TRANS: %1$s is the query, %2$s is the StatusNet site name.
sprintf(_('Search results for "%1$s" on %2$s'),
$q, common_config('site', 'name'))));
}
@@ -114,13 +118,18 @@ class NoticesearchAction extends SearchAction
$cnt = $notice->find();
}
if ($cnt === 0) {
+ // TRANS: Text for notice search results is the query had no results.
$this->element('p', 'error', _('No results.'));
$this->searchSuggestions($q);
if (common_logged_in()) {
+ // TRANS: Text for logged in users making a query for notices without results.
+ // TRANS: This message contains a Markdown link.
$message = sprintf(_('Be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q));
}
else {
+ // TRANS: Text for not logged in users making a query for notices without results.
+ // TRANS: This message contains Markdown links.
$message = sprintf(_('Why not [register an account](%%%%action.register%%%%) and be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q));
}
@@ -193,14 +202,20 @@ class SearchNoticeListItem extends NoticeListItem {
$options = implode('|', array_map('preg_quote', array_map('htmlspecialchars', $terms),
array_fill(0, sizeof($terms), '/')));
$pattern = "/($options)/i";
- $result = preg_replace($pattern, '\\1', $text);
+ $result = '';
+
+ /* Divide up into text (highlight me) and tags (don't touch) */
+ $chunks = preg_split('/(<[^>]+>)/', $text, 0, PREG_SPLIT_DELIM_CAPTURE);
+ foreach ($chunks as $i => $chunk) {
+ if ($i % 2 == 1) {
+ // odd: delimiter (tag)
+ $result .= $chunk;
+ } else {
+ // even: freetext between tags
+ $result .= preg_replace($pattern, '\\1', $chunk);
+ }
+ }
- /* Remove highlighting from inside links, loop incase multiple highlights in links */
- $pattern = '/(\w+="[^"]*)('.$options.')<\/strong>([^"]*")/iU';
- do {
- $result = preg_replace($pattern, '\\1\\2\\3', $result, -1, $count);
- } while ($count);
return $result;
}
}
-
diff --git a/actions/noticesearchrss.php b/actions/noticesearchrss.php
index a59e7b99be..14c280f62c 100644
--- a/actions/noticesearchrss.php
+++ b/actions/noticesearchrss.php
@@ -48,12 +48,11 @@ require_once INSTALLDIR.'/lib/rssaction.php';
*/
class NoticesearchrssAction extends Rss10Action
{
-
function init()
{
return true;
}
-
+
function prepare($args)
{
parent::prepare($args);
@@ -63,7 +62,6 @@ class NoticesearchrssAction extends Rss10Action
function getNotices($limit=0)
{
-
$q = $this->trimmed('q');
$notices = array();
@@ -93,9 +91,12 @@ class NoticesearchrssAction extends Rss10Action
{
$q = $this->trimmed('q');
$c = array('url' => common_local_url('noticesearchrss', array('q' => $q)),
+ // TRANS: RSS notice search feed title. %s is the query.
'title' => sprintf(_('Updates with "%s"'), $q),
'link' => common_local_url('noticesearch', array('q' => $q)),
- 'description' => sprintf(_('Updates matching search term "%1$s" on %2$s!'),
+ // TRANS: RSS notice search feed description.
+ // TRANS: %1$s is the query, %2$s is the StatusNet site name.
+ 'description' => sprintf(_('Updates matching search term "%1$s" on %2$s.'),
$q, common_config('site', 'name')));
return $c;
}
diff --git a/actions/oauthappssettings.php b/actions/oauthappssettings.php
index 3a8fc98966..a7a4b219a3 100644
--- a/actions/oauthappssettings.php
+++ b/actions/oauthappssettings.php
@@ -163,6 +163,5 @@ class OauthappssettingsAction extends SettingsAction
'Try again, please.'));
return;
}
-
}
}
diff --git a/actions/oauthconnectionssettings.php b/actions/oauthconnectionssettings.php
index c173a32230..b2e6f713a9 100644
--- a/actions/oauthconnectionssettings.php
+++ b/actions/oauthconnectionssettings.php
@@ -62,7 +62,6 @@ class OauthconnectionssettingsAction extends SettingsAction
*
* @return string Title of the page
*/
-
function title()
{
// TRANS: Title for OAuth connection settings.
@@ -74,7 +73,6 @@ class OauthconnectionssettingsAction extends SettingsAction
*
* @return instructions for use
*/
-
function getInstructions()
{
// TRANS: Instructions for OAuth connection settings.
diff --git a/actions/oembed.php b/actions/oembed.php
index bef707f92a..0d8be55656 100644
--- a/actions/oembed.php
+++ b/actions/oembed.php
@@ -61,7 +61,7 @@ class OembedAction extends Action
$proxy_args = $r->map($path);
if (!$proxy_args) {
- $this->serverError(_("$path not found."), 404);
+ $this->serverError(sprintf(_('"%s" not found.'),$path), 404);
}
$oembed=array();
$oembed['version']='1.0';
@@ -73,7 +73,7 @@ class OembedAction extends Action
$id = $proxy_args['notice'];
$notice = Notice::staticGet($id);
if(empty($notice)){
- $this->serverError(_("Notice $id not found."), 404);
+ $this->serverError(sprintf(_("Notice %s not found."),$id), 404);
}
$profile = $notice->getProfile();
if (empty($profile)) {
@@ -92,7 +92,7 @@ class OembedAction extends Action
$id = $proxy_args['attachment'];
$attachment = File::staticGet($id);
if(empty($attachment)){
- $this->serverError(_("Attachment $id not found."), 404);
+ $this->serverError(sprintf(_('Attachment %s not found.'),$id), 404);
}
if(empty($attachment->filename) && $file_oembed = File_oembed::staticGet('file_id', $attachment->id)){
// Proxy the existing oembed information
@@ -133,7 +133,7 @@ class OembedAction extends Action
if($attachment->title) $oembed['title']=$attachment->title;
break;
default:
- $this->serverError(_("$path not supported for oembed requests."), 501);
+ $this->serverError(sprintf(_('"%s" not supported for oembed requests.'),$path), 501);
}
switch($args['format']){
case 'xml':
diff --git a/actions/opensearch.php b/actions/opensearch.php
index 861b53d7d8..7bf32277bb 100644
--- a/actions/opensearch.php
+++ b/actions/opensearch.php
@@ -1,5 +1,4 @@
clientError(_('Already logged in.'));
return false;
}
@@ -66,6 +66,7 @@ class OtpAction extends Action
$id = $this->trimmed('user_id');
if (empty($id)) {
+ // TRANS: Client error displayed trying to use "one time password login" without specifying a user.
$this->clientError(_('No user ID specified.'));
return false;
}
@@ -73,6 +74,7 @@ class OtpAction extends Action
$this->user = User::staticGet('id', $id);
if (empty($this->user)) {
+ // TRANS: Client error displayed trying to use "one time password login" without using an existing user.
$this->clientError(_('No such user.'));
return false;
}
@@ -80,6 +82,7 @@ class OtpAction extends Action
$this->token = $this->trimmed('token');
if (empty($this->token)) {
+ // TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
$this->clientError(_('No login token specified.'));
return false;
}
@@ -87,11 +90,13 @@ class OtpAction extends Action
$this->lt = Login_token::staticGet('user_id', $id);
if (empty($this->lt)) {
+ // TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
$this->clientError(_('No login token requested.'));
return false;
}
if ($this->lt->token != $this->token) {
+ // TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
$this->clientError(_('Invalid login token specified.'));
return false;
}
@@ -101,6 +106,7 @@ class OtpAction extends Action
//delete the token as it is useless
$this->lt->delete();
$this->lt = null;
+ // TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
$this->clientError(_('Login token expired.'));
return false;
}
@@ -111,12 +117,13 @@ class OtpAction extends Action
return true;
}
- function handle($args)
+ function handle($args)
{
parent::handle($args);
// success!
if (!common_set_user($this->user)) {
+ // TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
$this->serverError(_('Error setting user. You are probably not authorized.'));
return;
}
diff --git a/actions/outbox.php b/actions/outbox.php
index b81d4b9d0d..6d10c8119f 100644
--- a/actions/outbox.php
+++ b/actions/outbox.php
@@ -26,7 +26,6 @@
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
if (!defined('STATUSNET') && !defined('LACONICA')) {
exit(1);
}
@@ -43,7 +42,6 @@ require_once INSTALLDIR.'/lib/mailbox.php';
* @link http://status.net/
* @see MailboxAction
*/
-
class OutboxAction extends MailboxAction
{
/**
@@ -51,13 +49,15 @@ class OutboxAction extends MailboxAction
*
* @return string page title
*/
-
function title()
{
if ($this->page > 1) {
+ // TRANS: Title for outbox for any but the fist page.
+ // TRANS: %1$s is the user nickname, %2$d is the page number.
return sprintf(_('Outbox for %1$s - page %2$d'),
$this->user->nickname, $page);
} else {
+ // TRANS: Title for first page of outbox.
return sprintf(_('Outbox for %s'), $this->user->nickname);
}
}
@@ -71,7 +71,6 @@ class OutboxAction extends MailboxAction
*
* @see MailboxAction::getMessages()
*/
-
function getMessages()
{
$message = new Message();
@@ -88,21 +87,9 @@ class OutboxAction extends MailboxAction
}
}
- /**
- * returns the profile we want to show with the message
- *
- * For outboxes, we show the recipient.
- *
- * @param Message $message The message to get the profile for
- *
- * @return Profile The profile of the message recipient
- *
- * @see MailboxAction::getMessageProfile()
- */
-
- function getMessageProfile($message)
+ function getMessageList($message)
{
- return $message->getTo();
+ return new OutboxMessageList($this, $message);
}
/**
@@ -110,9 +97,30 @@ class OutboxAction extends MailboxAction
*
* @return string localised instructions for using the page
*/
-
function getInstructions()
{
+ // TRANS: Instructions for outbox.
return _('This is your outbox, which lists private messages you have sent.');
}
}
+
+class OutboxMessageList extends MessageList
+{
+ function newItem($message)
+ {
+ return new OutboxMessageListItem($this->out, $message);
+ }
+}
+
+class OutboxMessageListItem extends MessageListItem
+{
+ /**
+ * Returns the profile we want to show with the message
+ *
+ * @return Profile The profile that matches the message
+ */
+ function getMessageProfile()
+ {
+ return $this->message->getTo();
+ }
+}
diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php
index c9bd200bd8..37877931ea 100644
--- a/actions/passwordsettings.php
+++ b/actions/passwordsettings.php
@@ -106,11 +106,11 @@ class PasswordsettingsAction extends SettingsAction
}
$this->elementStart('li');
$this->password('newpassword', _('New password'),
- _('6 or more characters'));
+ _('6 or more characters.'));
$this->elementEnd('li');
$this->elementStart('li');
$this->password('confirm', _('Confirm'),
- _('Same as password above'));
+ _('Same as password above.'));
$this->elementEnd('li');
$this->elementEnd('ul');
@@ -128,7 +128,6 @@ class PasswordsettingsAction extends SettingsAction
*
* @return void
*/
-
function handlePost()
{
// CSRF protection
@@ -183,7 +182,7 @@ class PasswordsettingsAction extends SettingsAction
}
if (!$user->update($original)) {
- $this->serverError(_('Can\'t save new password.'));
+ $this->serverError(_('Cannot save new password.'));
return;
}
Event::handle('EndChangePassword', array($user));
diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php
index 69de44859f..6bc35828ec 100644
--- a/actions/peoplesearch.php
+++ b/actions/peoplesearch.php
@@ -49,12 +49,15 @@ class PeoplesearchAction extends SearchAction
{
function getInstructions()
{
+ // TRANS: Instructions for the "People search" page.
+ // TRANS: %%site.name%% is the name of the StatusNet site.
return _('Search for people on %%site.name%% by their name, location, or interests. ' .
'Separate the terms by spaces; they must be 3 characters or more.');
}
function title()
{
+ // TRANS: Title of a page where users can search for other users.
return _('People search');
}
@@ -80,6 +83,7 @@ class PeoplesearchAction extends SearchAction
$page, 'peoplesearch', array('q' => $q));
} else {
+ // TRANS: Message on the "People search" page where a query has no results.
$this->element('p', 'error', _('No results.'));
$this->searchSuggestions($q);
$profile->free();
@@ -136,4 +140,3 @@ class PeopleSearchResultItem extends ProfileListItem
return preg_replace($this->pattern, '\\1', htmlspecialchars($text));
}
}
-
diff --git a/actions/profilesettings.php b/actions/profilesettings.php
index 1334644e9c..e1d686ca29 100644
--- a/actions/profilesettings.php
+++ b/actions/profilesettings.php
@@ -54,7 +54,6 @@ class ProfilesettingsAction extends SettingsAction
*
* @return string Title of the page
*/
-
function title()
{
// TRANS: Page title for profile settings.
@@ -66,7 +65,6 @@ class ProfilesettingsAction extends SettingsAction
*
* @return instructions for use
*/
-
function getInstructions()
{
// TRANS: Usage instructions for profile settings.
@@ -87,7 +85,6 @@ class ProfilesettingsAction extends SettingsAction
*
* @return void
*/
-
function showContent()
{
$user = common_current_user();
@@ -165,14 +162,14 @@ class ProfilesettingsAction extends SettingsAction
$this->input('tags', _('Tags'),
($this->arg('tags')) ? $this->arg('tags') : implode(' ', $user->getSelfTags()),
// TRANS: Tooltip for field label in form for profile settings.
- _('Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated'));
+ _('Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated.'));
$this->elementEnd('li');
$this->elementStart('li');
$language = common_language();
// TRANS: Dropdownlist label in form for profile settings.
$this->dropdown('language', _('Language'),
// TRANS: Tooltip for dropdown list label in form for profile settings.
- get_nice_language_list(), _('Preferred language'),
+ get_nice_language_list(), _('Preferred language.'),
false, $language);
$this->elementEnd('li');
$timezone = common_timezone();
@@ -191,7 +188,7 @@ class ProfilesettingsAction extends SettingsAction
$this->checkbox('autosubscribe',
// TRANS: Checkbox label in form for profile settings.
_('Automatically subscribe to whoever '.
- 'subscribes to me (best for non-humans)'),
+ 'subscribes to me (best for non-humans).'),
($this->arg('autosubscribe')) ?
$this->boolean('autosubscribe') : $user->autosubscribe);
$this->elementEnd('li');
@@ -212,12 +209,12 @@ class ProfilesettingsAction extends SettingsAction
*
* @return void
*/
-
function handlePost()
{
// CSRF protection
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
+ // TRANS: Form validation error.
$this->showForm(_('There was a problem with your session token. '.
'Try again, please.'));
return;
@@ -292,7 +289,7 @@ class ProfilesettingsAction extends SettingsAction
if (!common_valid_profile_tag($tag)) {
// TRANS: Validation error in form for profile settings.
// TRANS: %s is an invalid tag.
- $this->showForm(sprintf(_('Invalid tag: "%s"'), $tag));
+ $this->showForm(sprintf(_('Invalid tag: "%s".'), $tag));
return;
}
}
@@ -323,7 +320,7 @@ class ProfilesettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
// TRANS: Server error thrown when user profile settings could not be updated.
- $this->serverError(_('Couldn\'t update user.'));
+ $this->serverError(_('Could not update user.'));
return;
} else {
// Re-initialize language environment if it changed
@@ -348,7 +345,7 @@ class ProfilesettingsAction extends SettingsAction
common_log_db_error($user, 'UPDATE', __FILE__);
// TRANS: Server error thrown when user profile settings could not be updated to
// TRANS: automatically subscribe to any subscriber.
- $this->serverError(_('Couldn\'t update user for autosubscribe.'));
+ $this->serverError(_('Could not update user for autosubscribe.'));
return;
}
}
@@ -406,7 +403,7 @@ class ProfilesettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($prefs, ($exists) ? 'UPDATE' : 'INSERT', __FILE__);
// TRANS: Server error thrown when user profile location preference settings could not be updated.
- $this->serverError(_('Couldn\'t save location prefs.'));
+ $this->serverError(_('Could not save location prefs.'));
return;
}
}
@@ -419,7 +416,7 @@ class ProfilesettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($profile, 'UPDATE', __FILE__);
// TRANS: Server error thrown when user profile settings could not be saved.
- $this->serverError(_('Couldn\'t save profile.'));
+ $this->serverError(_('Could not save profile.'));
return;
}
@@ -428,7 +425,7 @@ class ProfilesettingsAction extends SettingsAction
if (!$result) {
// TRANS: Server error thrown when user profile settings tags could not be saved.
- $this->serverError(_('Couldn\'t save tags.'));
+ $this->serverError(_('Could not save tags.'));
return;
}
@@ -458,12 +455,16 @@ class ProfilesettingsAction extends SettingsAction
$this->elementStart('div', array('id' => 'aside_primary',
'class' => 'aside'));
+
+ $this->elementStart('div', array('id' => 'account_actions',
+ 'class' => 'section'));
$this->elementStart('ul');
if (Event::handle('StartProfileSettingsActions', array($this))) {
if ($user->hasRight(Right::BACKUPACCOUNT)) {
$this->elementStart('li');
$this->element('a',
array('href' => common_local_url('backupaccount')),
+ // TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
_('Backup account'));
$this->elementEnd('li');
}
@@ -471,6 +472,7 @@ class ProfilesettingsAction extends SettingsAction
$this->elementStart('li');
$this->element('a',
array('href' => common_local_url('deleteaccount')),
+ // TRANS: Option in profile settings to delete the account of the currently logged in user.
_('Delete account'));
$this->elementEnd('li');
}
@@ -478,6 +480,7 @@ class ProfilesettingsAction extends SettingsAction
$this->elementStart('li');
$this->element('a',
array('href' => common_local_url('restoreaccount')),
+ // TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
_('Restore account'));
$this->elementEnd('li');
}
@@ -485,5 +488,6 @@ class ProfilesettingsAction extends SettingsAction
}
$this->elementEnd('ul');
$this->elementEnd('div');
+ $this->elementEnd('div');
}
}
diff --git a/actions/publicrss.php b/actions/publicrss.php
index 0c5d061cb6..11db3b37a4 100644
--- a/actions/publicrss.php
+++ b/actions/publicrss.php
@@ -1,5 +1,4 @@
common_local_url('publicrss')
- , 'title' => sprintf(_('%s public timeline'), common_config('site', 'name'))
- , 'link' => common_local_url('public')
- , 'description' => sprintf(_('%s updates from everyone!'), common_config('site', 'name')));
+ 'url' => common_local_url('publicrss'),
+ // TRANS: Public RSS feed title. %s is the StatusNet site name.
+ 'title' => sprintf(_('%s public timeline'), $sitename),
+ 'link' => common_local_url('public'),
+ // TRANS: Public RSS feed description. %s is the StatusNet site name.
+ 'description' => sprintf(_('%s updates from everyone.'), $sitename));
return $c;
}
@@ -110,7 +111,7 @@ class PublicrssAction extends Rss10Action
* Get image.
*
* @return nothing
- */
+ */
function getImage()
{
// nop
@@ -121,4 +122,3 @@ class PublicrssAction extends Rss10Action
return true;
}
}
-
diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php
index 33b0440e40..9019d6fb22 100644
--- a/actions/recoverpassword.php
+++ b/actions/recoverpassword.php
@@ -33,6 +33,7 @@ class RecoverpasswordAction extends Action
{
parent::handle($args);
if (common_logged_in()) {
+ // TRANS: Client error displayed trying to recover password while already logged in.
$this->clientError(_('You are already logged in!'));
return;
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
@@ -41,6 +42,7 @@ class RecoverpasswordAction extends Action
} else if ($this->arg('reset')) {
$this->resetPassword();
} else {
+ // TRANS: Client error displayed when unexpected data is posted in the password recovery form.
$this->clientError(_('Unexpected form submission.'));
}
} else {
@@ -54,15 +56,16 @@ class RecoverpasswordAction extends Action
function checkCode()
{
-
$code = $this->trimmed('code');
$confirm = Confirm_address::staticGet('code', $code);
if (!$confirm) {
+ // TRANS: Client error displayed when password recovery code is not correct.
$this->clientError(_('No such recovery code.'));
return;
}
if ($confirm->address_type != 'recover') {
+ // TRANS: Client error displayed when no proper password recovery code was submitted.
$this->clientError(_('Not a recovery code.'));
return;
}
@@ -70,6 +73,7 @@ class RecoverpasswordAction extends Action
$user = User::staticGet($confirm->user_id);
if (!$user) {
+ // TRANS: Server error displayed trying to recover password without providing a user.
$this->serverError(_('Recovery code for unknown user.'));
return;
}
@@ -83,6 +87,7 @@ class RecoverpasswordAction extends Action
if (!$result) {
common_log_db_error($confirm, 'DELETE', __FILE__);
+ // TRANS: Server error displayed removing a password recovery code from the database.
$this->serverError(_('Error with confirmation code.'));
return;
}
@@ -94,6 +99,7 @@ class RecoverpasswordAction extends Action
common_log(LOG_WARNING,
'Attempted redemption on recovery code ' .
'that is ' . $touched . ' seconds old. ');
+ // TRANS: Client error displayed trying to recover password with too old a recovery code.
$this->clientError(_('This confirmation code is too old. ' .
'Please start again.'));
return;
@@ -108,6 +114,7 @@ class RecoverpasswordAction extends Action
$result = $user->updateKeys($orig);
if (!$result) {
common_log_db_error($user, 'UPDATE', __FILE__);
+ // TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
$this->serverError(_('Could not update user with confirmed email address.'));
return;
}
@@ -149,14 +156,16 @@ class RecoverpasswordAction extends Action
$this->elementStart('div', 'instructions');
if ($this->mode == 'recover') {
$this->element('p', null,
+ // TRANS: Page notice for password recovery page.
_('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') {
+ // TRANS: Page notice for password change page.
$this->element('p', null,
_('You have been identified. Enter a' .
- ' new password below. '));
+ ' new password below.'));
}
$this->elementEnd('div');
}
@@ -185,19 +194,24 @@ class RecoverpasswordAction extends Action
'class' => 'form_settings',
'action' => common_local_url('recoverpassword')));
$this->elementStart('fieldset');
+ // TRANS: Fieldset legend for password recovery page.
$this->element('legend', null, _('Password recovery'));
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
+ // TRANS: Field label on password recovery page.
$this->input('nicknameoremail', _('Nickname or email address'),
$this->trimmed('nicknameoremail'),
+ // TRANS: Title for field label on password recovery page.
_('Your nickname on this server, ' .
'or your registered email address.'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->element('input', array('name' => 'recover',
'type' => 'hidden',
+ // TRANS: Field label on password recovery page.
'value' => _('Recover')));
- $this->submit('recover', _('Recover'));
+ // TRANS: Button text on password recovery page.
+ $this->submit('recover', _m('BUTTON','Recover'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}
@@ -205,11 +219,16 @@ class RecoverpasswordAction extends Action
function title()
{
switch ($this->mode) {
+ // TRANS: Title for password recovery page in password reset mode.
case 'reset': return _('Reset password');
+ // TRANS: Title for password recovery page in password recover mode.
case 'recover': return _('Recover password');
+ // TRANS: Title for password recovery page in email sent mode.
case 'sent': return _('Password recovery requested');
- case 'saved': return _('Password saved.');
+ // TRANS: Title for password recovery page in password saved mode.
+ case 'saved': return _('Password saved');
default:
+ // TRANS: Title for password recovery page when an unknown action has been specified.
return _('Unknown action');
}
}
@@ -228,19 +247,25 @@ class RecoverpasswordAction extends Action
'class' => 'form_settings',
'action' => common_local_url('recoverpassword')));
$this->elementStart('fieldset');
+ // TRANS: Fieldset legend for password reset form.
$this->element('legend', null, _('Password change'));
$this->hidden('token', common_session_token());
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
+ // TRANS: Field label for password reset form.
$this->password('newpassword', _('New password'),
- _('6 or more characters, and don\'t forget it!'));
+ // TRANS: Title for field label for password reset form.
+ _('6 or more characters, and do not forget it!'));
$this->elementEnd('li');
$this->elementStart('li');
+ // TRANS: Field label for password reset form where the password has to be typed again.
$this->password('confirm', _('Confirm'),
- _('Same as password above'));
+ // TRANS: Ttile for field label for password reset form where the password has to be typed again.
+ _('Same as password above.'));
$this->elementEnd('li');
$this->elementEnd('ul');
- $this->submit('reset', _('Reset'));
+ // TRANS: Button text for password reset form.
+ $this->submit('reset', _m('BUTTON','Reset'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}
@@ -249,6 +274,7 @@ class RecoverpasswordAction extends Action
{
$nore = $this->trimmed('nicknameoremail');
if (!$nore) {
+ // TRANS: Form instructions for password recovery form.
$this->showForm(_('Enter a nickname or email address.'));
return;
}
@@ -279,6 +305,7 @@ class RecoverpasswordAction extends Action
}
if (!$user) {
+ // TRANS: Information on password recovery form if no known username or e-mail address was specified.
$this->showForm(_('No user with that email address or username.'));
return;
}
@@ -296,6 +323,7 @@ class RecoverpasswordAction extends Action
}
if (!$user->email && !$confirm_email) {
+ // TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
$this->clientError(_('No registered email address for that user.'));
return;
}
@@ -310,10 +338,12 @@ class RecoverpasswordAction extends Action
if (!$confirm->insert()) {
common_log_db_error($confirm, 'INSERT', __FILE__);
+ // TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
$this->serverError(_('Error saving address confirmation.'));
return;
}
+ // @todo FIXME: needs i18n.
$body = "Hey, $user->nickname.";
$body .= "\n\n";
$body .= 'Someone just asked for a new password ' .
@@ -332,9 +362,11 @@ class RecoverpasswordAction extends Action
$body .= "\n";
$headers = _mail_prepare_headers('recoverpassword', $user->nickname, $user->nickname);
+ // TRANS: Subject for password recovery e-mail.
mail_to_user($user, _('Password recovery requested'), $body, $headers, $confirm->address);
$this->mode = 'sent';
+ // TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
$this->msg = _('Instructions for recovering your password ' .
'have been sent to the email address registered to your ' .
'account.');
@@ -347,6 +379,7 @@ class RecoverpasswordAction extends Action
# CSRF protection
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
+ // TRANS: Form validation error message.
$this->showForm(_('There was a problem with your session token. Try again, please.'));
return;
}
@@ -354,6 +387,7 @@ class RecoverpasswordAction extends Action
$user = $this->getTempUser();
if (!$user) {
+ // TRANS: Client error displayed when trying to reset as password without providing a user.
$this->clientError(_('Unexpected password reset.'));
return;
}
@@ -362,10 +396,12 @@ class RecoverpasswordAction extends Action
$confirm = $this->trimmed('confirm');
if (!$newpassword || strlen($newpassword) < 6) {
+ // TRANS: Reset password form validation error message.
$this->showPasswordForm(_('Password must be 6 characters or more.'));
return;
}
if ($newpassword != $confirm) {
+ // TRANS: Reset password form validation error message.
$this->showPasswordForm(_('Password and confirmation do not match.'));
return;
}
@@ -378,13 +414,15 @@ class RecoverpasswordAction extends Action
if (!$user->update($original)) {
common_log_db_error($user, 'UPDATE', __FILE__);
- $this->serverError(_('Can\'t save new password.'));
+ // TRANS: Reset password form validation error message.
+ $this->serverError(_('Cannot save new password.'));
return;
}
$this->clearTempUser();
if (!common_set_user($user->nickname)) {
+ // TRANS: Server error displayed when something does wrong with the user object during password reset.
$this->serverError(_('Error setting user.'));
return;
}
@@ -392,6 +430,7 @@ class RecoverpasswordAction extends Action
common_real_login(true);
$this->mode = 'saved';
+ // TRANS: Success message for user after password reset.
$this->msg = _('New password successfully saved. ' .
'You are now logged in.');
$this->success = true;
diff --git a/actions/register.php b/actions/register.php
index 075b1af99d..6b039c93f6 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -40,25 +40,21 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class RegisterAction extends Action
{
/**
* Has there been an error?
*/
-
var $error = null;
/**
* Have we registered?
*/
-
var $registered = false;
/**
* Are we processing an invite?
*/
-
var $invite = null;
/**
@@ -68,7 +64,6 @@ class RegisterAction extends Action
* @param $args
* @return string title
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -105,7 +100,6 @@ class RegisterAction extends Action
*
* @return string title
*/
-
function title()
{
if ($this->registered) {
@@ -126,7 +120,6 @@ class RegisterAction extends Action
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -156,7 +149,6 @@ class RegisterAction extends Action
*
* @return void
*/
-
function tryRegister()
{
if (Event::handle('StartRegistrationTry', array($this))) {
@@ -199,7 +191,7 @@ class RegisterAction extends Action
$email = common_canonical_email($email);
if (!$this->boolean('license')) {
- $this->showForm(_('You can\'t register if you don\'t '.
+ $this->showForm(_('You cannot register if you don\'t '.
'agree to the license.'));
} else if ($email && !Validate::email($email, common_config('email', 'check_domain'))) {
$this->showForm(_('Not a valid email address.'));
@@ -277,7 +269,6 @@ class RegisterAction extends Action
*
* @return boolean true if the nickname already exists
*/
-
function nicknameExists($nickname)
{
$user = User::staticGet('nickname', $nickname);
@@ -293,7 +284,6 @@ class RegisterAction extends Action
*
* @return boolean true if the address already exists
*/
-
function emailExists($email)
{
$email = common_canonical_email($email);
@@ -332,7 +322,6 @@ class RegisterAction extends Action
*
* @return void
*/
-
function showPageNotice()
{
if ($this->registered) {
@@ -344,7 +333,7 @@ class RegisterAction extends Action
common_markup_to_html(_('With this form you can create '.
'a new account. ' .
'You can then post notices and '.
- 'link up to friends and colleagues. '));
+ 'link up to friends and colleagues.'));
$this->elementStart('div', 'instructions');
$this->raw($instr);
@@ -361,7 +350,6 @@ class RegisterAction extends Action
*
* @return void
*/
-
function showForm($error=null)
{
$this->error = $error;
@@ -376,7 +364,6 @@ class RegisterAction extends Action
*
* @return void
*/
-
function showContent()
{
if ($this->registered) {
@@ -391,7 +378,6 @@ class RegisterAction extends Action
*
* @return void
*/
-
function showFormContent()
{
$code = $this->trimmed('code');
@@ -423,38 +409,37 @@ class RegisterAction extends Action
if (Event::handle('StartRegistrationFormData', array($this))) {
$this->elementStart('li');
$this->input('nickname', _('Nickname'), $this->trimmed('nickname'),
- _('1-64 lowercase letters or numbers, '.
- 'no punctuation or spaces. Required.'));
+ _('1-64 lowercase letters or numbers, no punctuation or spaces.'));
$this->elementEnd('li');
$this->elementStart('li');
$this->password('password', _('Password'),
- _('6 or more characters. Required.'));
+ _('6 or more characters.'));
$this->elementEnd('li');
$this->elementStart('li');
$this->password('confirm', _('Confirm'),
- _('Same as password above. Required.'));
+ _('Same as password above.'));
$this->elementEnd('li');
$this->elementStart('li');
if ($this->invite && $this->invite->address_type == 'email') {
$this->input('email', _('Email'), $this->invite->address,
_('Used only for updates, announcements, '.
- 'and password recovery'));
+ 'and password recovery.'));
} else {
$this->input('email', _('Email'), $this->trimmed('email'),
_('Used only for updates, announcements, '.
- 'and password recovery'));
+ 'and password recovery.'));
}
$this->elementEnd('li');
$this->elementStart('li');
$this->input('fullname', _('Full name'),
$this->trimmed('fullname'),
- _('Longer name, preferably your "real" name'));
+ _('Longer name, preferably your "real" name.'));
$this->elementEnd('li');
$this->elementStart('li');
$this->input('homepage', _('Homepage'),
$this->trimmed('homepage'),
_('URL of your homepage, blog, '.
- 'or profile on another site'));
+ 'or profile on another site.'));
$this->elementEnd('li');
$this->elementStart('li');
$maxBio = Profile::maxBio();
@@ -477,7 +462,7 @@ class RegisterAction extends Action
$this->input('location', _('Location'),
$this->trimmed('location'),
_('Where you are, like "City, '.
- 'State (or Region), Country"'));
+ 'State (or Region), Country".'));
$this->elementEnd('li');
Event::handle('EndRegistrationFormData', array($this));
$this->elementStart('li', array('id' => 'settings_rememberme'));
@@ -513,6 +498,7 @@ class RegisterAction extends Action
switch (common_config('license', 'type')) {
case 'private':
// TRANS: Copyright checkbox label in registration dialog, for private sites.
+ // TRANS: %1$s is the StatusNet sitename.
$out .= htmlspecialchars(sprintf(
_('I understand that content and data of %1$s are private and confidential.'),
common_config('site', 'name')));
@@ -556,7 +542,6 @@ class RegisterAction extends Action
*
* @return void
*/
-
function showSuccess()
{
$this->registered = true;
@@ -570,7 +555,6 @@ class RegisterAction extends Action
*
* @return void
*/
-
function showSuccessContent()
{
$nickname = $this->arg('nickname');
@@ -617,11 +601,9 @@ class RegisterAction extends Action
*
* @return void
*/
-
function showLocalNav()
{
$nav = new LoginGroupNav($this);
$nav->show();
}
}
-
diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php
index 9fc235e743..8200659278 100644
--- a/actions/remotesubscribe.php
+++ b/actions/remotesubscribe.php
@@ -44,7 +44,6 @@ require_once INSTALLDIR.'/extlib/libomb/profile.php';
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
-
class RemotesubscribeAction extends Action
{
var $nickname;
@@ -127,11 +126,11 @@ class RemotesubscribeAction extends Action
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
$this->input('nickname', _('User nickname'), $this->nickname,
- _('Nickname of the user you want to follow'));
+ _('Nickname of the user you want to follow.'));
$this->elementEnd('li');
$this->elementStart('li');
$this->input('profile_url', _('Profile URL'), $this->profile_url,
- _('URL of your profile on another compatible microblogging service'));
+ _('URL of your profile on another compatible microblogging service.'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->submit('submit', _('Subscribe'));
@@ -156,7 +155,7 @@ class RemotesubscribeAction extends Action
}
if (!common_valid_http_url($this->profile_url)) {
- $this->showForm(_('Invalid profile URL (bad format)'));
+ $this->showForm(_('Invalid profile URL (bad format).'));
return;
}
@@ -173,14 +172,14 @@ class RemotesubscribeAction extends Action
if ($service->getServiceURI(OAUTH_ENDPOINT_REQUEST) ==
common_local_url('requesttoken') ||
User::staticGet('uri', $service->getRemoteUserURI())) {
- $this->showForm(_('That’s a local profile! Login to subscribe.'));
+ $this->showForm(_('That is a local profile! Login to subscribe.'));
return;
}
try {
$service->requestToken();
} catch (OMB_RemoteServiceException $e) {
- $this->showForm(_('Couldn’t get a request token.'));
+ $this->showForm(_('Could not get a request token.'));
return;
}
@@ -204,4 +203,3 @@ class RemotesubscribeAction extends Action
common_redirect($target_url, 303);
}
}
-?>
diff --git a/actions/repeat.php b/actions/repeat.php
index 893cae4ffd..2ec641578b 100644
--- a/actions/repeat.php
+++ b/actions/repeat.php
@@ -41,7 +41,6 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
-
class RepeatAction extends Action
{
var $user = null;
@@ -73,7 +72,7 @@ class RepeatAction extends Action
}
if ($this->user->id == $this->notice->profile_id) {
- $this->clientError(_("You can't repeat your own notice."));
+ $this->clientError(_('You cannot repeat your own notice.'));
return false;
}
@@ -101,7 +100,6 @@ class RepeatAction extends Action
*
* @return void
*/
-
function handle($args)
{
$repeat = $this->notice->repeat($this->user->id, 'web');
diff --git a/actions/repliesrss.php b/actions/repliesrss.php
index 76aae21adb..86cd173d3c 100644
--- a/actions/repliesrss.php
+++ b/actions/repliesrss.php
@@ -25,7 +25,6 @@ require_once(INSTALLDIR.'/lib/rssaction.php');
class RepliesrssAction extends Rss10Action
{
-
var $user = null;
function prepare($args)
@@ -35,6 +34,7 @@ class RepliesrssAction extends Rss10Action
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
+ // TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
$this->clientError(_('No such user.'));
return false;
} else {
@@ -45,13 +45,12 @@ class RepliesrssAction extends Rss10Action
function getNotices($limit=0)
{
-
$user = $this->user;
$notice = $user->getReplies(0, ($limit == 0) ? 48 : $limit);
$notices = array();
-
+
while ($notice->fetch()) {
$notices[] = clone($notice);
}
@@ -65,11 +64,14 @@ class RepliesrssAction extends Rss10Action
$c = array('url' => common_local_url('repliesrss',
array('nickname' =>
$user->nickname)),
+ // TRANS: RSS reply feed title. %s is a user nickname.
'title' => sprintf(_("Replies to %s"), $user->nickname),
'link' => common_local_url('replies',
array('nickname' =>
$user->nickname)),
- 'description' => sprintf(_('Replies to %1$s on %2$s!'),
+ // TRANS: RSS reply feed description.
+ // TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+ 'description' => sprintf(_('Replies to %1$s on %2$s.'),
$user->nickname, common_config('site', 'name')));
return $c;
}
diff --git a/actions/requesttoken.php b/actions/requesttoken.php
index e095161a7d..3c8cea03c0 100644
--- a/actions/requesttoken.php
+++ b/actions/requesttoken.php
@@ -1,5 +1,4 @@
diff --git a/actions/restoreaccount.php b/actions/restoreaccount.php
index 8cf220a424..22f0a8e5da 100644
--- a/actions/restoreaccount.php
+++ b/actions/restoreaccount.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* Restore a backup of your own account from the browser
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class RestoreaccountAction extends Action
{
private $success = false;
@@ -52,13 +51,13 @@ class RestoreaccountAction extends Action
/**
* Returns the title of the page
- *
+ *
* @return string page title
*/
-
function title()
{
- return _("Restore account");
+ // TRANS: Page title for page where a user account can be restored from backup.
+ return _('Restore account');
}
/**
@@ -68,7 +67,6 @@ class RestoreaccountAction extends Action
*
* @return boolean true
*/
-
function prepare($argarray)
{
parent::prepare($argarray);
@@ -76,10 +74,12 @@ class RestoreaccountAction extends Action
$cur = common_current_user();
if (empty($cur)) {
+ // TRANS: Client exception displayed when trying to restore an account while not logged in.
throw new ClientException(_('Only logged-in users can restore their account.'), 403);
}
if (!$cur->hasRight(Right::RESTOREACCOUNT)) {
+ // TRANS: Client exception displayed when trying to restore an account without having restore rights.
throw new ClientException(_('You may not restore your account.'), 403);
}
@@ -93,7 +93,6 @@ class RestoreaccountAction extends Action
*
* @return void
*/
-
function handle($argarray=null)
{
parent::handle($argarray);
@@ -108,17 +107,17 @@ class RestoreaccountAction extends Action
/**
* Queue a file for restoration
- *
+ *
* Uses the UserActivityStream class; may take a long time!
*
* @return void
*/
-
function restoreAccount()
{
$this->checkSessionToken();
if (!isset($_FILES['restorefile']['error'])) {
+ // TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
throw new ClientException(_('No uploaded file.'));
}
@@ -143,7 +142,7 @@ class RestoreaccountAction extends Action
' partially uploaded.'));
return;
case UPLOAD_ERR_NO_FILE:
- // No file; probably just a non-AJAX submission.
+ // TRANS: Client exception. No file; probably just a non-AJAX submission.
throw new ClientException(_('No uploaded file.'));
return;
case UPLOAD_ERR_NO_TMP_DIR:
@@ -170,18 +169,21 @@ class RestoreaccountAction extends Action
try {
if (!file_exists($filename)) {
- throw new ServerException("No such file '$filename'.");
+ // TRANS: Server exception thrown when an expected file upload could not be found.
+ throw new ServerException(_("No such file '$filename'."));
}
-
+
if (!is_file($filename)) {
- throw new ServerException("Not a regular file: '$filename'.");
+ // TRANS: Server exception thrown when an expected file upload is not an actual file.
+ throw new ServerException(_("Not a regular file: '$filename'."));
}
-
+
if (!is_readable($filename)) {
- throw new ServerException("File '$filename' not readable.");
+ // TRANS: Server exception thrown when an expected file upload could not be read.
+ throw new ServerException(_("File '$filename' not readable."));
}
-
- common_debug(sprintf(_("Getting backup from file '%s'."), $filename));
+
+ common_debug(sprintf("Getting backup from file '%s'.", $filename));
$xml = file_get_contents($filename);
@@ -201,7 +203,8 @@ class RestoreaccountAction extends Action
if (!$feed ||
$feed->namespaceURI != Activity::ATOM ||
$feed->localName != 'feed') {
- throw new ClientException(_("Not an atom feed."));
+ // TRANS: Client exception thrown when a feed is not an Atom feed.
+ throw new ClientException(_("Not an Atom feed."));
}
// Enqueue for processing.
@@ -230,21 +233,22 @@ class RestoreaccountAction extends Action
*
* @return void
*/
-
function showContent()
{
if ($this->success) {
$this->element('p', null,
+ // TRANS: Success message when a feed has been restored.
_('Feed has been restored. Your old posts should now appear in search and your profile page.'));
} else if ($this->inprogress) {
$this->element('p', null,
+ // TRANS: Message when a feed restore is in progress.
_('Feed will be restored. Please wait a few minutes for results.'));
} else {
$form = new RestoreAccountForm($this);
$form->show();
}
}
-
+
/**
* Return true if read only.
*
@@ -254,7 +258,6 @@ class RestoreaccountAction extends Action
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
return false;
@@ -267,7 +270,6 @@ class RestoreaccountAction extends Action
*
* @return string last modified http header
*/
-
function lastModified()
{
// For comparison with If-Last-Modified
@@ -282,7 +284,6 @@ class RestoreaccountAction extends Action
*
* @return string etag http header
*/
-
function etag()
{
return null;
@@ -299,7 +300,6 @@ class RestoreaccountAction extends Action
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class RestoreAccountForm extends Form
{
function __construct($out=null) {
@@ -312,7 +312,6 @@ class RestoreAccountForm extends Form
*
* @return string the form's class
*/
-
function formClass()
{
return 'form_profile_restore';
@@ -323,7 +322,6 @@ class RestoreAccountForm extends Form
*
* @return string the form's action URL
*/
-
function action()
{
return common_local_url('restoreaccount');
@@ -331,19 +329,19 @@ class RestoreAccountForm extends Form
/**
* Output form data
- *
+ *
* Really, just instructions for doing a backup.
*
* @return void
*/
-
function formData()
{
$this->out->elementStart('p', 'instructions');
+ // TRANS: Form instructions for feed restore.
$this->out->raw(_('You can upload a backed-up stream in '.
'Activity Streams format.'));
-
+
$this->out->elementEnd('p');
$this->out->elementStart('ul', 'form_data');
@@ -359,18 +357,19 @@ class RestoreAccountForm extends Form
/**
* Buttons for the form
- *
+ *
* In this case, a single submit button
*
* @return void
*/
-
function formActions()
{
$this->out->submit('submit',
+ // TRANS: Submit button to confirm upload of a user backup file for account restore.
_m('BUTTON', 'Upload'),
'submit',
null,
+ // TRANS: Title for submit button to confirm upload of a user backup file for account restore.
_('Upload the file'));
}
}
diff --git a/actions/robotstxt.php b/actions/robotstxt.php
index 5131097c8c..d686042cb1 100644
--- a/actions/robotstxt.php
+++ b/actions/robotstxt.php
@@ -40,7 +40,6 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
-
class RobotstxtAction extends Action
{
/**
@@ -53,7 +52,6 @@ class RobotstxtAction extends Action
*
* @return void
*/
-
function handle($args)
{
if (Event::handle('StartRobotsTxt', array($this))) {
@@ -65,9 +63,7 @@ class RobotstxtAction extends Action
if (common_config('site', 'private')) {
print "Disallow: /\n";
-
} else {
-
$disallow = common_config('robotstxt', 'disallow');
foreach ($disallow as $dir) {
@@ -92,7 +88,6 @@ class RobotstxtAction extends Action
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
return true;
diff --git a/actions/rsd.php b/actions/rsd.php
index e02c85c41b..0a70117498 100644
--- a/actions/rsd.php
+++ b/actions/rsd.php
@@ -68,13 +68,11 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
-
class RsdAction extends Action
{
/**
* Optional attribute for the personal rsd.xml file.
*/
-
var $user = null;
/**
@@ -87,7 +85,6 @@ class RsdAction extends Action
*
* @return boolean success flag
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -132,7 +129,6 @@ class RsdAction extends Action
*
* @return nothing
*/
-
function handle($args)
{
header('Content-Type: application/rsd+xml');
@@ -195,7 +191,6 @@ class RsdAction extends Action
*
* @return string date of last change of this page
*/
-
function lastModified()
{
if (!empty($this->user)) {
@@ -214,7 +209,6 @@ class RsdAction extends Action
*
* @return boolean true
*/
-
function isReadOnly($args)
{
return true;
@@ -228,7 +222,6 @@ class RsdAction extends Action
*
* @return string API root URI for this site
*/
-
private function _apiRoot()
{
if (common_config('site', 'fancy')) {
diff --git a/actions/showapplication.php b/actions/showapplication.php
index b9e3b32914..02a4dc1517 100644
--- a/actions/showapplication.php
+++ b/actions/showapplication.php
@@ -40,19 +40,16 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class ShowApplicationAction extends OwnerDesignAction
{
/**
* Application to show
*/
-
var $application = null;
/**
* User who owns the app
*/
-
var $owner = null;
var $msg = null;
@@ -68,7 +65,6 @@ class ShowApplicationAction extends OwnerDesignAction
*
* @return success flag
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -105,7 +101,6 @@ class ShowApplicationAction extends OwnerDesignAction
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -132,7 +127,6 @@ class ShowApplicationAction extends OwnerDesignAction
*
* @return string title of the page
*/
-
function title()
{
if (!empty($this->application->name)) {
@@ -274,7 +268,6 @@ class ShowApplicationAction extends OwnerDesignAction
*
* @return void
*/
-
function showScripts()
{
parent::showScripts();
@@ -295,7 +288,6 @@ class ShowApplicationAction extends OwnerDesignAction
* XXX: Should this be moved to its own page with a confirm?
*
*/
-
function resetKey()
{
$this->application->query('BEGIN');
@@ -355,5 +347,4 @@ class ShowApplicationAction extends OwnerDesignAction
$this->msg = ('Consumer key and secret reset.');
$this->showPage();
}
-
}
diff --git a/actions/showfavorites.php b/actions/showfavorites.php
index 77b73711d2..eda2cf38eb 100644
--- a/actions/showfavorites.php
+++ b/actions/showfavorites.php
@@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/feedlist.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class ShowfavoritesAction extends OwnerDesignAction
{
/** User we're getting the faves of */
@@ -57,7 +56,6 @@ class ShowfavoritesAction extends OwnerDesignAction
*
* @return boolean true
*/
-
function isReadOnly($args)
{
return true;
@@ -70,12 +68,15 @@ class ShowfavoritesAction extends OwnerDesignAction
*
* @return string title of page
*/
-
function title()
{
if ($this->page == 1) {
+ // TRANS: Title for first page of favourite notices of a user.
+ // TRANS: %s is the user for whom the favourite notices are displayed.
return sprintf(_('%s\'s favorite notices'), $this->user->nickname);
} else {
+ // TRANS: Title for all but the first page of favourite notices of a user.
+ // TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
return sprintf(_('%1$s\'s favorite notices, page %2$d'),
$this->user->nickname,
$this->page);
@@ -92,7 +93,6 @@ class ShowfavoritesAction extends OwnerDesignAction
*
* @return boolean success flag
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -102,6 +102,7 @@ class ShowfavoritesAction extends OwnerDesignAction
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
+ // TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
$this->clientError(_('No such user.'));
return false;
}
@@ -129,6 +130,7 @@ class ShowfavoritesAction extends OwnerDesignAction
}
if (empty($this->notice)) {
+ // TRANS: Server error displayed when favourite notices could not be retrieved from the database.
$this->serverError(_('Could not retrieve favorite notices.'));
return;
}
@@ -150,7 +152,6 @@ class ShowfavoritesAction extends OwnerDesignAction
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -162,12 +163,12 @@ class ShowfavoritesAction extends OwnerDesignAction
*
* @return array Feed objects to show
*/
-
function getFeeds()
{
return array(new Feed(Feed::RSS1,
common_local_url('favoritesrss',
array('nickname' => $this->user->nickname)),
+ // TRANS: Feed link text. %s is a username.
sprintf(_('Feed for favorites of %s (RSS 1.0)'),
$this->user->nickname)),
new Feed(Feed::RSS2,
@@ -175,6 +176,7 @@ class ShowfavoritesAction extends OwnerDesignAction
array(
'id' => $this->user->nickname,
'format' => 'rss')),
+ // TRANS: Feed link text. %s is a username.
sprintf(_('Feed for favorites of %s (RSS 2.0)'),
$this->user->nickname)),
new Feed(Feed::ATOM,
@@ -182,6 +184,7 @@ class ShowfavoritesAction extends OwnerDesignAction
array(
'id' => $this->user->nickname,
'format' => 'atom')),
+ // TRANS: Feed link text. %s is a username.
sprintf(_('Feed for favorites of %s (Atom)'),
$this->user->nickname)));
}
@@ -191,7 +194,6 @@ class ShowfavoritesAction extends OwnerDesignAction
*
* @return void
*/
-
function showLocalNav()
{
$nav = new PersonalGroupNav($this);
@@ -203,12 +205,18 @@ class ShowfavoritesAction extends OwnerDesignAction
if (common_logged_in()) {
$current_user = common_current_user();
if ($this->user->id === $current_user->id) {
+ // TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
$message = _('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.');
} else {
+ // TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+ // TRANS: %s is a username.
$message = sprintf(_('%s hasn\'t added any favorite notices yet. Post something interesting they would add to their favorites :)'), $this->user->nickname);
}
}
else {
+ // TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+ // TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+ // TRANS: (link text)[link] is a Mark Down link.
$message = sprintf(_('%s hasn\'t added any favorite notices yet. Why not [register an account](%%%%action.register%%%%) and then post something interesting they would add to their favorites :)'), $this->user->nickname);
}
@@ -224,7 +232,6 @@ class ShowfavoritesAction extends OwnerDesignAction
*
* @return void
*/
-
function showContent()
{
$nl = new FavoritesNoticeList($this->notice, $this);
@@ -240,6 +247,7 @@ class ShowfavoritesAction extends OwnerDesignAction
}
function showPageNotice() {
+ // TRANS: Page notice for show favourites page.
$this->element('p', 'instructions', _('This is a way to share what you like.'));
}
}
diff --git a/actions/showgroup.php b/actions/showgroup.php
index a895f81b84..21256294f3 100644
--- a/actions/showgroup.php
+++ b/actions/showgroup.php
@@ -181,6 +181,7 @@ class ShowgroupAction extends GroupDesignAction
function showContent()
{
$this->showGroupProfile();
+ $this->showGroupActions();
$this->showGroupNotices();
}
@@ -258,34 +259,62 @@ class ShowgroupAction extends GroupDesignAction
'aliases entity_aliases',
implode(' ', $aliases));
}
+
+ if ($this->group->description) {
+ $this->elementStart('dl', 'entity_note');
+ // TRANS: Label for group description or group note (dt). Text hidden by default.
+ $this->element('dt', null, _('Note'));
+ $this->element('dd', 'note', $this->group->description);
+ $this->elementEnd('dl');
+ }
+
+ if (common_config('group', 'maxaliases') > 0) {
+ $aliases = $this->group->getAliases();
+
+ if (!empty($aliases)) {
+ $this->elementStart('dl', 'entity_aliases');
+ // TRANS: Label for group aliases (dt). Text hidden by default.
+ $this->element('dt', null, _('Aliases'));
+ $this->element('dd', 'aliases', implode(' ', $aliases));
+ $this->elementEnd('dl');
+ }
+ }
+
+ Event::handle('EndGroupProfileElements', array($this, $this->group));
}
$this->elementEnd('div');
+ }
+ function showGroupActions()
+ {
$cur = common_current_user();
$this->elementStart('div', 'entity_actions');
// TRANS: Group actions header (h2). Text hidden by default.
$this->element('h2', null, _('Group actions'));
$this->elementStart('ul');
- $this->elementStart('li', 'entity_subscribe');
- if (Event::handle('StartGroupSubscribe', array($this, $this->group))) {
- if ($cur) {
- if ($cur->isMember($this->group)) {
- $lf = new LeaveForm($this, $this->group);
- $lf->show();
- } else if (!Group_block::isBlocked($this->group, $cur->getProfile())) {
- $jf = new JoinForm($this, $this->group);
- $jf->show();
+ if (Event::handle('StartGroupActionsList', array($this, $this->group))) {
+ $this->elementStart('li', 'entity_subscribe');
+ if (Event::handle('StartGroupSubscribe', array($this, $this->group))) {
+ if ($cur) {
+ if ($cur->isMember($this->group)) {
+ $lf = new LeaveForm($this, $this->group);
+ $lf->show();
+ } else if (!Group_block::isBlocked($this->group, $cur->getProfile())) {
+ $jf = new JoinForm($this, $this->group);
+ $jf->show();
+ }
}
+ Event::handle('EndGroupSubscribe', array($this, $this->group));
}
- Event::handle('EndGroupSubscribe', array($this, $this->group));
- }
- $this->elementEnd('li');
- if ($cur && $cur->hasRight(Right::DELETEGROUP)) {
- $this->elementStart('li', 'entity_delete');
- $df = new DeleteGroupForm($this, $this->group);
- $df->show();
$this->elementEnd('li');
+ if ($cur && $cur->hasRight(Right::DELETEGROUP)) {
+ $this->elementStart('li', 'entity_delete');
+ $df = new DeleteGroupForm($this, $this->group);
+ $df->show();
+ $this->elementEnd('li');
+ }
+ Event::handle('EndGroupActionsList', array($this, $this->group));
}
$this->elementEnd('ul');
$this->elementEnd('div');
diff --git a/actions/showmessage.php b/actions/showmessage.php
index d737f85d3a..1c867af119 100644
--- a/actions/showmessage.php
+++ b/actions/showmessage.php
@@ -30,20 +30,17 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
exit(1);
}
-require_once INSTALLDIR.'/lib/mailbox.php';
-
/**
* Show a single message
*
- * // XXX: It is totally weird how this works!
- *
* @category Personal
* @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/
*/
-class ShowmessageAction extends MailboxAction
+
+class ShowmessageAction extends Action
{
/**
* Message object to show
@@ -82,22 +79,20 @@ class ShowmessageAction extends MailboxAction
$this->user = common_current_user();
+ if (empty($this->user) ||
+ ($this->user->id != $this->message->from_profile &&
+ $this->user->id != $this->message->to_profile)) {
+ // TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
+ throw new ClientException(_('Only the sender and recipient ' .
+ 'may read this message.'), 403);
+ }
+
return true;
}
function handle($args)
{
- Action::handle($args);
-
- if ($this->user && ($this->user->id == $this->message->from_profile ||
- $this->user->id == $this->message->to_profile)) {
- $this->showPage();
- } else {
- // TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
- $this->clientError(_('Only the sender and recipient ' .
- 'may read this message.'), 403);
- return;
- }
+ $this->showPage();
}
function title()
@@ -121,12 +116,38 @@ class ShowmessageAction extends MailboxAction
}
}
- function getMessages()
+
+ function showContent()
{
- $message = new Message();
- $message->id = $this->message->id;
- $message->find();
- return $message;
+ $this->elementStart('ul', 'notices messages');
+ $ml = new ShowMessageListItem($this, $this->message, $this->user);
+ $ml->show();
+ $this->elementEnd('ul');
+ }
+
+ function isReadOnly($args)
+ {
+ return true;
+ }
+
+ /**
+ * Don't show aside
+ *
+ * @return void
+ */
+
+ function showAside() {
+ }
+}
+
+class ShowMessageListItem extends MessageListItem
+{
+ var $user;
+
+ function __construct($out, $message, $user)
+ {
+ parent::__construct($out, $message);
+ $this->user = $user;
}
function getMessageProfile()
@@ -140,46 +161,4 @@ class ShowmessageAction extends MailboxAction
return null;
}
}
-
- /**
- * Don't show local navigation
- *
- * @return void
- */
- function showLocalNavBlock()
- {
- }
-
- /**
- * Don't show page notice
- *
- * @return void
- */
- function showPageNoticeBlock()
- {
- }
-
- /**
- * Don't show aside
- *
- * @return void
- */
- function showAside()
- {
- }
-
- /**
- * Don't show any instructions
- *
- * @return string
- */
- function getInstructions()
- {
- return '';
- }
-
- function isReadOnly($args)
- {
- return true;
- }
}
diff --git a/actions/shownotice.php b/actions/shownotice.php
index 91b0901bf4..3978f03ea9 100644
--- a/actions/shownotice.php
+++ b/actions/shownotice.php
@@ -338,7 +338,7 @@ class SingleNoticeItem extends DoFollowListItem
* show the avatar of the notice's author
*
* We use the larger size for single notice page.
- *
+ *
* @return void
*/
diff --git a/actions/showstream.php b/actions/showstream.php
index 1688677d84..0fd1c2c29f 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -70,7 +70,7 @@ class ShowstreamAction extends ProfileAction
return sprintf(_('%1$s tagged %2$s'), $base, $this->tag);
} else {
// TRANS: Page title showing tagged notices in one user's stream.
- // TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+ // TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
return sprintf(_('%1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page);
}
} else {
diff --git a/actions/sitenoticeadminpanel.php b/actions/sitenoticeadminpanel.php
index 797a6c4f4c..b1ac441af7 100644
--- a/actions/sitenoticeadminpanel.php
+++ b/actions/sitenoticeadminpanel.php
@@ -98,7 +98,7 @@ class SitenoticeadminpanelAction extends AdminPanelAction
if (!$result) {
// TRANS: Server error displayed when saving a site-wide notice was impossible.
- $this->ServerError(_("Unable to save site notice."));
+ $this->ServerError(_('Unable to save site notice.'));
}
}
@@ -198,7 +198,7 @@ class SiteNoticeAdminPanelForm extends AdminForm
'submit',
null,
// TRANS: Title for button to save site notice in admin panel.
- _('Save site notice')
+ _('Save site notice.')
);
}
}
diff --git a/actions/smssettings.php b/actions/smssettings.php
index 217db27888..cdf99a56d9 100644
--- a/actions/smssettings.php
+++ b/actions/smssettings.php
@@ -50,7 +50,6 @@ class SmssettingsAction extends SettingsAction
*
* @return string Title of the page
*/
-
function title()
{
// TRANS: Title for SMS settings.
@@ -62,7 +61,6 @@ class SmssettingsAction extends SettingsAction
*
* @return instructions for use
*/
-
function getInstructions()
{
// XXX: For consistency of parameters in messages, this should be a
@@ -86,7 +84,6 @@ class SmssettingsAction extends SettingsAction
*
* @return void
*/
-
function showContent()
{
if (!common_config('sms', 'enabled')) {
@@ -152,7 +149,7 @@ class SmssettingsAction extends SettingsAction
($this->arg('sms')) ? $this->arg('sms') : null,
// TRANS: SMS phone number input field instructions in SMS settings form.
_('Phone number, no punctuation or spaces, '.
- 'with area code'));
+ 'with area code.'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->carrierSelect();
@@ -217,7 +214,6 @@ class SmssettingsAction extends SettingsAction
*
* @todo very similar to EmailsettingsAction::getConfirmation(); refactor?
*/
-
function getConfirmation()
{
$user = common_current_user();
@@ -244,7 +240,6 @@ class SmssettingsAction extends SettingsAction
*
* @return void
*/
-
function handlePost()
{
// CSRF protection
@@ -283,7 +278,6 @@ class SmssettingsAction extends SettingsAction
*
* @return void
*/
-
function savePreferences()
{
$smsnotify = $this->boolean('smsnotify');
@@ -303,7 +297,7 @@ class SmssettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
// TRANS: Server error thrown on database error updating SMS preferences.
- $this->serverError(_('Couldn\'t update user.'));
+ $this->serverError(_('Could not update user.'));
return;
}
@@ -321,7 +315,6 @@ class SmssettingsAction extends SettingsAction
*
* @return void
*/
-
function addAddress()
{
$user = common_current_user();
@@ -368,7 +361,7 @@ class SmssettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($confirm, 'INSERT', __FILE__);
// TRANS: Server error thrown on database error adding SMS confirmation code.
- $this->serverError(_('Couldn\'t insert confirmation code.'));
+ $this->serverError(_('Could not insert confirmation code.'));
return;
}
@@ -393,7 +386,6 @@ class SmssettingsAction extends SettingsAction
*
* @return void
*/
-
function cancelConfirmation()
{
$sms = $this->trimmed('sms');
@@ -417,7 +409,7 @@ class SmssettingsAction extends SettingsAction
if (!$result) {
common_log_db_error($confirm, 'DELETE', __FILE__);
// TRANS: Server error thrown on database error canceling SMS phone number confirmation.
- $this->serverError(_('Couldn\'t delete email confirmation.'));
+ $this->serverError(_('Could not delete email confirmation.'));
return;
}
@@ -430,7 +422,6 @@ class SmssettingsAction extends SettingsAction
*
* @return void
*/
-
function removeAddress()
{
$user = common_current_user();
@@ -459,7 +450,7 @@ class SmssettingsAction extends SettingsAction
if (!$result) {
common_log_db_error($user, 'UPDATE', __FILE__);
// TRANS: Server error thrown on database error removing a registered SMS phone number.
- $this->serverError(_('Couldn\'t update user.'));
+ $this->serverError(_('Could not update user.'));
return;
}
$user->query('COMMIT');
@@ -477,7 +468,6 @@ class SmssettingsAction extends SettingsAction
*
* @return boolean does the number exist
*/
-
function smsExists($sms)
{
$user = common_current_user();
@@ -496,7 +486,6 @@ class SmssettingsAction extends SettingsAction
*
* @return void
*/
-
function carrierSelect()
{
$carrier = new Sms_carrier();
@@ -536,14 +525,13 @@ class SmssettingsAction extends SettingsAction
*
* @return void
*/
-
function confirmCode()
{
$code = $this->trimmed('code');
if (!$code) {
// TRANS: Message given saving SMS phone number confirmation code without having provided one.
- $this->showForm(_('No code entered'));
+ $this->showForm(_('No code entered.'));
return;
}
@@ -557,12 +545,12 @@ class SmssettingsAction extends SettingsAction
*
* @return void
*/
-
function removeIncoming()
{
$user = common_current_user();
if (!$user->incomingemail) {
+ // TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
$this->showForm(_('No incoming email address.'));
return;
}
@@ -573,9 +561,11 @@ class SmssettingsAction extends SettingsAction
if (!$user->updateKeys($orig)) {
common_log_db_error($user, 'UPDATE', __FILE__);
- $this->serverError(_("Couldn't update user record."));
+ // TRANS: Server error displayed when the user could not be updated in SMS settings.
+ $this->serverError(_('Could not update user record.'));
}
+ // TRANS: Confirmation text after updating SMS settings.
$this->showForm(_('Incoming email address removed.'), true);
}
@@ -586,7 +576,6 @@ class SmssettingsAction extends SettingsAction
*
* @see Emailsettings::newIncoming
*/
-
function newIncoming()
{
$user = common_current_user();
@@ -597,9 +586,11 @@ class SmssettingsAction extends SettingsAction
if (!$user->updateKeys($orig)) {
common_log_db_error($user, 'UPDATE', __FILE__);
- $this->serverError(_("Couldn't update user record."));
+ // TRANS: Server error displayed when the user could not be updated in SMS settings.
+ $this->serverError(_('Could not update user record.'));
}
+ // TRANS: Confirmation text after updating SMS settings.
$this->showForm(_('New incoming email address added.'), true);
}
}
diff --git a/actions/subscribe.php b/actions/subscribe.php
index b1243f3933..3837915d53 100644
--- a/actions/subscribe.php
+++ b/actions/subscribe.php
@@ -53,7 +53,6 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
-
class SubscribeAction extends Action
{
var $user;
@@ -66,7 +65,6 @@ class SubscribeAction extends Action
*
* @return boolean success flag
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -74,6 +72,8 @@ class SubscribeAction extends Action
// Only allow POST requests
if ($_SERVER['REQUEST_METHOD'] != 'POST') {
+ // TRANS: Client error displayed trying to perform any request method other than POST.
+ // TRANS: Do not translate POST.
$this->clientError(_('This action only accepts POST requests.'));
return false;
}
@@ -83,6 +83,7 @@ class SubscribeAction extends Action
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
+ // TRANS: Client error displayed when the session token is not okay.
$this->clientError(_('There was a problem with your session token.'.
' Try again, please.'));
return false;
@@ -93,6 +94,7 @@ class SubscribeAction extends Action
$this->user = common_current_user();
if (empty($this->user)) {
+ // TRANS: Client error displayed trying to subscribe when not logged in.
$this->clientError(_('Not logged in.'));
return false;
}
@@ -104,6 +106,7 @@ class SubscribeAction extends Action
$this->other = Profile::staticGet('id', $other_id);
if (empty($this->other)) {
+ // TRANS: Client error displayed trying to subscribe to a non-existing profile.
$this->clientError(_('No such profile.'));
return false;
}
@@ -114,6 +117,7 @@ class SubscribeAction extends Action
$omb01 = Remote_profile::staticGet('id', $other_id);
if (!empty($omb01)) {
+ // TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
$this->clientError(_('You cannot subscribe to an OMB 0.1'.
' remote profile with this action.'));
return false;
@@ -131,7 +135,6 @@ class SubscribeAction extends Action
*
* @return void
*/
-
function handle($args)
{
// Throws exception on error
@@ -142,6 +145,7 @@ class SubscribeAction extends Action
if ($this->boolean('ajax')) {
$this->startHTML('text/xml;charset=utf-8');
$this->elementStart('head');
+ // TRANS: Page title when subscription succeeded.
$this->element('title', null, _('Subscribed'));
$this->elementEnd('head');
$this->elementStart('body');
diff --git a/actions/subscribers.php b/actions/subscribers.php
index 2862f35c6d..ad522a4bae 100644
--- a/actions/subscribers.php
+++ b/actions/subscribers.php
@@ -100,8 +100,6 @@ class SubscribersAction extends GalleryAction
}
}
- $subscribers->free();
-
$this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
$this->page, 'subscribers',
array('nickname' => $this->user->nickname));
diff --git a/actions/subscriptions.php b/actions/subscriptions.php
index 10e8f28608..cfe2b5683a 100644
--- a/actions/subscriptions.php
+++ b/actions/subscriptions.php
@@ -106,8 +106,6 @@ class SubscriptionsAction extends GalleryAction
}
}
- $subscriptions->free();
-
$this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
$this->page, 'subscriptions',
array('nickname' => $this->user->nickname));
@@ -169,15 +167,14 @@ class SubscriptionsAction extends GalleryAction
*
* @return array of Feed objects
*/
-
function getFeeds()
{
return array(new Feed(Feed::ATOM,
common_local_url('AtomPubSubscriptionFeed',
array('subscriber' => $this->profile->id)),
+ // TRANS: Atom feed title. %s is a profile nickname.
sprintf(_('Subscription feed for %s (Atom)'),
$this->profile->nickname)));
-
}
}
@@ -265,5 +262,4 @@ class SubscriptionsListItem extends SubscriptionListItem
$this->out->elementEnd('form');
return;
}
-
}
diff --git a/actions/sup.php b/actions/sup.php
index 4e428dfa58..c4da9d3db6 100644
--- a/actions/sup.php
+++ b/actions/sup.php
@@ -19,6 +19,7 @@
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
+// @todo FIXME: documentation needed.
class SupAction extends Action
{
function handle($args)
diff --git a/actions/unblock.php b/actions/unblock.php
index 0f63e1dae0..1f4d9606b8 100644
--- a/actions/unblock.php
+++ b/actions/unblock.php
@@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
-
class UnblockAction extends ProfileFormAction
{
function prepare($args)
@@ -56,6 +55,7 @@ class UnblockAction extends ProfileFormAction
assert(!empty($cur)); // checked by parent
if (!$cur->hasBlocked($this->profile)) {
+ // TRANS: Client error displayed when trying to unblock a non-blocked user.
$this->clientError(_("You haven't blocked that user."));
return false;
}
@@ -68,7 +68,6 @@ class UnblockAction extends ProfileFormAction
*
* @return void
*/
-
function handlePost()
{
$cur = common_current_user();
@@ -83,6 +82,7 @@ class UnblockAction extends ProfileFormAction
}
if (!$result) {
+ // TRANS: Server error displayed when removing a user block.
$this->serverError(_('Error removing the block.'));
return;
}
diff --git a/actions/urlsettings.php b/actions/urlsettings.php
index 140e28c999..807f9492c7 100644
--- a/actions/urlsettings.php
+++ b/actions/urlsettings.php
@@ -206,7 +206,7 @@ class UrlsettingsAction extends SettingsAction
if ($result === false) {
common_log_db_error($user, 'UPDATE', __FILE__);
// TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
- $this->serverError(_('Couldn\'t update user.'));
+ $this->serverError(_('Could not update user.'));
return;
}
@@ -238,6 +238,7 @@ class UrlsettingsAction extends SettingsAction
$user->query('COMMIT');
+ // TRANS: Confirmation message after saving preferences.
$this->showForm(_('Preferences saved.'), true);
}
}
diff --git a/actions/useradminpanel.php b/actions/useradminpanel.php
index fc75e83b2d..c8861bd834 100644
--- a/actions/useradminpanel.php
+++ b/actions/useradminpanel.php
@@ -163,7 +163,7 @@ class UseradminpanelAction extends AdminPanelAction
sprintf(
// TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
// TRANS: users in user admin panel. %1$s is the invalid nickname.
- _('Invalid default subscripton: \'%1$s\' is not a user.'),
+ _('Invalid default subscripton: "%1$s" is not a user.'),
$values['newuser']['default']
)
);
@@ -299,6 +299,6 @@ class UserAdminPanelForm extends AdminForm
'submit',
null,
// TRANS: Title for button to save user settings in user admin panel.
- _('Save user settings'));
+ _('Save user settings.'));
}
}
diff --git a/actions/userauthorization.php b/actions/userauthorization.php
index d460308c16..c86f4cdaa1 100644
--- a/actions/userauthorization.php
+++ b/actions/userauthorization.php
@@ -35,6 +35,7 @@ require_once INSTALLDIR.'/extlib/libomb/service_provider.php';
require_once INSTALLDIR.'/extlib/libomb/profile.php';
define('TIMESTAMP_THRESHOLD', 300);
+// @todo FIXME: Missing documentation.
class UserauthorizationAction extends Action
{
var $error;
@@ -69,6 +70,8 @@ class UserauthorizationAction extends Action
$profile = $user->getProfile();
if (!$profile) {
common_log_db_error($user, 'SELECT', __FILE__);
+ // TRANS: Server error displayed when trying to authorise a remote subscription request
+ // TRANS: while the user has no profile.
$this->serverError(_('User without matching profile.'));
return;
}
@@ -102,16 +105,18 @@ class UserauthorizationAction extends Action
function title()
{
+ // TRANS: Page title.
return _('Authorize subscription');
}
function showPageNotice()
{
+ // TRANS: Page notice on "Auhtorize subscription" page.
$this->element('p', null, _('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”.'));
+ 'click "Reject".'));
}
function showContent()
@@ -191,10 +196,14 @@ class UserauthorizationAction extends Action
'userauthorization')));
$this->hidden('token', common_session_token());
- $this->submit('accept', _('Accept'), 'submit accept', null,
- _('Subscribe to this user'));
- $this->submit('reject', _('Reject'), 'submit reject', null,
- _('Reject this subscription'));
+ // TRANS: Button text on Authorise Subscription page.
+ $this->submit('accept', _m('BUTTON','Accept'), 'submit accept', null,
+ // TRANS: Title for button on Authorise Subscription page.
+ _('Subscribe to this user.'));
+ // TRANS: Button text on Authorise Subscription page.
+ $this->submit('reject', _m('BUTTON','Reject'), 'submit reject', null,
+ // TRANS: Title for button on Authorise Subscription page.
+ _('Reject this subscription.'));
$this->elementEnd('form');
$this->elementEnd('li');
$this->elementEnd('ul');
@@ -206,6 +215,7 @@ class UserauthorizationAction extends Action
$srv = $this->getStoredParams();
if (is_null($srv)) {
+ // TRANS: Client error displayed for an empty authorisation request.
$this->clientError(_('No authorization request!'));
return;
}
@@ -228,7 +238,9 @@ class UserauthorizationAction extends Action
function showAcceptMessage($tok)
{
+ // TRANS: Accept message header from Authorise subscription page.
common_show_header(_('Subscription authorized'));
+ // TRANS: Accept message text from Authorise subscription page.
$this->element('p', null,
_('The subscription has been authorized, but no '.
'callback URL was passed. Check with the site’s ' .
@@ -240,7 +252,9 @@ class UserauthorizationAction extends Action
function showRejectMessage()
{
+ // TRANS: Reject message header from Authorise subscription page.
common_show_header(_('Subscription rejected'));
+ // TRANS: Reject message from Authorise subscription page.
$this->element('p', null,
_('The subscription has been rejected, but no '.
'callback URL was passed. Check with the site’s ' .
@@ -277,18 +291,24 @@ class UserauthorizationAction extends Action
$user = User::staticGet('uri', $listener);
if (!$user) {
- throw new Exception(sprintf(_('Listener URI ‘%s’ not found here.'),
+ // TRANS: Exception thrown when no valid user is found for an authorisation request.
+ // TRANS: %s is a listener URI.
+ throw new Exception(sprintf(_('Listener URI "%s" not found here.'),
$listener));
}
if (strlen($listenee) > 255) {
- throw new Exception(sprintf(_('Listenee URI ‘%s’ is too long.'),
+ // TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+ // TRANS: %s is a listenee URI.
+ throw new Exception(sprintf(_('Listenee URI "%s" is too long.'),
$listenee));
}
$other = User::staticGet('uri', $listenee);
if ($other) {
- throw new Exception(sprintf(_('Listenee URI ‘%s’ is a local user.'),
+ // TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+ // TRANS: %s is a listenee URI.
+ throw new Exception(sprintf(_('Listenee URI "%s" is a local user.'),
$listenee));
}
@@ -298,12 +318,15 @@ class UserauthorizationAction extends Action
$sub->subscriber = $user->id;
$sub->subscribed = $remote->id;
if ($sub->find(true)) {
+ // TRANS: Exception thrown when already subscribed.
throw new Exception('You are already subscribed to this user.');
}
}
if ($profile == common_profile_url($nickname)) {
- throw new Exception(sprintf(_('Profile URL ‘%s’ is for a local user.'),
+ // TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+ // TRANS: %s is a profile URL.
+ throw new Exception(sprintf(_('Profile URL "%s" is for a local user.'),
$profile));
}
@@ -311,26 +334,34 @@ class UserauthorizationAction extends Action
$license = $_GET['omb_listenee_license'];
$site_license = common_config('license', 'url');
if (!common_compatible_license($license, $site_license)) {
- throw new Exception(sprintf(_('Listenee stream license ‘%1$s’ is not ' .
- 'compatible with site license ‘%2$s’.'),
+ // TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+ // TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+ throw new Exception(sprintf(_('Listenee stream license "%1$s" is not ' .
+ 'compatible with site license "%2$s".'),
$license, $site_license));
}
$avatar = $_GET['omb_listenee_avatar'];
if ($avatar) {
if (!common_valid_http_url($avatar) || strlen($avatar) > 255) {
- throw new Exception(sprintf(_('Avatar URL ‘%s’ is not valid.'),
+ // TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+ // TRANS: %s is an avatar URL.
+ throw new Exception(sprintf(_('Avatar URL "%s" is not valid.'),
$avatar));
}
$size = @getimagesize($avatar);
if (!$size) {
- throw new Exception(sprintf(_('Can’t read avatar URL ‘%s’.'),
+ // TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+ // TRANS: %s is an avatar URL.
+ throw new Exception(sprintf(_('Cannot read avatar URL "%s".'),
$avatar));
}
if (!in_array($size[2], array(IMAGETYPE_GIF, IMAGETYPE_JPEG,
IMAGETYPE_PNG))) {
+ // TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+ // TRANS: %s is an avatar URL.
throw new Exception(sprintf(_('Wrong image type for avatar URL '.
- '‘%s’.'), $avatar));
+ '"%s".'), $avatar));
}
}
}
diff --git a/actions/userbyid.php b/actions/userbyid.php
index f3e1556f3f..b8ccd0108e 100644
--- a/actions/userbyid.php
+++ b/actions/userbyid.php
@@ -1,5 +1,4 @@
trimmed('id');
if (!$id) {
+ // TRANS: Client error displayed trying to find a user by ID without providing an ID.
$this->clientError(_('No ID.'));
}
$user = User::staticGet($id);
if (!$user) {
+ // TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
$this->clientError(_('No such user.'));
}
diff --git a/actions/userdesignsettings.php b/actions/userdesignsettings.php
index e6caea3a1b..8ce5e1f8f3 100644
--- a/actions/userdesignsettings.php
+++ b/actions/userdesignsettings.php
@@ -46,7 +46,6 @@ require_once INSTALLDIR . '/lib/designsettings.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class UserDesignSettingsAction extends DesignSettingsAction
{
/**
@@ -70,7 +69,6 @@ class UserDesignSettingsAction extends DesignSettingsAction
*
* @return string Title of the page
*/
-
function title()
{
return _('Profile design');
@@ -81,7 +79,6 @@ class UserDesignSettingsAction extends DesignSettingsAction
*
* @return instructions for use
*/
-
function getInstructions()
{
return _('Customize the way your profile looks ' .
@@ -93,7 +90,6 @@ class UserDesignSettingsAction extends DesignSettingsAction
*
* @return Design
*/
-
function getWorkingDesign()
{
$user = common_current_user();
@@ -108,7 +104,6 @@ class UserDesignSettingsAction extends DesignSettingsAction
*
* @return void
*/
-
function showContent()
{
$design = $this->getWorkingDesign();
@@ -139,7 +134,6 @@ class UserDesignSettingsAction extends DesignSettingsAction
*
* @return void
*/
-
function saveDesign()
{
$this->saveDesignPreferences();
@@ -185,7 +179,6 @@ class UserDesignSettingsAction extends DesignSettingsAction
$design = $user->getDesign();
if (!empty($design)) {
-
$original = clone($design);
$design->backgroundcolor = $bgcolor->intValue();
@@ -200,13 +193,11 @@ class UserDesignSettingsAction extends DesignSettingsAction
if ($result === false) {
common_log_db_error($design, 'UPDATE', __FILE__);
- $this->showForm(_('Couldn\'t update your design.'));
+ $this->showForm(_('Could not update your design.'));
return;
}
-
// update design
} else {
-
$user->query('BEGIN');
// save new design
@@ -253,7 +244,6 @@ class UserDesignSettingsAction extends DesignSettingsAction
*
* @return nothing
*/
-
function sethd()
{
diff --git a/actions/userxrd.php b/actions/userxrd.php
index 582f7a35e7..7691ff155b 100644
--- a/actions/userxrd.php
+++ b/actions/userxrd.php
@@ -56,7 +56,7 @@ class UserxrdAction extends XrdAction
}
if (!$this->user) {
- $this->clientError(_m('No such user.'), 404);
+ $this->clientError(_('No such user.'), 404);
return false;
}
diff --git a/actions/xrds.php b/actions/xrds.php
index 534182e3ed..818cd1032c 100644
--- a/actions/xrds.php
+++ b/actions/xrds.php
@@ -1,5 +1,4 @@
trimmed('nickname');
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
+ // TRANS: Client error displayed providing a non-existing nickname.
$this->clientError(_('No such user.'));
return;
}
@@ -110,7 +110,7 @@ class XrdsAction extends Action
null,
array(OAUTH_AUTH_HEADER, OAUTH_POST_BODY, OAUTH_HMAC_SHA1));
$xrdsOutputter->elementEnd('XRD');
-
+
//omb
$xrdsOutputter->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
'xml:id' => 'omb',
@@ -122,7 +122,7 @@ class XrdsAction extends Action
$xrdsOutputter->showXrdsService(OMB_ENDPOINT_UPDATEPROFILE,
common_local_url('updateprofile'));
$xrdsOutputter->elementEnd('XRD');
-
+
Event::handle('EndUserXRDS', array($this,&$xrdsOutputter));
//misc
@@ -135,7 +135,5 @@ class XrdsAction extends Action
$xrdsOutputter->elementEnd('XRD');
$xrdsOutputter->endXRDS();
-
}
}
-?>
diff --git a/classes/File.php b/classes/File.php
index 29a8f0f1c5..e9a0131c4e 100644
--- a/classes/File.php
+++ b/classes/File.php
@@ -55,14 +55,20 @@ class File extends Memcached_DataObject
return 'http://www.facebook.com/login.php' === $url;
}
- function getAttachments($post_id) {
- $query = "select file.* from file join file_to_post on (file_id = file.id) join notice on (post_id = notice.id) where post_id = " . $this->escape($post_id);
- $this->query($query);
+ /**
+ * Get the attachments for a particlar notice.
+ *
+ * @param int $post_id
+ * @return array of File objects
+ */
+ static function getAttachments($post_id) {
+ $file = new File();
+ $query = "select file.* from file join file_to_post on (file_id = file.id) where post_id = " . $file->escape($post_id);
+ $file = Memcached_DataObject::cachedQuery('File', $query);
$att = array();
- while ($this->fetch()) {
- $att[] = clone($this);
+ while ($file->fetch()) {
+ $att[] = clone($file);
}
- $this->free();
return $att;
}
diff --git a/classes/Memcached_DataObject.php b/classes/Memcached_DataObject.php
index b92b67e775..97f793f4d8 100644
--- a/classes/Memcached_DataObject.php
+++ b/classes/Memcached_DataObject.php
@@ -341,6 +341,7 @@ class Memcached_DataObject extends Safe_DataObject
$fail = false;
$result = null;
if (Event::handle('StartDBQuery', array($this, $string, &$result))) {
+ common_perf_counter('query', $string);
try {
$result = parent::_query($string);
} catch (Exception $e) {
@@ -494,6 +495,10 @@ class Memcached_DataObject extends Safe_DataObject
}
}
}
+ // Needed to make timestamp values usefully comparable.
+ if (common_config('db', 'type') == 'mysql') {
+ parent::_query("set time_zone='+0:00'");
+ }
}
return $result;
diff --git a/classes/Notice.php b/classes/Notice.php
index 3c56cd0cb4..157fdf2dc4 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -153,7 +153,7 @@ class Notice extends Memcached_DataObject
function saveTags()
{
/* extract all #hastags */
- $count = preg_match_all('/(?:^|\s)#([\pL\pN_\-\.]{1,64})/', strtolower($this->content), $match);
+ $count = preg_match_all('/(?:^|\s)#([\pL\pN_\-\.]{1,64})/u', strtolower($this->content), $match);
if (!$count) {
return true;
}
@@ -241,7 +241,7 @@ class Notice extends Memcached_DataObject
* array 'urls' list of attached/referred URLs to save with the
* notice in place of extracting links from content
* boolean 'distribute' whether to distribute the notice, default true
- *
+ *
* @fixme tag override
*
* @return Notice
@@ -446,7 +446,10 @@ class Notice extends Memcached_DataObject
function blowOnInsert($conversation = false)
{
self::blow('profile:notice_ids:%d', $this->profile_id);
- self::blow('public');
+
+ if ($this->isPublic()) {
+ self::blow('public');
+ }
// XXX: Before we were blowing the casche only if the notice id
// was not the root of the conversation. What to do now?
@@ -481,7 +484,10 @@ class Notice extends Memcached_DataObject
$this->blowOnInsert();
self::blow('profile:notice_ids:%d;last', $this->profile_id);
- self::blow('public;last');
+
+ if ($this->isPublic()) {
+ self::blow('public;last');
+ }
}
/** save all urls in the notice to the db
@@ -819,9 +825,18 @@ class Notice extends Memcached_DataObject
// Exclude any deleted, non-local, or blocking recipients.
$profile = $this->getProfile();
+ $originalProfile = null;
+ if ($this->repeat_of) {
+ // Check blocks against the original notice's poster as well.
+ $original = Notice::staticGet('id', $this->repeat_of);
+ if ($original) {
+ $originalProfile = $original->getProfile();
+ }
+ }
foreach ($ni as $id => $source) {
$user = User::staticGet('id', $id);
- if (empty($user) || $user->hasBlocked($profile)) {
+ if (empty($user) || $user->hasBlocked($profile) ||
+ ($originalProfile && $user->hasBlocked($originalProfile))) {
unset($ni[$id]);
}
}
@@ -949,7 +964,7 @@ class Notice extends Memcached_DataObject
$groups = array();
/* extract all !group */
- $count = preg_match_all('/(?:^|\s)!([A-Za-z0-9]{1,64})/',
+ $count = preg_match_all('/(?:^|\s)!(' . Nickname::DISPLAY_FMT . ')/',
strtolower($this->content),
$match);
if (!$count) {
@@ -1057,6 +1072,7 @@ class Notice extends Memcached_DataObject
$reply->notice_id = $this->id;
$reply->profile_id = $profile->id;
+ $reply->modified = $this->created;
common_log(LOG_INFO, __METHOD__ . ": saving reply: notice $this->id to profile $profile->id");
@@ -1117,6 +1133,7 @@ class Notice extends Memcached_DataObject
$reply->notice_id = $this->id;
$reply->profile_id = $mentioned->id;
+ $reply->modified = $this->created;
$id = $reply->insert();
@@ -1231,33 +1248,33 @@ class Notice extends Memcached_DataObject
* Convert a notice into an activity for export.
*
* @param User $cur Current user
- *
+ *
* @return Activity activity object representing this Notice.
*/
- function asActivity()
+ function asActivity($cur)
{
$act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
if (!empty($act)) {
return $act;
}
-
$act = new Activity();
-
+
if (Event::handle('StartNoticeAsActivity', array($this, &$act))) {
$profile = $this->getProfile();
-
- $act->actor = ActivityObject::fromProfile($profile);
- $act->verb = ActivityVerb::POST;
- $act->objects[] = ActivityObject::fromNotice($this);
+
+ $act->actor = ActivityObject::fromProfile($profile);
+ $act->actor->extra[] = $profile->profileInfo($cur);
+ $act->verb = ActivityVerb::POST;
+ $act->objects[] = ActivityObject::fromNotice($this);
// XXX: should this be handled by default processing for object entry?
$act->time = strtotime($this->created);
$act->link = $this->bestUrl();
-
+
$act->content = common_xml_safe_str($this->rendered);
$act->id = $this->uri;
$act->title = common_xml_safe_str($this->content);
@@ -1284,9 +1301,9 @@ class Notice extends Memcached_DataObject
$act->enclosures[] = $enclosure;
}
}
-
+
$ctx = new ActivityContext();
-
+
if (!empty($this->reply_to)) {
$reply = Notice::staticGet('id', $this->reply_to);
if (!empty($reply)) {
@@ -1294,31 +1311,31 @@ class Notice extends Memcached_DataObject
$ctx->replyToUrl = $reply->bestUrl();
}
}
-
+
$ctx->location = $this->getLocation();
-
+
$conv = null;
-
+
if (!empty($this->conversation)) {
$conv = Conversation::staticGet('id', $this->conversation);
if (!empty($conv)) {
$ctx->conversation = $conv->uri;
}
}
-
+
$reply_ids = $this->getReplies();
-
+
foreach ($reply_ids as $id) {
$profile = Profile::staticGet('id', $id);
if (!empty($profile)) {
$ctx->attention[] = $profile->getUri();
}
}
-
+
$groups = $this->getGroups();
-
+
foreach ($groups as $group) {
- $ctx->attention[] = $group->uri;
+ $ctx->attention[] = $group->getUri();
}
// XXX: deprecated; use ActivityVerb::SHARE instead
@@ -1330,7 +1347,7 @@ class Notice extends Memcached_DataObject
$ctx->forwardID = $repeat->uri;
$ctx->forwardUrl = $repeat->bestUrl();
}
-
+
$act->context = $ctx;
// Source
@@ -1340,7 +1357,7 @@ class Notice extends Memcached_DataObject
if (!empty($atom_feed)) {
$act->source = new ActivitySource();
-
+
// XXX: we should store the actual feed ID
$act->source->id = $atom_feed;
@@ -1353,7 +1370,7 @@ class Notice extends Memcached_DataObject
$act->source->links['self'] = $atom_feed;
$act->source->icon = $profile->avatarUrl(AVATAR_PROFILE_SIZE);
-
+
$notice = $profile->getCurrentNotice();
if (!empty($notice)) {
@@ -1375,7 +1392,7 @@ class Notice extends Memcached_DataObject
Event::handle('EndNoticeAsActivity', array($this, &$act));
}
-
+
self::cacheSet(Cache::codeKey('notice:as-activity:'.$this->id), $act);
return $act;
@@ -1386,17 +1403,17 @@ class Notice extends Memcached_DataObject
function asAtomEntry($namespace=false,
$source=false,
- $author=true,
+ $author=true,
$cur=null)
{
- $act = $this->asActivity();
+ $act = $this->asActivity($cur);
$act->extra[] = $this->noticeInfo($cur);
return $act->asString($namespace, $author, $source);
}
/**
* Extra notice info for atom entries
- *
+ *
* Clients use some extra notice info in the atom stream.
* This gives it to them.
*
@@ -2098,4 +2115,14 @@ class Notice extends Memcached_DataObject
$obj->whereAdd($max);
}
}
+
+ function isPublic()
+ {
+ if (common_config('public', 'localonly')) {
+ return ($this->is_local == Notice::LOCAL_PUBLIC);
+ } else {
+ return (($this->is_local != Notice::LOCAL_NONPUBLIC) &&
+ ($this->is_local != Notice::GATEWAY));
+ }
+ }
}
diff --git a/classes/Profile.php b/classes/Profile.php
index d658b6b0ba..2ad302ccb8 100644
--- a/classes/Profile.php
+++ b/classes/Profile.php
@@ -354,7 +354,10 @@ class Profile extends Memcached_DataObject
$profiles = array();
while ($subs->fetch()) {
- $profiles[] = Profile::staticGet($subs->subscribed);
+ $profile = Profile::staticGet($subs->subscribed);
+ if ($profile) {
+ $profiles[] = $profile;
+ }
}
return new ArrayWrapper($profiles);
@@ -369,7 +372,10 @@ class Profile extends Memcached_DataObject
$profiles = array();
while ($subs->fetch()) {
- $profiles[] = Profile::staticGet($subs->subscriber);
+ $profile = Profile::staticGet($subs->subscriber);
+ if ($profile) {
+ $profiles[] = $profile;
+ }
}
return new ArrayWrapper($profiles);
@@ -746,6 +752,10 @@ class Profile extends Memcached_DataObject
throw new Exception("Can't save role '$name' for profile '{$this->id}'");
}
+ if ($name == 'owner') {
+ User::blow('user:site_owner');
+ }
+
Event::handle('EndGrantRole', array($this, $name));
}
@@ -774,6 +784,10 @@ class Profile extends Memcached_DataObject
throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; database error.'),$name, $this->id));
}
+ if ($name == 'owner') {
+ User::blow('user:site_owner');
+ }
+
Event::handle('EndRevokeRole', array($this, $name));
return true;
@@ -859,6 +873,12 @@ class Profile extends Memcached_DataObject
case Right::EMAILONFAVE:
$result = !$this->isSandboxed();
break;
+ case Right::WEBLOGIN:
+ $result = !$this->isSilenced();
+ break;
+ case Right::API:
+ $result = !$this->isSilenced();
+ break;
case Right::BACKUPACCOUNT:
$result = common_config('profile', 'backup');
break;
@@ -918,6 +938,31 @@ class Profile extends Memcached_DataObject
return $xs->getString();
}
+ /**
+ * Extra profile info for atom entries
+ *
+ * Clients use some extra profile info in the atom stream.
+ * This gives it to them.
+ *
+ * @param User $cur Current user
+ *
+ * @return array representation of element or null
+ */
+
+ function profileInfo($cur)
+ {
+ $profileInfoAttr = array('local_id' => $this->id);
+
+ if ($cur != null) {
+ // Whether the current user is a subscribed to this profile
+ $profileInfoAttr['following'] = $cur->isSubscribed($this) ? 'true' : 'false';
+ // Whether the current user is has blocked this profile
+ $profileInfoAttr['blocking'] = $cur->hasBlocked($this) ? 'true' : 'false';
+ }
+
+ return array('statusnet:profile_info', $profileInfoAttr, null);
+ }
+
/**
* Returns an XML string fragment with profile information as an
* Activity Streams element.
diff --git a/classes/Session.php b/classes/Session.php
index e1c83ad4dc..166b89815a 100644
--- a/classes/Session.php
+++ b/classes/Session.php
@@ -156,6 +156,13 @@ class Session extends Memcached_DataObject
$session->selectAdd();
$session->selectAdd('id');
+ $limit = common_config('sessions', 'gc_limit');
+ if ($limit > 0) {
+ // On large sites, too many sessions to expire
+ // at once will just result in failure.
+ $session->limit($limit);
+ }
+
$session->find();
while ($session->fetch()) {
diff --git a/classes/User.php b/classes/User.php
index 04b9b4cc68..962714aa4d 100644
--- a/classes/User.php
+++ b/classes/User.php
@@ -970,7 +970,7 @@ class User extends Memcached_DataObject
}
/*
- * Get a list of OAuth client application that have access to this
+ * Get a list of OAuth client applications that have access to this
* user's account.
*/
function getConnectedApps($offset = 0, $limit = null)
diff --git a/classes/User_group.php b/classes/User_group.php
index 68f61cb7f4..5a9991fe9e 100644
--- a/classes/User_group.php
+++ b/classes/User_group.php
@@ -487,6 +487,7 @@ class User_group extends Memcached_DataObject
}
// MAGICALLY put fields into current scope
+ // @fixme kill extract(); it makes debugging absurdly hard
extract($fields);
@@ -498,6 +499,9 @@ class User_group extends Memcached_DataObject
// fill in later...
$uri = null;
}
+ if (empty($mainpage)) {
+ $mainpage = common_local_url('showgroup', array('nickname' => $nickname));
+ }
$group->nickname = $nickname;
$group->fullname = $fullname;
@@ -508,64 +512,70 @@ class User_group extends Memcached_DataObject
$group->mainpage = $mainpage;
$group->created = common_sql_now();
- $result = $group->insert();
+ if (Event::handle('StartGroupSave', array(&$group))) {
- if (!$result) {
- common_log_db_error($group, 'INSERT', __FILE__);
- // TRANS: Server exception thrown when creating a group failed.
- throw new ServerException(_('Could not create group.'));
- }
-
- if (!isset($uri) || empty($uri)) {
- $orig = clone($group);
- $group->uri = common_local_url('groupbyid', array('id' => $group->id));
- $result = $group->update($orig);
- if (!$result) {
- common_log_db_error($group, 'UPDATE', __FILE__);
- // TRANS: Server exception thrown when updating a group URI failed.
- throw new ServerException(_('Could not set group URI.'));
- }
- }
-
- $result = $group->setAliases($aliases);
-
- if (!$result) {
- // TRANS: Server exception thrown when creating group aliases failed.
- throw new ServerException(_('Could not create aliases.'));
- }
-
- $member = new Group_member();
-
- $member->group_id = $group->id;
- $member->profile_id = $userid;
- $member->is_admin = 1;
- $member->created = $group->created;
-
- $result = $member->insert();
-
- if (!$result) {
- common_log_db_error($member, 'INSERT', __FILE__);
- // TRANS: Server exception thrown when setting group membership failed.
- throw new ServerException(_('Could not set group membership.'));
- }
-
- if ($local) {
- $local_group = new Local_group();
-
- $local_group->group_id = $group->id;
- $local_group->nickname = $nickname;
- $local_group->created = common_sql_now();
-
- $result = $local_group->insert();
+ $result = $group->insert();
if (!$result) {
- common_log_db_error($local_group, 'INSERT', __FILE__);
- // TRANS: Server exception thrown when saving local group information failed.
- throw new ServerException(_('Could not save local group info.'));
+ common_log_db_error($group, 'INSERT', __FILE__);
+ // TRANS: Server exception thrown when creating a group failed.
+ throw new ServerException(_('Could not create group.'));
}
+
+ if (!isset($uri) || empty($uri)) {
+ $orig = clone($group);
+ $group->uri = common_local_url('groupbyid', array('id' => $group->id));
+ $result = $group->update($orig);
+ if (!$result) {
+ common_log_db_error($group, 'UPDATE', __FILE__);
+ // TRANS: Server exception thrown when updating a group URI failed.
+ throw new ServerException(_('Could not set group URI.'));
+ }
+ }
+
+ $result = $group->setAliases($aliases);
+
+ if (!$result) {
+ // TRANS: Server exception thrown when creating group aliases failed.
+ throw new ServerException(_('Could not create aliases.'));
+ }
+
+ $member = new Group_member();
+
+ $member->group_id = $group->id;
+ $member->profile_id = $userid;
+ $member->is_admin = 1;
+ $member->created = $group->created;
+
+ $result = $member->insert();
+
+ if (!$result) {
+ common_log_db_error($member, 'INSERT', __FILE__);
+ // TRANS: Server exception thrown when setting group membership failed.
+ throw new ServerException(_('Could not set group membership.'));
+ }
+
+ if ($local) {
+ $local_group = new Local_group();
+
+ $local_group->group_id = $group->id;
+ $local_group->nickname = $nickname;
+ $local_group->created = common_sql_now();
+
+ $result = $local_group->insert();
+
+ if (!$result) {
+ common_log_db_error($local_group, 'INSERT', __FILE__);
+ // TRANS: Server exception thrown when saving local group information failed.
+ throw new ServerException(_('Could not save local group info.'));
+ }
+ }
+
+ $group->query('COMMIT');
+
+ Event::handle('EndGroupSave', array($group));
}
- $group->query('COMMIT');
return $group;
}
diff --git a/classes/statusnet.ini b/classes/statusnet.ini
index d1d2980fd3..bf8d173805 100644
--- a/classes/statusnet.ini
+++ b/classes/statusnet.ini
@@ -502,7 +502,8 @@ uri = U
[reply]
notice_id = 129
profile_id = 129
-modified = 384
+modified = 142
+;modified = 384 ; skipping the mysql_timestamp mode so we can override its setting
replied_id = 1
[reply__keys]
diff --git a/db/notice_source.sql b/db/notice_source.sql
index 82074077b4..dec8080a01 100644
--- a/db/notice_source.sql
+++ b/db/notice_source.sql
@@ -24,6 +24,7 @@ VALUES
('HelloTxt','HelloTxt','http://hellotxt.com/', now()),
('identicatools','Laconica Tools','http://bitbucketlabs.net/laconica-tools/', now()),
('identichat','identichat','http://identichat.prosody.im/', now()),
+ ('IdentiCurse','IdentiCurse','http://identicurse.net/', now()),
('IdentiFox','IdentiFox','http://www.bitbucket.org/uncryptic/identifox/', now()),
('identitwitch','IdentiTwitch','http://richfish.org/identitwitch/', now()),
('Jiminy','Jiminy','http://code.google.com/p/jiminy/', now()),
@@ -77,4 +78,5 @@ VALUES
('twitvim','TwitVim','http://vim.sourceforge.net/scripts/script.php?script_id=2204', now()),
('Updating.Me','Updating.Me','http://updating.me/', now()),
('urfastr','urfastr','http://urfastr.net/', now()),
- ('yatca','Yatca','http://www.yatca.com/', now());
+ ('yatca','Yatca','http://www.yatca.com/', now()),
+ ('rss.me', 'rss.me', 'http://rss.me/', now());
diff --git a/doc-src/im b/doc-src/im
index 896c121879..9932632188 100644
--- a/doc-src/im
+++ b/doc-src/im
@@ -32,19 +32,40 @@ Commands
You can do some minor management of your account through Jabber. These are the
currently-implemented commands:
-* **on**: Turn on notifications. You'll receive copies of messages by people
- you subscribe to.
-* **off**: Turn off notifications. You'll no longer receive Jabber
- notifications.
-* **stop**: Same as 'off'
-* **quit**: Same as 'off'
-* **help**: Show this help. List available Jabber/XMPP commands
-* **follow <nickname>**: Subscribe to <nickname>
-* **sub <nickname>**: Same as follow
-* **leave <nickname>**: Unsubscribe from <nickname>
-* **unsub <nickname>**: Same as leave
-* **d <nickname> <text>**: Send direct message to <nickname> with message body <text>
-* **get <nickname>**: Get last notice from <nickname>
-* **last <nickname>**: Same as 'get'
-* **whois <nickname>**: Get Profile info on <nickname>
-* **fav <nickname>**: Add user's last notice as a favorite
+* **on** - turn on notifications
+* **off** - turn off notifications
+* **help** - show this help
+* **follow <nickname>** - subscribe to user
+* **groups** - lists the groups you have joined
+* **subscriptions** - list the people you follow
+* **subscribers** - list the people that follow you
+* **leave <nickname>** - unsubscribe from user
+* **d <nickname> <text>** - direct message to user
+* **get <nickname>** - get last notice from user
+* **whois <nickname>** - get profile info on user
+* **lose <nickname>** - force user to stop following you
+* **fav <nickname>** - add user's last notice as a 'fave'
+* **fav #<notice_id>** - add notice with the given id as a 'fave'
+* **repeat #<notice_id>** - repeat a notice with a given id
+* **repeat <nickname>** - repeat the last notice from user
+* **reply #<notice_id>** - reply to notice with a given id
+* **reply <nickname>** - reply to the last notice from user
+* **join <group>** - join group
+* **login** - Get a link to login to the web interface
+* **drop <group>** - leave group
+* **stats** - get your stats
+* **stop** - same as 'off'
+* **quit** - same as 'off'
+* **sub <nickname>** - same as 'follow'
+* **unsub <nickname>** - same as 'leave'
+* **last <nickname>** - same as 'get'
+* **on <nickname>** - not yet implemented.
+* **off <nickname>** - not yet implemented.
+* **nudge <nickname>** - remind a user to update.
+* **invite <phone number>** - not yet implemented.
+* **track <word>** - not yet implemented.
+* **untrack <word>** - not yet implemented.
+* **track off** - not yet implemented.
+* **untrack all** - not yet implemented.
+* **tracks** - not yet implemented.
+* **tracking** - not yet implemented.
diff --git a/extlib/Auth/SASL.php b/extlib/Auth/SASL.php
new file mode 100644
index 0000000000..e70f0146bc
--- /dev/null
+++ b/extlib/Auth/SASL.php
@@ -0,0 +1,104 @@
+ |
+// +-----------------------------------------------------------------------+
+//
+// $Id: SASL.php 286825 2009-08-05 06:23:42Z cweiske $
+
+/**
+* Client implementation of various SASL mechanisms
+*
+* @author Richard Heyes
+* @access public
+* @version 1.0
+* @package Auth_SASL
+*/
+
+require_once('PEAR.php');
+
+class Auth_SASL
+{
+ /**
+ * Factory class. Returns an object of the request
+ * type.
+ *
+ * @param string $type One of: Anonymous
+ * Plain
+ * CramMD5
+ * DigestMD5
+ * Types are not case sensitive
+ */
+ function &factory($type)
+ {
+ switch (strtolower($type)) {
+ case 'anonymous':
+ $filename = 'Auth/SASL/Anonymous.php';
+ $classname = 'Auth_SASL_Anonymous';
+ break;
+
+ case 'login':
+ $filename = 'Auth/SASL/Login.php';
+ $classname = 'Auth_SASL_Login';
+ break;
+
+ case 'plain':
+ $filename = 'Auth/SASL/Plain.php';
+ $classname = 'Auth_SASL_Plain';
+ break;
+
+ case 'external':
+ $filename = 'Auth/SASL/External.php';
+ $classname = 'Auth_SASL_External';
+ break;
+
+ case 'crammd5':
+ $filename = 'Auth/SASL/CramMD5.php';
+ $classname = 'Auth_SASL_CramMD5';
+ break;
+
+ case 'digestmd5':
+ $filename = 'Auth/SASL/DigestMD5.php';
+ $classname = 'Auth_SASL_DigestMD5';
+ break;
+
+ default:
+ return PEAR::raiseError('Invalid SASL mechanism type');
+ break;
+ }
+
+ require_once($filename);
+ $obj = new $classname();
+ return $obj;
+ }
+}
+
+?>
diff --git a/extlib/Auth/SASL/Anonymous.php b/extlib/Auth/SASL/Anonymous.php
new file mode 100644
index 0000000000..4eaaa399e6
--- /dev/null
+++ b/extlib/Auth/SASL/Anonymous.php
@@ -0,0 +1,71 @@
+ |
+// +-----------------------------------------------------------------------+
+//
+// $Id: Anonymous.php 286825 2009-08-05 06:23:42Z cweiske $
+
+/**
+* Implmentation of ANONYMOUS SASL mechanism
+*
+* @author Richard Heyes
+* @access public
+* @version 1.0
+* @package Auth_SASL
+*/
+
+require_once('Auth/SASL/Common.php');
+
+class Auth_SASL_Anonymous extends Auth_SASL_Common
+{
+ /**
+ * Not much to do here except return the token supplied.
+ * No encoding, hashing or encryption takes place for this
+ * mechanism, simply one of:
+ * o An email address
+ * o An opaque string not containing "@" that can be interpreted
+ * by the sysadmin
+ * o Nothing
+ *
+ * We could have some logic here for the second option, but this
+ * would by no means create something interpretable.
+ *
+ * @param string $token Optional email address or string to provide
+ * as trace information.
+ * @return string The unaltered input token
+ */
+ function getResponse($token = '')
+ {
+ return $token;
+ }
+}
+?>
\ No newline at end of file
diff --git a/extlib/Auth/SASL/Common.php b/extlib/Auth/SASL/Common.php
new file mode 100644
index 0000000000..44181645c4
--- /dev/null
+++ b/extlib/Auth/SASL/Common.php
@@ -0,0 +1,74 @@
+ |
+// +-----------------------------------------------------------------------+
+//
+// $Id: Common.php 286825 2009-08-05 06:23:42Z cweiske $
+
+/**
+* Common functionality to SASL mechanisms
+*
+* @author Richard Heyes
+* @access public
+* @version 1.0
+* @package Auth_SASL
+*/
+
+class Auth_SASL_Common
+{
+ /**
+ * Function which implements HMAC MD5 digest
+ *
+ * @param string $key The secret key
+ * @param string $data The data to protect
+ * @return string The HMAC MD5 digest
+ */
+ function _HMAC_MD5($key, $data)
+ {
+ if (strlen($key) > 64) {
+ $key = pack('H32', md5($key));
+ }
+
+ if (strlen($key) < 64) {
+ $key = str_pad($key, 64, chr(0));
+ }
+
+ $k_ipad = substr($key, 0, 64) ^ str_repeat(chr(0x36), 64);
+ $k_opad = substr($key, 0, 64) ^ str_repeat(chr(0x5C), 64);
+
+ $inner = pack('H32', md5($k_ipad . $data));
+ $digest = md5($k_opad . $inner);
+
+ return $digest;
+ }
+}
+?>
diff --git a/extlib/Auth/SASL/CramMD5.php b/extlib/Auth/SASL/CramMD5.php
new file mode 100644
index 0000000000..177279c06b
--- /dev/null
+++ b/extlib/Auth/SASL/CramMD5.php
@@ -0,0 +1,68 @@
+ |
+// +-----------------------------------------------------------------------+
+//
+// $Id: CramMD5.php 286825 2009-08-05 06:23:42Z cweiske $
+
+/**
+* Implmentation of CRAM-MD5 SASL mechanism
+*
+* @author Richard Heyes
+* @access public
+* @version 1.0
+* @package Auth_SASL
+*/
+
+require_once('Auth/SASL/Common.php');
+
+class Auth_SASL_CramMD5 extends Auth_SASL_Common
+{
+ /**
+ * Implements the CRAM-MD5 SASL mechanism
+ * This DOES NOT base64 encode the return value,
+ * you will need to do that yourself.
+ *
+ * @param string $user Username
+ * @param string $pass Password
+ * @param string $challenge The challenge supplied by the server.
+ * this should be already base64_decoded.
+ *
+ * @return string The string to pass back to the server, of the form
+ * "". This is NOT base64_encoded.
+ */
+ function getResponse($user, $pass, $challenge)
+ {
+ return $user . ' ' . $this->_HMAC_MD5($pass, $challenge);
+ }
+}
+?>
\ No newline at end of file
diff --git a/extlib/Auth/SASL/DigestMD5.php b/extlib/Auth/SASL/DigestMD5.php
new file mode 100644
index 0000000000..8c58787dfe
--- /dev/null
+++ b/extlib/Auth/SASL/DigestMD5.php
@@ -0,0 +1,197 @@
+ |
+// +-----------------------------------------------------------------------+
+//
+// $Id: DigestMD5.php 294702 2010-02-07 16:03:55Z cweiske $
+
+/**
+* Implmentation of DIGEST-MD5 SASL mechanism
+*
+* @author Richard Heyes
+* @access public
+* @version 1.0
+* @package Auth_SASL
+*/
+
+require_once('Auth/SASL/Common.php');
+
+class Auth_SASL_DigestMD5 extends Auth_SASL_Common
+{
+ /**
+ * Provides the (main) client response for DIGEST-MD5
+ * requires a few extra parameters than the other
+ * mechanisms, which are unavoidable.
+ *
+ * @param string $authcid Authentication id (username)
+ * @param string $pass Password
+ * @param string $challenge The digest challenge sent by the server
+ * @param string $hostname The hostname of the machine you're connecting to
+ * @param string $service The servicename (eg. imap, pop, acap etc)
+ * @param string $authzid Authorization id (username to proxy as)
+ * @return string The digest response (NOT base64 encoded)
+ * @access public
+ */
+ function getResponse($authcid, $pass, $challenge, $hostname, $service, $authzid = '')
+ {
+ $challenge = $this->_parseChallenge($challenge);
+ $authzid_string = '';
+ if ($authzid != '') {
+ $authzid_string = ',authzid="' . $authzid . '"';
+ }
+
+ if (!empty($challenge)) {
+ $cnonce = $this->_getCnonce();
+ $digest_uri = sprintf('%s/%s', $service, $hostname);
+ $response_value = $this->_getResponseValue($authcid, $pass, $challenge['realm'], $challenge['nonce'], $cnonce, $digest_uri, $authzid);
+
+ if ($challenge['realm']) {
+ return sprintf('username="%s",realm="%s"' . $authzid_string .
+',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['realm'], $challenge['nonce'], $cnonce, $digest_uri, $response_value, $challenge['maxbuf']);
+ } else {
+ return sprintf('username="%s"' . $authzid_string . ',nonce="%s",cnonce="%s",nc=00000001,qop=auth,digest-uri="%s",response=%s,maxbuf=%d', $authcid, $challenge['nonce'], $cnonce, $digest_uri, $response_value, $challenge['maxbuf']);
+ }
+ } else {
+ return PEAR::raiseError('Invalid digest challenge');
+ }
+ }
+
+ /**
+ * Parses and verifies the digest challenge*
+ *
+ * @param string $challenge The digest challenge
+ * @return array The parsed challenge as an assoc
+ * array in the form "directive => value".
+ * @access private
+ */
+ function _parseChallenge($challenge)
+ {
+ $tokens = array();
+ while (preg_match('/^([a-z-]+)=("[^"]+(?
diff --git a/extlib/Auth/SASL/External.php b/extlib/Auth/SASL/External.php
new file mode 100644
index 0000000000..86a17cb7ab
--- /dev/null
+++ b/extlib/Auth/SASL/External.php
@@ -0,0 +1,63 @@
+ |
+// +-----------------------------------------------------------------------+
+//
+// $Id: External.php 286825 2009-08-05 06:23:42Z cweiske $
+
+/**
+* Implmentation of EXTERNAL SASL mechanism
+*
+* @author Christoph Schulz
+* @access public
+* @version 1.0.3
+* @package Auth_SASL
+*/
+
+require_once('Auth/SASL/Common.php');
+
+class Auth_SASL_External extends Auth_SASL_Common
+{
+ /**
+ * Returns EXTERNAL response
+ *
+ * @param string $authcid Authentication id (username)
+ * @param string $pass Password
+ * @param string $authzid Autorization id
+ * @return string EXTERNAL Response
+ */
+ function getResponse($authcid, $pass, $authzid = '')
+ {
+ return $authzid;
+ }
+}
+?>
diff --git a/extlib/Auth/SASL/Login.php b/extlib/Auth/SASL/Login.php
new file mode 100644
index 0000000000..a925f53a79
--- /dev/null
+++ b/extlib/Auth/SASL/Login.php
@@ -0,0 +1,65 @@
+ |
+// +-----------------------------------------------------------------------+
+//
+// $Id: Login.php 286825 2009-08-05 06:23:42Z cweiske $
+
+/**
+* This is technically not a SASL mechanism, however
+* it's used by Net_Sieve, Net_Cyrus and potentially
+* other protocols , so here is a good place to abstract
+* it.
+*
+* @author Richard Heyes
+* @access public
+* @version 1.0
+* @package Auth_SASL
+*/
+
+require_once('Auth/SASL/Common.php');
+
+class Auth_SASL_Login extends Auth_SASL_Common
+{
+ /**
+ * Pseudo SASL LOGIN mechanism
+ *
+ * @param string $user Username
+ * @param string $pass Password
+ * @return string LOGIN string
+ */
+ function getResponse($user, $pass)
+ {
+ return sprintf('LOGIN %s %s', $user, $pass);
+ }
+}
+?>
\ No newline at end of file
diff --git a/extlib/Auth/SASL/Plain.php b/extlib/Auth/SASL/Plain.php
new file mode 100644
index 0000000000..912710169e
--- /dev/null
+++ b/extlib/Auth/SASL/Plain.php
@@ -0,0 +1,63 @@
+ |
+// +-----------------------------------------------------------------------+
+//
+// $Id: Plain.php 286825 2009-08-05 06:23:42Z cweiske $
+
+/**
+* Implmentation of PLAIN SASL mechanism
+*
+* @author Richard Heyes
+* @access public
+* @version 1.0
+* @package Auth_SASL
+*/
+
+require_once('Auth/SASL/Common.php');
+
+class Auth_SASL_Plain extends Auth_SASL_Common
+{
+ /**
+ * Returns PLAIN response
+ *
+ * @param string $authcid Authentication id (username)
+ * @param string $pass Password
+ * @param string $authzid Autorization id
+ * @return string PLAIN Response
+ */
+ function getResponse($authcid, $pass, $authzid = '')
+ {
+ return $authzid . chr(0) . $authcid . chr(0) . $pass;
+ }
+}
+?>
diff --git a/index.php b/index.php
index f8b200a58a..c8d4fbee9b 100644
--- a/index.php
+++ b/index.php
@@ -37,6 +37,9 @@
* @license GNU Affero General Public License http://www.gnu.org/licenses/
*/
+$_startTime = microtime(true);
+$_perfCounters = array();
+
define('INSTALLDIR', dirname(__FILE__));
define('STATUSNET', true);
define('LACONICA', true); // compatibility
diff --git a/js/jquery.form.js b/js/jquery.form.js
index 2b853df428..936b847abe 100644
--- a/js/jquery.form.js
+++ b/js/jquery.form.js
@@ -1,785 +1,632 @@
-/*!
- * jQuery Form Plugin
- * version: 2.49 (18-OCT-2010)
- * @requires jQuery v1.3.2 or later
- *
- * Examples and documentation at: http://malsup.com/jquery/form/
- * Dual licensed under the MIT and GPL licenses:
- * http://www.opensource.org/licenses/mit-license.php
- * http://www.gnu.org/licenses/gpl.html
- */
-;(function($) {
-
-/*
- Usage Note:
- -----------
- Do not use both ajaxSubmit and ajaxForm on the same form. These
- functions are intended to be exclusive. Use ajaxSubmit if you want
- to bind your own submit handler to the form. For example,
-
- $(document).ready(function() {
- $('#myForm').bind('submit', function(e) {
- e.preventDefault(); // <-- important
- $(this).ajaxSubmit({
- target: '#output'
- });
- });
- });
-
- Use ajaxForm when you want the plugin to manage all the event binding
- for you. For example,
-
- $(document).ready(function() {
- $('#myForm').ajaxForm({
- target: '#output'
- });
- });
-
- When using ajaxForm, the ajaxSubmit function will be invoked for you
- at the appropriate time.
-*/
-
-/**
- * ajaxSubmit() provides a mechanism for immediately submitting
- * an HTML form using AJAX.
- */
-$.fn.ajaxSubmit = function(options) {
- // fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
- if (!this.length) {
- log('ajaxSubmit: skipping submit process - no element selected');
- return this;
- }
-
- if (typeof options == 'function') {
- options = { success: options };
- }
-
- var url = $.trim(this.attr('action'));
- if (url) {
- // clean url (don't include hash vaue)
- url = (url.match(/^([^#]+)/)||[])[1];
- }
- url = url || window.location.href || '';
-
- options = $.extend(true, {
- url: url,
- type: this.attr('method') || 'GET',
- iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
- }, options);
-
- // hook for manipulating the form data before it is extracted;
- // convenient for use with rich editors like tinyMCE or FCKEditor
- var veto = {};
- this.trigger('form-pre-serialize', [this, options, veto]);
- if (veto.veto) {
- log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
- return this;
- }
-
- // provide opportunity to alter form data before it is serialized
- if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
- log('ajaxSubmit: submit aborted via beforeSerialize callback');
- return this;
- }
-
- var n,v,a = this.formToArray(options.semantic);
- if (options.data) {
- options.extraData = options.data;
- for (n in options.data) {
- if(options.data[n] instanceof Array) {
- for (var k in options.data[n]) {
- a.push( { name: n, value: options.data[n][k] } );
- }
- }
- else {
- v = options.data[n];
- v = $.isFunction(v) ? v() : v; // if value is fn, invoke it
- a.push( { name: n, value: v } );
- }
- }
- }
-
- // give pre-submit callback an opportunity to abort the submit
- if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
- log('ajaxSubmit: submit aborted via beforeSubmit callback');
- return this;
- }
-
- // fire vetoable 'validate' event
- this.trigger('form-submit-validate', [a, this, options, veto]);
- if (veto.veto) {
- log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
- return this;
- }
-
- var q = $.param(a);
-
- if (options.type.toUpperCase() == 'GET') {
- options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
- options.data = null; // data is null for 'get'
- }
- else {
- options.data = q; // data is the query string for 'post'
- }
-
- var $form = this, callbacks = [];
- if (options.resetForm) {
- callbacks.push(function() { $form.resetForm(); });
- }
- if (options.clearForm) {
- callbacks.push(function() { $form.clearForm(); });
- }
-
- // perform a load on the target only if dataType is not provided
- if (!options.dataType && options.target) {
- var oldSuccess = options.success || function(){};
- callbacks.push(function(data) {
- var fn = options.replaceTarget ? 'replaceWith' : 'html';
- $(options.target)[fn](data).each(oldSuccess, arguments);
- });
- }
- else if (options.success) {
- callbacks.push(options.success);
- }
-
- options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
- var context = options.context || options; // jQuery 1.4+ supports scope context
- for (var i=0, max=callbacks.length; i < max; i++) {
- callbacks[i].apply(context, [data, status, xhr || $form, $form]);
- }
- };
-
- // are there files to upload?
- var fileInputs = $('input:file', this).length > 0;
- var mp = 'multipart/form-data';
- var multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);
-
- // options.iframe allows user to force iframe mode
- // 06-NOV-09: now defaulting to iframe mode if file input is detected
- if (options.iframe !== false && (fileInputs || options.iframe || multipart)) {
- // hack to fix Safari hang (thanks to Tim Molendijk for this)
- // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
- if (options.closeKeepAlive) {
- $.get(options.closeKeepAlive, fileUpload);
- }
- else {
- fileUpload();
- }
- }
- else {
- $.ajax(options);
- }
-
- // fire 'notify' event
- this.trigger('form-submit-notify', [this, options]);
- return this;
-
-
- // private function for handling file uploads (hat tip to YAHOO!)
- function fileUpload() {
- var form = $form[0];
-
- if ($(':input[name=submit],:input[id=submit]', form).length) {
- // if there is an input with a name or id of 'submit' then we won't be
- // able to invoke the submit fn on the form (at least not x-browser)
- alert('Error: Form elements must not have name or id of "submit".');
- return;
- }
-
- var s = $.extend(true, {}, $.ajaxSettings, options);
- s.context = s.context || s;
- var id = 'jqFormIO' + (new Date().getTime()), fn = '_'+id;
- window[fn] = function() {
- var f = $io.data('form-plugin-onload');
- if (f) {
- f();
- window[fn] = undefined;
- try { delete window[fn]; } catch(e){}
- }
- }
- var $io = $('');
- var io = $io[0];
-
- $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });
-
- var xhr = { // mock object
- aborted: 0,
- responseText: null,
- responseXML: null,
- status: 0,
- statusText: 'n/a',
- getAllResponseHeaders: function() {},
- getResponseHeader: function() {},
- setRequestHeader: function() {},
- abort: function() {
- this.aborted = 1;
- $io.attr('src', s.iframeSrc); // abort op in progress
- }
- };
-
- var g = s.global;
- // trigger ajax global events so that activity/block indicators work like normal
- if (g && ! $.active++) {
- $.event.trigger("ajaxStart");
- }
- if (g) {
- $.event.trigger("ajaxSend", [xhr, s]);
- }
-
- if (s.beforeSend && s.beforeSend.call(s.context, xhr, s) === false) {
- if (s.global) {
- $.active--;
- }
- return;
- }
- if (xhr.aborted) {
- return;
- }
-
- var cbInvoked = false;
- var timedOut = 0;
-
- // add submitting element to data if we know it
- var sub = form.clk;
- if (sub) {
- var n = sub.name;
- if (n && !sub.disabled) {
- s.extraData = s.extraData || {};
- s.extraData[n] = sub.value;
- if (sub.type == "image") {
- s.extraData[n+'.x'] = form.clk_x;
- s.extraData[n+'.y'] = form.clk_y;
- }
- }
- }
-
- // take a breath so that pending repaints get some cpu time before the upload starts
- function doSubmit() {
- // make sure form attrs are set
- var t = $form.attr('target'), a = $form.attr('action');
-
- // update form attrs in IE friendly way
- form.setAttribute('target',id);
- if (form.getAttribute('method') != 'POST') {
- form.setAttribute('method', 'POST');
- }
- if (form.getAttribute('action') != s.url) {
- form.setAttribute('action', s.url);
- }
-
- // ie borks in some cases when setting encoding
- if (! s.skipEncodingOverride) {
- $form.attr({
- encoding: 'multipart/form-data',
- enctype: 'multipart/form-data'
- });
- }
-
- // support timout
- if (s.timeout) {
- setTimeout(function() { timedOut = true; cb(); }, s.timeout);
- }
-
- // add "extra" data to form if provided in options
- var extraInputs = [];
- try {
- if (s.extraData) {
- for (var n in s.extraData) {
- extraInputs.push(
- $('')
- .appendTo(form)[0]);
- }
- }
-
- // add iframe to doc and submit the form
- $io.appendTo('body');
- $io.data('form-plugin-onload', cb);
- form.submit();
- }
- finally {
- // reset attrs and remove "extra" input elements
- form.setAttribute('action',a);
- if(t) {
- form.setAttribute('target', t);
- } else {
- $form.removeAttr('target');
- }
- $(extraInputs).remove();
- }
- }
-
- if (s.forceSync) {
- doSubmit();
- }
- else {
- setTimeout(doSubmit, 10); // this lets dom updates render
- }
-
- var data, doc, domCheckCount = 50;
-
- function cb() {
- if (cbInvoked) {
- return;
- }
-
- $io.removeData('form-plugin-onload');
-
- var ok = true;
- try {
- if (timedOut) {
- throw 'timeout';
- }
- // extract the server response from the iframe
- doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;
-
- var isXml = s.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);
- log('isXml='+isXml);
- if (!isXml && window.opera && (doc.body == null || doc.body.innerHTML == '')) {
- if (--domCheckCount) {
- // in some browsers (Opera) the iframe DOM is not always traversable when
- // the onload callback fires, so we loop a bit to accommodate
- log('requeing onLoad callback, DOM not available');
- setTimeout(cb, 250);
- return;
- }
- // let this fall through because server response could be an empty document
- //log('Could not access iframe DOM after mutiple tries.');
- //throw 'DOMException: not available';
- }
-
- //log('response detected');
- cbInvoked = true;
- xhr.responseText = doc.documentElement ? doc.documentElement.innerHTML : null;
- xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
- xhr.getResponseHeader = function(header){
- var headers = {'content-type': s.dataType};
- return headers[header];
- };
-
- var scr = /(json|script)/.test(s.dataType);
- if (scr || s.textarea) {
- // see if user embedded response in textarea
- var ta = doc.getElementsByTagName('textarea')[0];
- if (ta) {
- xhr.responseText = ta.value;
- }
- else if (scr) {
- // account for browsers injecting pre around json response
- var pre = doc.getElementsByTagName('pre')[0];
- var b = doc.getElementsByTagName('body')[0];
- if (pre) {
- xhr.responseText = pre.innerHTML;
- }
- else if (b) {
- xhr.responseText = b.innerHTML;
- }
- }
- }
- else if (s.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
- xhr.responseXML = toXml(xhr.responseText);
- }
- data = $.httpData(xhr, s.dataType);
- }
- catch(e){
- log('error caught:',e);
- ok = false;
- xhr.error = e;
- $.handleError(s, xhr, 'error', e);
- }
-
- // ordering of these callbacks/triggers is odd, but that's how $.ajax does it
- if (ok) {
- s.success.call(s.context, data, 'success', xhr);
- if (g) {
- $.event.trigger("ajaxSuccess", [xhr, s]);
- }
- }
- if (g) {
- $.event.trigger("ajaxComplete", [xhr, s]);
- }
- if (g && ! --$.active) {
- $.event.trigger("ajaxStop");
- }
- if (s.complete) {
- s.complete.call(s.context, xhr, ok ? 'success' : 'error');
- }
-
- // clean up
- setTimeout(function() {
- $io.removeData('form-plugin-onload');
- $io.remove();
- xhr.responseXML = null;
- }, 100);
- }
-
- function toXml(s, doc) {
- if (window.ActiveXObject) {
- doc = new ActiveXObject('Microsoft.XMLDOM');
- doc.async = 'false';
- doc.loadXML(s);
- }
- else {
- doc = (new DOMParser()).parseFromString(s, 'text/xml');
- }
- return (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;
- }
- }
-};
-
-/**
- * ajaxForm() provides a mechanism for fully automating form submission.
- *
- * The advantages of using this method instead of ajaxSubmit() are:
- *
- * 1: This method will include coordinates for elements (if the element
- * is used to submit the form).
- * 2. This method will include the submit element's name/value data (for the element that was
- * used to submit the form).
- * 3. This method binds the submit() method to the form for you.
- *
- * The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely
- * passes the options argument along after properly binding events for submit elements and
- * the form itself.
- */
-$.fn.ajaxForm = function(options) {
- // in jQuery 1.3+ we can fix mistakes with the ready state
- if (this.length === 0) {
- var o = { s: this.selector, c: this.context };
- if (!$.isReady && o.s) {
- log('DOM not ready, queuing ajaxForm');
- $(function() {
- $(o.s,o.c).ajaxForm(options);
- });
- return this;
- }
- // is your DOM ready? http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
- log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
- return this;
- }
-
- return this.ajaxFormUnbind().bind('submit.form-plugin', function(e) {
- if (!e.isDefaultPrevented()) { // if event has been canceled, don't proceed
- e.preventDefault();
- $(this).ajaxSubmit(options);
- }
- }).bind('click.form-plugin', function(e) {
- var target = e.target;
- var $el = $(target);
- if (!($el.is(":submit,input:image"))) {
- // is this a child element of the submit el? (ex: a span within a button)
- var t = $el.closest(':submit');
- if (t.length == 0) {
- return;
- }
- target = t[0];
- }
- var form = this;
- form.clk = target;
- if (target.type == 'image') {
- if (e.offsetX != undefined) {
- form.clk_x = e.offsetX;
- form.clk_y = e.offsetY;
- } else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
- var offset = $el.offset();
- form.clk_x = e.pageX - offset.left;
- form.clk_y = e.pageY - offset.top;
- } else {
- form.clk_x = e.pageX - target.offsetLeft;
- form.clk_y = e.pageY - target.offsetTop;
- }
- }
- // clear form vars
- setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);
- });
-};
-
-// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
-$.fn.ajaxFormUnbind = function() {
- return this.unbind('submit.form-plugin click.form-plugin');
-};
-
-/**
- * formToArray() gathers form element data into an array of objects that can
- * be passed to any of the following ajax functions: $.get, $.post, or load.
- * Each object in the array has both a 'name' and 'value' property. An example of
- * an array for a simple login form might be:
- *
- * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
- *
- * It is this array that is passed to pre-submit callback functions provided to the
- * ajaxSubmit() and ajaxForm() methods.
- */
-$.fn.formToArray = function(semantic) {
- var a = [];
- if (this.length === 0) {
- return a;
- }
-
- var form = this[0];
- var els = semantic ? form.getElementsByTagName('*') : form.elements;
- if (!els) {
- return a;
- }
-
- var i,j,n,v,el,max,jmax;
- for(i=0, max=els.length; i < max; i++) {
- el = els[i];
- n = el.name;
- if (!n) {
- continue;
- }
-
- if (semantic && form.clk && el.type == "image") {
- // handle image inputs on the fly when semantic == true
- if(!el.disabled && form.clk == el) {
- a.push({name: n, value: $(el).val()});
- a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
- }
- continue;
- }
-
- v = $.fieldValue(el, true);
- if (v && v.constructor == Array) {
- for(j=0, jmax=v.length; j < jmax; j++) {
- a.push({name: n, value: v[j]});
- }
- }
- else if (v !== null && typeof v != 'undefined') {
- a.push({name: n, value: v});
- }
- }
-
- if (!semantic && form.clk) {
- // input type=='image' are not found in elements array! handle it here
- var $input = $(form.clk), input = $input[0];
- n = input.name;
- if (n && !input.disabled && input.type == 'image') {
- a.push({name: n, value: $input.val()});
- a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
- }
- }
- return a;
-};
-
-/**
- * Serializes form data into a 'submittable' string. This method will return a string
- * in the format: name1=value1&name2=value2
- */
-$.fn.formSerialize = function(semantic) {
- //hand off to jQuery.param for proper encoding
- return $.param(this.formToArray(semantic));
-};
-
-/**
- * Serializes all field elements in the jQuery object into a query string.
- * This method will return a string in the format: name1=value1&name2=value2
- */
-$.fn.fieldSerialize = function(successful) {
- var a = [];
- this.each(function() {
- var n = this.name;
- if (!n) {
- return;
- }
- var v = $.fieldValue(this, successful);
- if (v && v.constructor == Array) {
- for (var i=0,max=v.length; i < max; i++) {
- a.push({name: n, value: v[i]});
- }
- }
- else if (v !== null && typeof v != 'undefined') {
- a.push({name: this.name, value: v});
- }
- });
- //hand off to jQuery.param for proper encoding
- return $.param(a);
-};
-
-/**
- * Returns the value(s) of the element in the matched set. For example, consider the following form:
- *
- *
- *
- * var v = $(':text').fieldValue();
- * // if no values are entered into the text inputs
- * v == ['','']
- * // if values entered into the text inputs are 'foo' and 'bar'
- * v == ['foo','bar']
- *
- * var v = $(':checkbox').fieldValue();
- * // if neither checkbox is checked
- * v === undefined
- * // if both checkboxes are checked
- * v == ['B1', 'B2']
- *
- * var v = $(':radio').fieldValue();
- * // if neither radio is checked
- * v === undefined
- * // if first radio is checked
- * v == ['C1']
- *
- * The successful argument controls whether or not the field element must be 'successful'
- * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
- * The default value of the successful argument is true. If this value is false the value(s)
- * for each element is returned.
- *
- * Note: This method *always* returns an array. If no valid value can be determined the
- * array will be empty, otherwise it will contain one or more values.
- */
-$.fn.fieldValue = function(successful) {
- for (var val=[], i=0, max=this.length; i < max; i++) {
- var el = this[i];
- var v = $.fieldValue(el, successful);
- if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length)) {
- continue;
- }
- v.constructor == Array ? $.merge(val, v) : val.push(v);
- }
- return val;
-};
-
-/**
- * Returns the value of the field element.
- */
-$.fieldValue = function(el, successful) {
- var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
- if (successful === undefined) {
- successful = true;
- }
-
- if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
- (t == 'checkbox' || t == 'radio') && !el.checked ||
- (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
- tag == 'select' && el.selectedIndex == -1)) {
- return null;
- }
-
- if (tag == 'select') {
- var index = el.selectedIndex;
- if (index < 0) {
- return null;
- }
- var a = [], ops = el.options;
- var one = (t == 'select-one');
- var max = (one ? index+1 : ops.length);
- for(var i=(one ? index : 0); i < max; i++) {
- var op = ops[i];
- if (op.selected) {
- var v = op.value;
- if (!v) { // extra pain for IE...
- v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;
- }
- if (one) {
- return v;
- }
- a.push(v);
- }
- }
- return a;
- }
- return $(el).val();
-};
-
-/**
- * Clears the form data. Takes the following actions on the form's input fields:
- * - input text fields will have their 'value' property set to the empty string
- * - select elements will have their 'selectedIndex' property set to -1
- * - checkbox and radio inputs will have their 'checked' property set to false
- * - inputs of type submit, button, reset, and hidden will *not* be effected
- * - button elements will *not* be effected
- */
-$.fn.clearForm = function() {
- return this.each(function() {
- $('input,select,textarea', this).clearFields();
- });
-};
-
-/**
- * Clears the selected form elements.
- */
-$.fn.clearFields = $.fn.clearInputs = function() {
- return this.each(function() {
- var t = this.type, tag = this.tagName.toLowerCase();
- if (t == 'text' || t == 'password' || tag == 'textarea') {
- this.value = '';
- }
- else if (t == 'checkbox' || t == 'radio') {
- this.checked = false;
- }
- else if (tag == 'select') {
- this.selectedIndex = -1;
- }
- });
-};
-
-/**
- * Resets the form data. Causes all form elements to be reset to their original value.
- */
-$.fn.resetForm = function() {
- return this.each(function() {
- // guard against an input with the name of 'reset'
- // note that IE reports the reset function as an 'object'
- if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType)) {
- this.reset();
- }
- });
-};
-
-/**
- * Enables or disables any matching elements.
- */
-$.fn.enable = function(b) {
- if (b === undefined) {
- b = true;
- }
- return this.each(function() {
- this.disabled = !b;
- });
-};
-
-/**
- * Checks/unchecks any matching checkboxes or radio buttons and
- * selects/deselects and matching option elements.
- */
-$.fn.selected = function(select) {
- if (select === undefined) {
- select = true;
- }
- return this.each(function() {
- var t = this.type;
- if (t == 'checkbox' || t == 'radio') {
- this.checked = select;
- }
- else if (this.tagName.toLowerCase() == 'option') {
- var $sel = $(this).parent('select');
- if (select && $sel[0] && $sel[0].type == 'select-one') {
- // deselect all other options
- $sel.find('option').selected(false);
- }
- this.selected = select;
- }
- });
-};
-
-// helper fn for console logging
-// set $.fn.ajaxSubmit.debug to true to enable debug logging
-function log() {
- if ($.fn.ajaxSubmit.debug) {
- var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');
- if (window.console && window.console.log) {
- window.console.log(msg);
- }
- else if (window.opera && window.opera.postError) {
- window.opera.postError(msg);
- }
- }
-};
-
-})(jQuery);
+/*
+ * jQuery Form Plugin
+ * version: 2.17 (06-NOV-2008)
+ * @requires jQuery v1.2.2 or later
+ *
+ * Examples and documentation at: http://malsup.com/jquery/form/
+ * Dual licensed under the MIT and GPL licenses:
+ * http://www.opensource.org/licenses/mit-license.php
+ * http://www.gnu.org/licenses/gpl.html
+ *
+ * Revision: $Id$
+ */
+;(function($) {
+
+/*
+ Usage Note:
+ -----------
+ Do not use both ajaxSubmit and ajaxForm on the same form. These
+ functions are intended to be exclusive. Use ajaxSubmit if you want
+ to bind your own submit handler to the form. For example,
+
+ $(document).ready(function() {
+ $('#myForm').bind('submit', function() {
+ $(this).ajaxSubmit({
+ target: '#output'
+ });
+ return false; // <-- important!
+ });
+ });
+
+ Use ajaxForm when you want the plugin to manage all the event binding
+ for you. For example,
+
+ $(document).ready(function() {
+ $('#myForm').ajaxForm({
+ target: '#output'
+ });
+ });
+
+ When using ajaxForm, the ajaxSubmit function will be invoked for you
+ at the appropriate time.
+*/
+
+/**
+ * ajaxSubmit() provides a mechanism for immediately submitting
+ * an HTML form using AJAX.
+ */
+$.fn.ajaxSubmit = function(options) {
+ // fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
+ if (!this.length) {
+ log('ajaxSubmit: skipping submit process - no element selected');
+ return this;
+ }
+
+ if (typeof options == 'function')
+ options = { success: options };
+
+ options = $.extend({
+ url: this.attr('action') || window.location.toString(),
+ type: this.attr('method') || 'GET'
+ }, options || {});
+
+ // hook for manipulating the form data before it is extracted;
+ // convenient for use with rich editors like tinyMCE or FCKEditor
+ var veto = {};
+ this.trigger('form-pre-serialize', [this, options, veto]);
+ if (veto.veto) {
+ log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
+ return this;
+ }
+
+ // provide opportunity to alter form data before it is serialized
+ if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
+ log('ajaxSubmit: submit aborted via beforeSerialize callback');
+ return this;
+ }
+
+ var a = this.formToArray(options.semantic);
+ if (options.data) {
+ options.extraData = options.data;
+ for (var n in options.data) {
+ if(options.data[n] instanceof Array) {
+ for (var k in options.data[n])
+ a.push( { name: n, value: options.data[n][k] } )
+ }
+ else
+ a.push( { name: n, value: options.data[n] } );
+ }
+ }
+
+ // give pre-submit callback an opportunity to abort the submit
+ if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
+ log('ajaxSubmit: submit aborted via beforeSubmit callback');
+ return this;
+ }
+
+ // fire vetoable 'validate' event
+ this.trigger('form-submit-validate', [a, this, options, veto]);
+ if (veto.veto) {
+ log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
+ return this;
+ }
+
+ var q = $.param(a);
+
+ if (options.type.toUpperCase() == 'GET') {
+ options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
+ options.data = null; // data is null for 'get'
+ }
+ else
+ options.data = q; // data is the query string for 'post'
+
+ var $form = this, callbacks = [];
+ if (options.resetForm) callbacks.push(function() { $form.resetForm(); });
+ if (options.clearForm) callbacks.push(function() { $form.clearForm(); });
+
+ // perform a load on the target only if dataType is not provided
+ if (!options.dataType && options.target) {
+ var oldSuccess = options.success || function(){};
+ callbacks.push(function(data) {
+ $(options.target).html(data).each(oldSuccess, arguments);
+ });
+ }
+ else if (options.success)
+ callbacks.push(options.success);
+
+ options.success = function(data, status) {
+ for (var i=0, max=callbacks.length; i < max; i++)
+ callbacks[i].apply(options, [data, status, $form]);
+ };
+
+ // are there files to upload?
+ var files = $('input:file', this).fieldValue();
+ var found = false;
+ for (var j=0; j < files.length; j++)
+ if (files[j])
+ found = true;
+
+ // options.iframe allows user to force iframe mode
+ if (options.iframe || found) {
+ // hack to fix Safari hang (thanks to Tim Molendijk for this)
+ // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
+ if ($.browser.safari && options.closeKeepAlive)
+ $.get(options.closeKeepAlive, fileUpload);
+ else
+ fileUpload();
+ }
+ else
+ $.ajax(options);
+
+ // fire 'notify' event
+ this.trigger('form-submit-notify', [this, options]);
+ return this;
+
+
+ // private function for handling file uploads (hat tip to YAHOO!)
+ function fileUpload() {
+ var form = $form[0];
+
+ if ($(':input[name=submit]', form).length) {
+ alert('Error: Form elements must not be named "submit".');
+ return;
+ }
+
+ var opts = $.extend({}, $.ajaxSettings, options);
+ var s = jQuery.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts);
+
+ var id = 'jqFormIO' + (new Date().getTime());
+ var $io = $('');
+ var io = $io[0];
+
+ if ($.browser.msie || $.browser.opera)
+ io.src = 'javascript:false;document.write("");';
+ $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });
+
+ var xhr = { // mock object
+ aborted: 0,
+ responseText: null,
+ responseXML: null,
+ status: 0,
+ statusText: 'n/a',
+ getAllResponseHeaders: function() {},
+ getResponseHeader: function() {},
+ setRequestHeader: function() {},
+ abort: function() {
+ this.aborted = 1;
+ $io.attr('src','about:blank'); // abort op in progress
+ }
+ };
+
+ var g = opts.global;
+ // trigger ajax global events so that activity/block indicators work like normal
+ if (g && ! $.active++) $.event.trigger("ajaxStart");
+ if (g) $.event.trigger("ajaxSend", [xhr, opts]);
+
+ if (s.beforeSend && s.beforeSend(xhr, s) === false) {
+ s.global && jQuery.active--;
+ return;
+ }
+ if (xhr.aborted)
+ return;
+
+ var cbInvoked = 0;
+ var timedOut = 0;
+
+ // add submitting element to data if we know it
+ var sub = form.clk;
+ if (sub) {
+ var n = sub.name;
+ if (n && !sub.disabled) {
+ options.extraData = options.extraData || {};
+ options.extraData[n] = sub.value;
+ if (sub.type == "image") {
+ options.extraData[name+'.x'] = form.clk_x;
+ options.extraData[name+'.y'] = form.clk_y;
+ }
+ }
+ }
+
+ // take a breath so that pending repaints get some cpu time before the upload starts
+ setTimeout(function() {
+ // make sure form attrs are set
+ var t = $form.attr('target'), a = $form.attr('action');
+ $form.attr({
+ target: id,
+ method: 'POST',
+ action: opts.url
+ });
+
+ // ie borks in some cases when setting encoding
+ if (! options.skipEncodingOverride) {
+ $form.attr({
+ encoding: 'multipart/form-data',
+ enctype: 'multipart/form-data'
+ });
+ }
+
+ // support timout
+ if (opts.timeout)
+ setTimeout(function() { timedOut = true; cb(); }, opts.timeout);
+
+ // add "extra" data to form if provided in options
+ var extraInputs = [];
+ try {
+ if (options.extraData)
+ for (var n in options.extraData)
+ extraInputs.push(
+ $('')
+ .appendTo(form)[0]);
+
+ // add iframe to doc and submit the form
+ $io.appendTo('body');
+ io.attachEvent ? io.attachEvent('onload', cb) : io.addEventListener('load', cb, false);
+ form.submit();
+ }
+ finally {
+ // reset attrs and remove "extra" input elements
+ $form.attr('action', a);
+ t ? $form.attr('target', t) : $form.removeAttr('target');
+ $(extraInputs).remove();
+ }
+ }, 10);
+
+ function cb() {
+ if (cbInvoked++) return;
+
+ io.detachEvent ? io.detachEvent('onload', cb) : io.removeEventListener('load', cb, false);
+
+ var operaHack = 0;
+ var ok = true;
+ try {
+ if (timedOut) throw 'timeout';
+ // extract the server response from the iframe
+ var data, doc;
+
+ doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;
+
+ if (doc.body == null && !operaHack && $.browser.opera) {
+ // In Opera 9.2.x the iframe DOM is not always traversable when
+ // the onload callback fires so we give Opera 100ms to right itself
+ operaHack = 1;
+ cbInvoked--;
+ setTimeout(cb, 100);
+ return;
+ }
+
+ xhr.responseText = doc.body ? doc.body.innerHTML : null;
+ xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
+ xhr.getResponseHeader = function(header){
+ var headers = {'content-type': opts.dataType};
+ return headers[header];
+ };
+
+ if (opts.dataType == 'json' || opts.dataType == 'script') {
+ var ta = doc.getElementsByTagName('textarea')[0];
+ xhr.responseText = ta ? ta.value : xhr.responseText;
+ }
+ else if (opts.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
+ xhr.responseXML = toXml(xhr.responseText);
+ }
+ data = $.httpData(xhr, opts.dataType);
+ }
+ catch(e){
+ ok = false;
+ $.handleError(opts, xhr, 'error', e);
+ }
+
+ // ordering of these callbacks/triggers is odd, but that's how $.ajax does it
+ if (ok) {
+ opts.success(data, 'success');
+ if (g) $.event.trigger("ajaxSuccess", [xhr, opts]);
+ }
+ if (g) $.event.trigger("ajaxComplete", [xhr, opts]);
+ if (g && ! --$.active) $.event.trigger("ajaxStop");
+ if (opts.complete) opts.complete(xhr, ok ? 'success' : 'error');
+
+ // clean up
+ setTimeout(function() {
+ $io.remove();
+ xhr.responseXML = null;
+ }, 100);
+ };
+
+ function toXml(s, doc) {
+ if (window.ActiveXObject) {
+ doc = new ActiveXObject('Microsoft.XMLDOM');
+ doc.async = 'false';
+ doc.loadXML(s);
+ }
+ else
+ doc = (new DOMParser()).parseFromString(s, 'text/xml');
+ return (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;
+ };
+ };
+};
+
+/**
+ * ajaxForm() provides a mechanism for fully automating form submission.
+ *
+ * The advantages of using this method instead of ajaxSubmit() are:
+ *
+ * 1: This method will include coordinates for elements (if the element
+ * is used to submit the form).
+ * 2. This method will include the submit element's name/value data (for the element that was
+ * used to submit the form).
+ * 3. This method binds the submit() method to the form for you.
+ *
+ * The options argument for ajaxForm works exactly as it does for ajaxSubmit. ajaxForm merely
+ * passes the options argument along after properly binding events for submit elements and
+ * the form itself.
+ */
+$.fn.ajaxForm = function(options) {
+ return this.ajaxFormUnbind().bind('submit.form-plugin',function() {
+ $(this).ajaxSubmit(options);
+ return false;
+ }).each(function() {
+ // store options in hash
+ $(":submit,input:image", this).bind('click.form-plugin',function(e) {
+ var form = this.form;
+ form.clk = this;
+ if (this.type == 'image') {
+ if (e.offsetX != undefined) {
+ form.clk_x = e.offsetX;
+ form.clk_y = e.offsetY;
+ } else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
+ var offset = $(this).offset();
+ form.clk_x = e.pageX - offset.left;
+ form.clk_y = e.pageY - offset.top;
+ } else {
+ form.clk_x = e.pageX - this.offsetLeft;
+ form.clk_y = e.pageY - this.offsetTop;
+ }
+ }
+ // clear form vars
+ setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 10);
+ });
+ });
+};
+
+// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
+$.fn.ajaxFormUnbind = function() {
+ this.unbind('submit.form-plugin');
+ return this.each(function() {
+ $(":submit,input:image", this).unbind('click.form-plugin');
+ });
+
+};
+
+/**
+ * formToArray() gathers form element data into an array of objects that can
+ * be passed to any of the following ajax functions: $.get, $.post, or load.
+ * Each object in the array has both a 'name' and 'value' property. An example of
+ * an array for a simple login form might be:
+ *
+ * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
+ *
+ * It is this array that is passed to pre-submit callback functions provided to the
+ * ajaxSubmit() and ajaxForm() methods.
+ */
+$.fn.formToArray = function(semantic) {
+ var a = [];
+ if (this.length == 0) return a;
+
+ var form = this[0];
+ var els = semantic ? form.getElementsByTagName('*') : form.elements;
+ if (!els) return a;
+ for(var i=0, max=els.length; i < max; i++) {
+ var el = els[i];
+ var n = el.name;
+ if (!n) continue;
+
+ if (semantic && form.clk && el.type == "image") {
+ // handle image inputs on the fly when semantic == true
+ if(!el.disabled && form.clk == el)
+ a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
+ continue;
+ }
+
+ var v = $.fieldValue(el, true);
+ if (v && v.constructor == Array) {
+ for(var j=0, jmax=v.length; j < jmax; j++)
+ a.push({name: n, value: v[j]});
+ }
+ else if (v !== null && typeof v != 'undefined')
+ a.push({name: n, value: v});
+ }
+
+ if (!semantic && form.clk) {
+ // input type=='image' are not found in elements array! handle them here
+ var inputs = form.getElementsByTagName("input");
+ for(var i=0, max=inputs.length; i < max; i++) {
+ var input = inputs[i];
+ var n = input.name;
+ if(n && !input.disabled && input.type == "image" && form.clk == input)
+ a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
+ }
+ }
+ return a;
+};
+
+/**
+ * Serializes form data into a 'submittable' string. This method will return a string
+ * in the format: name1=value1&name2=value2
+ */
+$.fn.formSerialize = function(semantic) {
+ //hand off to jQuery.param for proper encoding
+ return $.param(this.formToArray(semantic));
+};
+
+/**
+ * Serializes all field elements in the jQuery object into a query string.
+ * This method will return a string in the format: name1=value1&name2=value2
+ */
+$.fn.fieldSerialize = function(successful) {
+ var a = [];
+ this.each(function() {
+ var n = this.name;
+ if (!n) return;
+ var v = $.fieldValue(this, successful);
+ if (v && v.constructor == Array) {
+ for (var i=0,max=v.length; i < max; i++)
+ a.push({name: n, value: v[i]});
+ }
+ else if (v !== null && typeof v != 'undefined')
+ a.push({name: this.name, value: v});
+ });
+ //hand off to jQuery.param for proper encoding
+ return $.param(a);
+};
+
+/**
+ * Returns the value(s) of the element in the matched set. For example, consider the following form:
+ *
+ *
+ *
+ * var v = $(':text').fieldValue();
+ * // if no values are entered into the text inputs
+ * v == ['','']
+ * // if values entered into the text inputs are 'foo' and 'bar'
+ * v == ['foo','bar']
+ *
+ * var v = $(':checkbox').fieldValue();
+ * // if neither checkbox is checked
+ * v === undefined
+ * // if both checkboxes are checked
+ * v == ['B1', 'B2']
+ *
+ * var v = $(':radio').fieldValue();
+ * // if neither radio is checked
+ * v === undefined
+ * // if first radio is checked
+ * v == ['C1']
+ *
+ * The successful argument controls whether or not the field element must be 'successful'
+ * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
+ * The default value of the successful argument is true. If this value is false the value(s)
+ * for each element is returned.
+ *
+ * Note: This method *always* returns an array. If no valid value can be determined the
+ * array will be empty, otherwise it will contain one or more values.
+ */
+$.fn.fieldValue = function(successful) {
+ for (var val=[], i=0, max=this.length; i < max; i++) {
+ var el = this[i];
+ var v = $.fieldValue(el, successful);
+ if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length))
+ continue;
+ v.constructor == Array ? $.merge(val, v) : val.push(v);
+ }
+ return val;
+};
+
+/**
+ * Returns the value of the field element.
+ */
+$.fieldValue = function(el, successful) {
+ var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
+ if (typeof successful == 'undefined') successful = true;
+
+ if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
+ (t == 'checkbox' || t == 'radio') && !el.checked ||
+ (t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
+ tag == 'select' && el.selectedIndex == -1))
+ return null;
+
+ if (tag == 'select') {
+ var index = el.selectedIndex;
+ if (index < 0) return null;
+ var a = [], ops = el.options;
+ var one = (t == 'select-one');
+ var max = (one ? index+1 : ops.length);
+ for(var i=(one ? index : 0); i < max; i++) {
+ var op = ops[i];
+ if (op.selected) {
+ // extra pain for IE...
+ var v = $.browser.msie && !(op.attributes['value'].specified) ? op.text : op.value;
+ if (one) return v;
+ a.push(v);
+ }
+ }
+ return a;
+ }
+ return el.value;
+};
+
+/**
+ * Clears the form data. Takes the following actions on the form's input fields:
+ * - input text fields will have their 'value' property set to the empty string
+ * - select elements will have their 'selectedIndex' property set to -1
+ * - checkbox and radio inputs will have their 'checked' property set to false
+ * - inputs of type submit, button, reset, and hidden will *not* be effected
+ * - button elements will *not* be effected
+ */
+$.fn.clearForm = function() {
+ return this.each(function() {
+ $('input,select,textarea', this).clearFields();
+ });
+};
+
+/**
+ * Clears the selected form elements.
+ */
+$.fn.clearFields = $.fn.clearInputs = function() {
+ return this.each(function() {
+ var t = this.type, tag = this.tagName.toLowerCase();
+ if (t == 'file' || t == 'text' || t == 'password' || tag == 'textarea')
+ this.value = '';
+ else if (t == 'checkbox' || t == 'radio')
+ this.checked = false;
+ else if (tag == 'select')
+ this.selectedIndex = -1;
+ });
+};
+
+/**
+ * Resets the form data. Causes all form elements to be reset to their original value.
+ */
+$.fn.resetForm = function() {
+ return this.each(function() {
+ // guard against an input with the name of 'reset'
+ // note that IE reports the reset function as an 'object'
+ if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType))
+ this.reset();
+ });
+};
+
+/**
+ * Enables or disables any matching elements.
+ */
+$.fn.enable = function(b) {
+ if (b == undefined) b = true;
+ return this.each(function() {
+ this.disabled = !b
+ });
+};
+
+/**
+ * Checks/unchecks any matching checkboxes or radio buttons and
+ * selects/deselects and matching option elements.
+ */
+$.fn.selected = function(select) {
+ if (select == undefined) select = true;
+ return this.each(function() {
+ var t = this.type;
+ if (t == 'checkbox' || t == 'radio')
+ this.checked = select;
+ else if (this.tagName.toLowerCase() == 'option') {
+ var $sel = $(this).parent('select');
+ if (select && $sel[0] && $sel[0].type == 'select-one') {
+ // deselect all other options
+ $sel.find('option').selected(false);
+ }
+ this.selected = select;
+ }
+ });
+};
+
+// helper fn for console logging
+// set $.fn.ajaxSubmit.debug to true to enable debug logging
+function log() {
+ if ($.fn.ajaxSubmit.debug && window.console && window.console.log)
+ window.console.log('[jquery.form] ' + Array.prototype.join.call(arguments,''));
+};
+
+})(jQuery);
diff --git a/js/jquery.form.min.js b/js/jquery.form.min.js
index 04c26a6ece..b6a0ed1eb2 100644
--- a/js/jquery.form.min.js
+++ b/js/jquery.form.min.js
@@ -1,11 +1 @@
-/*
- * jQuery Form Plugin
- * version: 2.49 (18-OCT-2010)
- * @requires jQuery v1.3.2 or later
- *
- * Examples and documentation at: http://malsup.com/jquery/form/
- * Dual licensed under the MIT and GPL licenses:
- * http://www.opensource.org/licenses/mit-license.php
- * http://www.gnu.org/licenses/gpl.html
- */
-(function(b){b.fn.ajaxSubmit=function(s){if(!this.length){a("ajaxSubmit: skipping submit process - no element selected");return this}if(typeof s=="function"){s={success:s}}var d=b.trim(this.attr("action"));if(d){d=(d.match(/^([^#]+)/)||[])[1]}d=d||window.location.href||"";s=b.extend(true,{url:d,type:this.attr("method")||"GET",iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank"},s);var t={};this.trigger("form-pre-serialize",[this,s,t]);if(t.veto){a("ajaxSubmit: submit vetoed via form-pre-serialize trigger");return this}if(s.beforeSerialize&&s.beforeSerialize(this,s)===false){a("ajaxSubmit: submit aborted via beforeSerialize callback");return this}var f,o,l=this.formToArray(s.semantic);if(s.data){s.extraData=s.data;for(f in s.data){if(s.data[f] instanceof Array){for(var h in s.data[f]){l.push({name:f,value:s.data[f][h]})}}else{o=s.data[f];o=b.isFunction(o)?o():o;l.push({name:f,value:o})}}}if(s.beforeSubmit&&s.beforeSubmit(l,this,s)===false){a("ajaxSubmit: submit aborted via beforeSubmit callback");return this}this.trigger("form-submit-validate",[l,this,s,t]);if(t.veto){a("ajaxSubmit: submit vetoed via form-submit-validate trigger");return this}var c=b.param(l);if(s.type.toUpperCase()=="GET"){s.url+=(s.url.indexOf("?")>=0?"&":"?")+c;s.data=null}else{s.data=c}var r=this,j=[];if(s.resetForm){j.push(function(){r.resetForm()})}if(s.clearForm){j.push(function(){r.clearForm()})}if(!s.dataType&&s.target){var p=s.success||function(){};j.push(function(n){var k=s.replaceTarget?"replaceWith":"html";b(s.target)[k](n).each(p,arguments)})}else{if(s.success){j.push(s.success)}}s.success=function(v,n,w){var u=s.context||s;for(var q=0,k=j.length;q0;var e="multipart/form-data";var i=(r.attr("enctype")==e||r.attr("encoding")==e);if(s.iframe!==false&&(g||s.iframe||i)){if(s.closeKeepAlive){b.get(s.closeKeepAlive,m)}else{m()}}else{b.ajax(s)}this.trigger("form-submit-notify",[this,s]);return this;function m(){var k=r[0];if(b(":input[name=submit],:input[id=submit]",k).length){alert('Error: Form elements must not have name or id of "submit".');return}var y=b.extend(true,{},b.ajaxSettings,s);y.context=y.context||y;var B="jqFormIO"+(new Date().getTime()),w="_"+B;window[w]=function(){var n=q.data("form-plugin-onload");if(n){n();window[w]=undefined;try{delete window[w]}catch(K){}}};var q=b('');var x=q[0];q.css({position:"absolute",top:"-1000px",left:"-1000px"});var u={aborted:0,responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(){this.aborted=1;q.attr("src",y.iframeSrc)}};var G=y.global;if(G&&!b.active++){b.event.trigger("ajaxStart")}if(G){b.event.trigger("ajaxSend",[u,y])}if(y.beforeSend&&y.beforeSend.call(y.context,u,y)===false){if(y.global){b.active--}return}if(u.aborted){return}var C=false;var F=0;var v=k.clk;if(v){var D=v.name;if(D&&!v.disabled){y.extraData=y.extraData||{};y.extraData[D]=v.value;if(v.type=="image"){y.extraData[D+".x"]=k.clk_x;y.extraData[D+".y"]=k.clk_y}}}function E(){var M=r.attr("target"),K=r.attr("action");k.setAttribute("target",B);if(k.getAttribute("method")!="POST"){k.setAttribute("method","POST")}if(k.getAttribute("action")!=y.url){k.setAttribute("action",y.url)}if(!y.skipEncodingOverride){r.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"})}if(y.timeout){setTimeout(function(){F=true;A()},y.timeout)}var L=[];try{if(y.extraData){for(var N in y.extraData){L.push(b('').appendTo(k)[0])}}q.appendTo("body");q.data("form-plugin-onload",A);k.submit()}finally{k.setAttribute("action",K);if(M){k.setAttribute("target",M)}else{r.removeAttr("target")}b(L).remove()}}if(y.forceSync){E()}else{setTimeout(E,10)}var I,J,H=50;function A(){if(C){return}q.removeData("form-plugin-onload");var L=true;try{if(F){throw"timeout"}J=x.contentWindow?x.contentWindow.document:x.contentDocument?x.contentDocument:x.document;var P=y.dataType=="xml"||J.XMLDocument||b.isXMLDoc(J);a("isXml="+P);if(!P&&window.opera&&(J.body==null||J.body.innerHTML=="")){if(--H){a("requeing onLoad callback, DOM not available");setTimeout(A,250);return}}C=true;u.responseText=J.documentElement?J.documentElement.innerHTML:null;u.responseXML=J.XMLDocument?J.XMLDocument:J;u.getResponseHeader=function(R){var Q={"content-type":y.dataType};return Q[R]};var O=/(json|script)/.test(y.dataType);if(O||y.textarea){var K=J.getElementsByTagName("textarea")[0];if(K){u.responseText=K.value}else{if(O){var N=J.getElementsByTagName("pre")[0];var n=J.getElementsByTagName("body")[0];if(N){u.responseText=N.innerHTML}else{if(n){u.responseText=n.innerHTML}}}}}else{if(y.dataType=="xml"&&!u.responseXML&&u.responseText!=null){u.responseXML=z(u.responseText)}}I=b.httpData(u,y.dataType)}catch(M){a("error caught:",M);L=false;u.error=M;b.handleError(y,u,"error",M)}if(L){y.success.call(y.context,I,"success",u);if(G){b.event.trigger("ajaxSuccess",[u,y])}}if(G){b.event.trigger("ajaxComplete",[u,y])}if(G&&!--b.active){b.event.trigger("ajaxStop")}if(y.complete){y.complete.call(y.context,u,L?"success":"error")}setTimeout(function(){q.removeData("form-plugin-onload");q.remove();u.responseXML=null},100)}function z(n,K){if(window.ActiveXObject){K=new ActiveXObject("Microsoft.XMLDOM");K.async="false";K.loadXML(n)}else{K=(new DOMParser()).parseFromString(n,"text/xml")}return(K&&K.documentElement&&K.documentElement.tagName!="parsererror")?K:null}}};b.fn.ajaxForm=function(c){if(this.length===0){var d={s:this.selector,c:this.context};if(!b.isReady&&d.s){a("DOM not ready, queuing ajaxForm");b(function(){b(d.s,d.c).ajaxForm(c)});return this}a("terminating; zero elements found by selector"+(b.isReady?"":" (DOM not ready)"));return this}return this.ajaxFormUnbind().bind("submit.form-plugin",function(f){if(!f.isDefaultPrevented()){f.preventDefault();b(this).ajaxSubmit(c)}}).bind("click.form-plugin",function(j){var i=j.target;var g=b(i);if(!(g.is(":submit,input:image"))){var f=g.closest(":submit");if(f.length==0){return}i=f[0]}var h=this;h.clk=i;if(i.type=="image"){if(j.offsetX!=undefined){h.clk_x=j.offsetX;h.clk_y=j.offsetY}else{if(typeof b.fn.offset=="function"){var k=g.offset();h.clk_x=j.pageX-k.left;h.clk_y=j.pageY-k.top}else{h.clk_x=j.pageX-i.offsetLeft;h.clk_y=j.pageY-i.offsetTop}}}setTimeout(function(){h.clk=h.clk_x=h.clk_y=null},100)})};b.fn.ajaxFormUnbind=function(){return this.unbind("submit.form-plugin click.form-plugin")};b.fn.formToArray=function(q){var p=[];if(this.length===0){return p}var d=this[0];var g=q?d.getElementsByTagName("*"):d.elements;if(!g){return p}var k,h,f,r,e,m,c;for(k=0,m=g.length;k=0?"&":"?")+d;p.data=null}else{p.data=d}var r=this,h=[];if(p.resetForm){h.push(function(){r.resetForm()})}if(p.clearForm){h.push(function(){r.clearForm()})}if(!p.dataType&&p.target){var m=p.success||function(){};h.push(function(j){b(p.target).html(j).each(m,arguments)})}else{if(p.success){h.push(p.success)}}p.success=function(q,k){for(var n=0,j=h.length;n');var B=z[0];if(b.browser.msie||b.browser.opera){B.src='javascript:false;document.write("");'}z.css({position:"absolute",top:"-1000px",left:"-1000px"});var C={aborted:0,responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(){this.aborted=1;z.attr("src","about:blank")}};var A=q.global;if(A&&!b.active++){b.event.trigger("ajaxStart")}if(A){b.event.trigger("ajaxSend",[C,q])}if(D.beforeSend&&D.beforeSend(C,D)===false){D.global&&jQuery.active--;return}if(C.aborted){return}var k=0;var w=0;var j=u.clk;if(j){var v=j.name;if(v&&!j.disabled){p.extraData=p.extraData||{};p.extraData[v]=j.value;if(j.type=="image"){p.extraData[name+".x"]=u.clk_x;p.extraData[name+".y"]=u.clk_y}}}setTimeout(function(){var G=r.attr("target"),E=r.attr("action");r.attr({target:t,method:"POST",action:q.url});if(!p.skipEncodingOverride){r.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"})}if(q.timeout){setTimeout(function(){w=true;x()},q.timeout)}var F=[];try{if(p.extraData){for(var H in p.extraData){F.push(b('').appendTo(u)[0])}}z.appendTo("body");B.attachEvent?B.attachEvent("onload",x):B.addEventListener("load",x,false);u.submit()}finally{r.attr("action",E);G?r.attr("target",G):r.removeAttr("target");b(F).remove()}},10);function x(){if(k++){return}B.detachEvent?B.detachEvent("onload",x):B.removeEventListener("load",x,false);var E=0;var F=true;try{if(w){throw"timeout"}var G,I;I=B.contentWindow?B.contentWindow.document:B.contentDocument?B.contentDocument:B.document;if(I.body==null&&!E&&b.browser.opera){E=1;k--;setTimeout(x,100);return}C.responseText=I.body?I.body.innerHTML:null;C.responseXML=I.XMLDocument?I.XMLDocument:I;C.getResponseHeader=function(K){var J={"content-type":q.dataType};return J[K]};if(q.dataType=="json"||q.dataType=="script"){var n=I.getElementsByTagName("textarea")[0];C.responseText=n?n.value:C.responseText}else{if(q.dataType=="xml"&&!C.responseXML&&C.responseText!=null){C.responseXML=y(C.responseText)}}G=b.httpData(C,q.dataType)}catch(H){F=false;b.handleError(q,C,"error",H)}if(F){q.success(G,"success");if(A){b.event.trigger("ajaxSuccess",[C,q])}}if(A){b.event.trigger("ajaxComplete",[C,q])}if(A&&!--b.active){b.event.trigger("ajaxStop")}if(q.complete){q.complete(C,F?"success":"error")}setTimeout(function(){z.remove();C.responseXML=null},100)}function y(n,E){if(window.ActiveXObject){E=new ActiveXObject("Microsoft.XMLDOM");E.async="false";E.loadXML(n)}else{E=(new DOMParser()).parseFromString(n,"text/xml")}return(E&&E.documentElement&&E.documentElement.tagName!="parsererror")?E:null}}};b.fn.ajaxForm=function(c){return this.ajaxFormUnbind().bind("submit.form-plugin",function(){b(this).ajaxSubmit(c);return false}).each(function(){b(":submit,input:image",this).bind("click.form-plugin",function(f){var d=this.form;d.clk=this;if(this.type=="image"){if(f.offsetX!=undefined){d.clk_x=f.offsetX;d.clk_y=f.offsetY}else{if(typeof b.fn.offset=="function"){var g=b(this).offset();d.clk_x=f.pageX-g.left;d.clk_y=f.pageY-g.top}else{d.clk_x=f.pageX-this.offsetLeft;d.clk_y=f.pageY-this.offsetTop}}}setTimeout(function(){d.clk=d.clk_x=d.clk_y=null},10)})})};b.fn.ajaxFormUnbind=function(){this.unbind("submit.form-plugin");return this.each(function(){b(":submit,input:image",this).unbind("click.form-plugin")})};b.fn.formToArray=function(q){var p=[];if(this.length==0){return p}var d=this[0];var h=q?d.getElementsByTagName("*"):d.elements;if(!h){return p}for(var k=0,m=h.length;k'+$(this).val()+' ';
+ NDA.change(function(event) {
+ var filename = $(this).val();
+ if (!filename) {
+ // No file -- we've been tricked!
+ $('#'+SN.C.S.NoticeDataAttachSelected).remove();
+ return false;
+ }
+
+ // @fixme appending filename straight in is potentially unsafe
+ S = '
'+filename+'
';
NDAS = $('#'+SN.C.S.NoticeDataAttachSelected);
if (NDAS.length > 0) {
NDAS.replaceWith(S);
@@ -881,6 +889,22 @@ var SN = { // StatusNet
});
},
+ /**
+ * Get PHP's MAX_FILE_SIZE setting for this form;
+ * used to apply client-side file size limit checks.
+ *
+ * @param {jQuery} form
+ * @return int max size in bytes; 0 or negative means no limit
+ */
+ maxFileSize: function(form) {
+ var max = $(form).find('input[name=MAX_FILE_SIZE]').attr('value');
+ if (max) {
+ return parseInt(max);
+ } else {
+ return 0;
+ }
+ },
+
/**
* For browsers with FileAPI support: make a thumbnail if possible,
* and append it into the attachment display widget.
@@ -1357,6 +1381,32 @@ var SN = { // StatusNet
SN.U.StatusNetInstance.Set({Nickname: $('#form_login #nickname').val()});
return true;
});
+ },
+
+ /**
+ * Add logic to any file upload forms to handle file size limits,
+ * on browsers that support basic FileAPI.
+ */
+ UploadForms: function () {
+ $('input[type=file]').change(function(event) {
+ if (typeof this.files == "object" && this.files.length > 0) {
+ var size = 0;
+ for (var i = 0; i < this.files.length; i++) {
+ size += this.files[i].size;
+ }
+
+ var max = SN.U.maxFileSize($(this.form));
+ if (max > 0 && size > max) {
+ var msg = 'File too large: maximum upload size is %d bytes.';
+ alert(msg.replace('%d', max));
+
+ // Clear the files.
+ $(this).val('');
+ event.preventDefault();
+ return false;
+ }
+ }
+ });
}
}
};
@@ -1369,6 +1419,7 @@ var SN = { // StatusNet
* don't start them loading until after DOM-ready time!
*/
$(document).ready(function(){
+ SN.Init.UploadForms();
if ($('.'+SN.C.S.FormNotice).length > 0) {
SN.Init.NoticeForm();
}
diff --git a/js/util.min.js b/js/util.min.js
index 56baf287e4..d1cdf7acee 100644
--- a/js/util.min.js
+++ b/js/util.min.js
@@ -1 +1 @@
-var SN={C:{I:{CounterBlackout:false,MaxLength:140,PatternUsername:/^[0-9a-zA-Z\-_.]*$/,HTTP20x30x:[200,201,202,203,204,205,206,300,301,302,303,304,305,306,307]},S:{Disabled:"disabled",Warning:"warning",Error:"error",Success:"success",Processing:"processing",CommandResult:"command_result",FormNotice:"form_notice",NoticeDataText:"notice_data-text",NoticeTextCount:"notice_text-count",NoticeInReplyTo:"notice_in-reply-to",NoticeDataAttach:"notice_data-attach",NoticeDataAttachSelected:"notice_data-attach_selected",NoticeActionSubmit:"notice_action-submit",NoticeLat:"notice_data-lat",NoticeLon:"notice_data-lon",NoticeLocationId:"notice_data-location_id",NoticeLocationNs:"notice_data-location_ns",NoticeGeoName:"notice_data-geo_name",NoticeDataGeo:"notice_data-geo",NoticeDataGeoCookie:"NoticeDataGeo",NoticeDataGeoSelected:"notice_data-geo_selected",StatusNetInstance:"StatusNetInstance"}},messages:{},msg:function(a){if(typeof SN.messages[a]=="undefined"){return"["+a+"]"}else{return SN.messages[a]}},U:{FormNoticeEnhancements:function(b){if(jQuery.data(b[0],"ElementData")===undefined){MaxLength=b.find("#"+SN.C.S.NoticeTextCount).text();if(typeof(MaxLength)=="undefined"){MaxLength=SN.C.I.MaxLength}jQuery.data(b[0],"ElementData",{MaxLength:MaxLength});SN.U.Counter(b);NDT=b.find("#"+SN.C.S.NoticeDataText);NDT.bind("keyup",function(c){SN.U.Counter(b)});var a=function(c){window.setTimeout(function(){SN.U.Counter(b)},50)};NDT.bind("cut",a).bind("paste",a);NDT.bind("keydown",function(c){SN.U.SubmitOnReturn(c,b)})}else{b.find("#"+SN.C.S.NoticeTextCount).text(jQuery.data(b[0],"ElementData").MaxLength)}if($("body")[0].id!="conversation"&&window.location.hash.length===0&&$(window).scrollTop()==0){b.find("textarea").focus()}},SubmitOnReturn:function(b,a){if(b.keyCode==13||b.keyCode==10){a.submit();b.preventDefault();b.stopPropagation();$("#"+a[0].id+" #"+SN.C.S.NoticeDataText).blur();$("body").focus();return false}return true},Counter:function(d){SN.C.I.FormNoticeCurrent=d;var b=jQuery.data(d[0],"ElementData").MaxLength;if(b<=0){return}var c=b-SN.U.CharacterCount(d);var a=d.find("#"+SN.C.S.NoticeTextCount);if(c.toString()!=a.text()){if(!SN.C.I.CounterBlackout||c===0){if(a.text()!=String(c)){a.text(c)}if(c<0){d.addClass(SN.C.S.Warning)}else{d.removeClass(SN.C.S.Warning)}if(!SN.C.I.CounterBlackout){SN.C.I.CounterBlackout=true;SN.C.I.FormNoticeCurrent=d;window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);",500)}}}},CharacterCount:function(a){return a.find("#"+SN.C.S.NoticeDataText).val().length},ClearCounterBlackout:function(a){SN.C.I.CounterBlackout=false;SN.U.Counter(a)},RewriteAjaxAction:function(a){if(document.location.protocol=="https:"&&a.substr(0,5)=="http:"){return a.replace(/^http:\/\/[^:\/]+/,"https://"+document.location.host)}else{return a}},FormXHR:function(a){$.ajax({type:"POST",dataType:"xml",url:SN.U.RewriteAjaxAction(a.attr("action")),data:a.serialize()+"&ajax=1",beforeSend:function(b){a.addClass(SN.C.S.Processing).find(".submit").addClass(SN.C.S.Disabled).attr(SN.C.S.Disabled,SN.C.S.Disabled)},error:function(c,d,b){alert(b||d)},success:function(b,c){if(typeof($("form",b)[0])!="undefined"){form_new=document._importNode($("form",b)[0],true);a.replaceWith(form_new)}else{a.replaceWith(document._importNode($("p",b)[0],true))}}})},FormNoticeXHR:function(b){SN.C.I.NoticeDataGeo={};b.append('');b.attr("action",SN.U.RewriteAjaxAction(b.attr("action")));var c=function(d,e){b.append($('').addClass(d).text(e))};var a=function(){b.find(".form_response").remove()};b.ajaxForm({dataType:"xml",timeout:"60000",beforeSend:function(d){if(b.find("#"+SN.C.S.NoticeDataText)[0].value.length===0){b.addClass(SN.C.S.Warning);return false}b.addClass(SN.C.S.Processing).find("#"+SN.C.S.NoticeActionSubmit).addClass(SN.C.S.Disabled).attr(SN.C.S.Disabled,SN.C.S.Disabled);SN.C.I.NoticeDataGeo.NLat=$("#"+SN.C.S.NoticeLat).val();SN.C.I.NoticeDataGeo.NLon=$("#"+SN.C.S.NoticeLon).val();SN.C.I.NoticeDataGeo.NLNS=$("#"+SN.C.S.NoticeLocationNs).val();SN.C.I.NoticeDataGeo.NLID=$("#"+SN.C.S.NoticeLocationId).val();SN.C.I.NoticeDataGeo.NDG=$("#"+SN.C.S.NoticeDataGeo).attr("checked");cookieValue=$.cookie(SN.C.S.NoticeDataGeoCookie);if(cookieValue!==null&&cookieValue!="disabled"){cookieValue=JSON.parse(cookieValue);SN.C.I.NoticeDataGeo.NLat=$("#"+SN.C.S.NoticeLat).val(cookieValue.NLat).val();SN.C.I.NoticeDataGeo.NLon=$("#"+SN.C.S.NoticeLon).val(cookieValue.NLon).val();if($("#"+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS)){SN.C.I.NoticeDataGeo.NLNS=$("#"+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS).val();SN.C.I.NoticeDataGeo.NLID=$("#"+SN.C.S.NoticeLocationId).val(cookieValue.NLID).val()}}if(cookieValue=="disabled"){SN.C.I.NoticeDataGeo.NDG=$("#"+SN.C.S.NoticeDataGeo).attr("checked",false).attr("checked")}else{SN.C.I.NoticeDataGeo.NDG=$("#"+SN.C.S.NoticeDataGeo).attr("checked",true).attr("checked")}return true},error:function(f,g,e){b.removeClass(SN.C.S.Processing).find("#"+SN.C.S.NoticeActionSubmit).removeClass(SN.C.S.Disabled).removeAttr(SN.C.S.Disabled,SN.C.S.Disabled);a();if(g=="timeout"){c("error","Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.")}else{var d=SN.U.GetResponseXML(f);if($("."+SN.C.S.Error,d).length>0){b.append(document._importNode($("."+SN.C.S.Error,d)[0],true))}else{if(parseInt(f.status)===0||jQuery.inArray(parseInt(f.status),SN.C.I.HTTP20x30x)>=0){b.resetForm().find("#"+SN.C.S.NoticeDataAttachSelected).remove();SN.U.FormNoticeEnhancements(b)}else{c("error","(Sorry! We had trouble sending your notice ("+f.status+" "+f.statusText+"). Please report the problem to the site administrator if this happens again.")}}}},success:function(i,k){a();var e=$("#"+SN.C.S.Error,i);if(e.length>0){c("error",e.text())}else{if($("body")[0].id=="bookmarklet"){self.close()}var d=$("#"+SN.C.S.CommandResult,i);if(d.length>0){c("success",d.text())}else{var h=document._importNode($("li",i)[0],true);var j=$("#notices_primary .notices");if(j.length>0&&SN.U.belongsOnTimeline(h)){if($("#"+h.id).length===0){var f=$("#"+SN.C.S.NoticeInReplyTo).val();var g="#notices_primary #notice-"+f;if($("body")[0].id=="conversation"){if(f.length>0&&$(g+" .notices").length<1){$(g).append('
';NDAS=$("#"+SN.C.S.NoticeDataAttachSelected);if(NDAS.length>0){NDAS.replaceWith(S)}else{$("#"+SN.C.S.FormNotice).append(S)}$("#"+SN.C.S.NoticeDataAttachSelected+" button").click(function(){$("#"+SN.C.S.NoticeDataAttachSelected).remove();NDA.val("");return false});if(typeof this.files=="object"){for(var a=0;af){e=false}if(e){g(c,function(i){var h=$("").attr("title",d).attr("alt",d).attr("src",i).attr("style","height: 120px");$("#"+SN.C.S.NoticeDataAttachSelected).append(h)})}else{var b=$("").text(d);$("#"+SN.C.S.NoticeDataAttachSelected).append(b)}},NoticeLocationAttach:function(){var c=$("#"+SN.C.S.NoticeLat).val();var h=$("#"+SN.C.S.NoticeLon).val();var d=$("#"+SN.C.S.NoticeLocationNs).val();var i=$("#"+SN.C.S.NoticeLocationId).val();var a=$("#"+SN.C.S.NoticeGeoName).text();var b=$("#"+SN.C.S.NoticeDataGeo);function e(){$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",jQuery.trim($("label[for="+SN.C.S.NoticeDataGeo+"]").text())).removeClass("checked");$("#"+SN.C.S.NoticeLat).val("");$("#"+SN.C.S.NoticeLon).val("");$("#"+SN.C.S.NoticeLocationNs).val("");$("#"+SN.C.S.NoticeLocationId).val("");$("#"+SN.C.S.NoticeDataGeo).attr("checked",false);$.cookie(SN.C.S.NoticeDataGeoCookie,"disabled",{path:"/"})}function j(k,l){$.getJSON(k,l,function(m){var n,o;if(typeof(m.location_ns)!="undefined"){$("#"+SN.C.S.NoticeLocationNs).val(m.location_ns);n=m.location_ns}if(typeof(m.location_id)!="undefined"){$("#"+SN.C.S.NoticeLocationId).val(m.location_id);o=m.location_id}if(typeof(m.name)=="undefined"){NLN_text=l.lat+";"+l.lon}else{NLN_text=m.name}$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",NoticeDataGeo_text.ShareDisable+" ("+NLN_text+")");$("#"+SN.C.S.NoticeLat).val(l.lat);$("#"+SN.C.S.NoticeLon).val(l.lon);$("#"+SN.C.S.NoticeLocationNs).val(n);$("#"+SN.C.S.NoticeLocationId).val(o);$("#"+SN.C.S.NoticeDataGeo).attr("checked",true);var p={NLat:l.lat,NLon:l.lon,NLNS:n,NLID:o,NLN:NLN_text,NLNU:m.url,NDG:true};$.cookie(SN.C.S.NoticeDataGeoCookie,JSON.stringify(p),{path:"/"})})}if(b.length>0){if($.cookie(SN.C.S.NoticeDataGeoCookie)=="disabled"){b.attr("checked",false)}else{b.attr("checked",true)}var f=$("#notice_data-geo_wrap");var g=f.attr("title");f.removeAttr("title");$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",jQuery.trim($("label[for="+SN.C.S.NoticeDataGeo+"]").text()));b.change(function(){if($("#"+SN.C.S.NoticeDataGeo).attr("checked")===true||$.cookie(SN.C.S.NoticeDataGeoCookie)===null){$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",NoticeDataGeo_text.ShareDisable).addClass("checked");if($.cookie(SN.C.S.NoticeDataGeoCookie)===null||$.cookie(SN.C.S.NoticeDataGeoCookie)=="disabled"){if(navigator.geolocation){navigator.geolocation.getCurrentPosition(function(m){$("#"+SN.C.S.NoticeLat).val(m.coords.latitude);$("#"+SN.C.S.NoticeLon).val(m.coords.longitude);var n={lat:m.coords.latitude,lon:m.coords.longitude,token:$("#token").val()};j(g,n)},function(m){switch(m.code){case m.PERMISSION_DENIED:e();break;case m.TIMEOUT:$("#"+SN.C.S.NoticeDataGeo).attr("checked",false);break}},{timeout:10000})}else{if(c.length>0&&h.length>0){var k={lat:c,lon:h,token:$("#token").val()};j(g,k)}else{e();$("#"+SN.C.S.NoticeDataGeo).remove();$("label[for="+SN.C.S.NoticeDataGeo+"]").remove()}}}else{var l=JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));$("#"+SN.C.S.NoticeLat).val(l.NLat);$("#"+SN.C.S.NoticeLon).val(l.NLon);$("#"+SN.C.S.NoticeLocationNs).val(l.NLNS);$("#"+SN.C.S.NoticeLocationId).val(l.NLID);$("#"+SN.C.S.NoticeDataGeo).attr("checked",l.NDG);$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",NoticeDataGeo_text.ShareDisable+" ("+l.NLN+")").addClass("checked")}}else{e()}}).change()}},NewDirectMessage:function(){NDM=$(".entity_send-a-message a");NDM.attr({href:NDM.attr("href")+"&ajax=1"});NDM.bind("click",function(){var a=$(".entity_send-a-message form");if(a.length===0){$(this).addClass(SN.C.S.Processing);$.get(NDM.attr("href"),null,function(b){$(".entity_send-a-message").append(document._importNode($("form",b)[0],true));a=$(".entity_send-a-message .form_notice");SN.U.FormNoticeXHR(a);SN.U.FormNoticeEnhancements(a);a.append('');$(".entity_send-a-message button").click(function(){a.hide();return false});NDM.removeClass(SN.C.S.Processing)})}else{a.show();$(".entity_send-a-message textarea").focus()}return false})},GetFullYear:function(c,d,a){var b=new Date();b.setFullYear(c,d,a);return b},StatusNetInstance:{Set:function(b){var a=SN.U.StatusNetInstance.Get();if(a!==null){b=$.extend(a,b)}$.cookie(SN.C.S.StatusNetInstance,JSON.stringify(b),{path:"/",expires:SN.U.GetFullYear(2029,0,1)})},Get:function(){var a=$.cookie(SN.C.S.StatusNetInstance);if(a!==null){return JSON.parse(a)}return null},Delete:function(){$.cookie(SN.C.S.StatusNetInstance,null)}},belongsOnTimeline:function(b){var a=$("body").attr("id");if(a=="public"){return true}var c=$("#nav_profile a").attr("href");if(c){var d=$(b).find(".entry-title .author a.url").attr("href");if(d==c){if(a=="all"||a=="showstream"){return true}}}return false}},Init:{NoticeForm:function(){if($("body.user_in").length>0){SN.U.NoticeLocationAttach();$("."+SN.C.S.FormNotice).each(function(){SN.U.FormNoticeXHR($(this));SN.U.FormNoticeEnhancements($(this))});SN.U.NoticeDataAttach()}},Notices:function(){if($("body.user_in").length>0){SN.U.NoticeFavor();SN.U.NoticeRepeat();SN.U.NoticeReply();SN.U.NoticeInlineReplySetup()}SN.U.NoticeAttachments()},EntityActions:function(){if($("body.user_in").length>0){$(".form_user_subscribe").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_user_unsubscribe").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_group_join").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_group_leave").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_user_nudge").live("click",function(){SN.U.FormXHR($(this));return false});SN.U.NewDirectMessage()}},Login:function(){if(SN.U.StatusNetInstance.Get()!==null){var a=SN.U.StatusNetInstance.Get().Nickname;if(a!==null){$("#form_login #nickname").val(a)}}$("#form_login").bind("submit",function(){SN.U.StatusNetInstance.Set({Nickname:$("#form_login #nickname").val()});return true})}}};$(document).ready(function(){if($("."+SN.C.S.FormNotice).length>0){SN.Init.NoticeForm()}if($("#content .notices").length>0){SN.Init.Notices()}if($("#content .entity_actions").length>0){SN.Init.EntityActions()}if($("#form_login").length>0){SN.Init.Login()}});if(!document.ELEMENT_NODE){document.ELEMENT_NODE=1;document.ATTRIBUTE_NODE=2;document.TEXT_NODE=3;document.CDATA_SECTION_NODE=4;document.ENTITY_REFERENCE_NODE=5;document.ENTITY_NODE=6;document.PROCESSING_INSTRUCTION_NODE=7;document.COMMENT_NODE=8;document.DOCUMENT_NODE=9;document.DOCUMENT_TYPE_NODE=10;document.DOCUMENT_FRAGMENT_NODE=11;document.NOTATION_NODE=12}document._importNode=function(e,a){switch(e.nodeType){case document.ELEMENT_NODE:var d=document.createElement(e.nodeName);if(e.attributes&&e.attributes.length>0){for(var c=0,b=e.attributes.length;c0){for(var c=0,b=e.childNodes.length;c0){var j=c.pop();j()}}};window._google_loader_apiLoaded=function(){f()};var d=function(){return(window.google&&google.loader)};var g=function(j){if(d()){return true}h(j);e();return false};e();return{shim:true,type:"ClientLocation",lastPosition:null,getCurrentPosition:function(k,n,o){var m=this;if(!g(function(){m.getCurrentPosition(k,n,o)})){return}if(google.loader.ClientLocation){var l=google.loader.ClientLocation;var j={coords:{latitude:l.latitude,longitude:l.longitude,altitude:null,accuracy:43000,altitudeAccuracy:null,heading:null,speed:null},address:{city:l.address.city,country:l.address.country,country_code:l.address.country_code,region:l.address.region},timestamp:new Date()};k(j);this.lastPosition=j}else{if(n==="function"){n({code:3,message:"Using the Google ClientLocation API and it is not able to calculate a location."})}}},watchPosition:function(j,l,m){this.getCurrentPosition(j,l,m);var k=this;var n=setInterval(function(){k.getCurrentPosition(j,l,m)},10000);return n},clearWatch:function(j){clearInterval(j)},getPermission:function(l,j,k){return true}}});navigator.geolocation=(window.google&&google.gears)?a():b()})()};
\ No newline at end of file
+var SN={C:{I:{CounterBlackout:false,MaxLength:140,PatternUsername:/^[0-9a-zA-Z\-_.]*$/,HTTP20x30x:[200,201,202,203,204,205,206,300,301,302,303,304,305,306,307]},S:{Disabled:"disabled",Warning:"warning",Error:"error",Success:"success",Processing:"processing",CommandResult:"command_result",FormNotice:"form_notice",NoticeDataText:"notice_data-text",NoticeTextCount:"notice_text-count",NoticeInReplyTo:"notice_in-reply-to",NoticeDataAttach:"notice_data-attach",NoticeDataAttachSelected:"notice_data-attach_selected",NoticeActionSubmit:"notice_action-submit",NoticeLat:"notice_data-lat",NoticeLon:"notice_data-lon",NoticeLocationId:"notice_data-location_id",NoticeLocationNs:"notice_data-location_ns",NoticeGeoName:"notice_data-geo_name",NoticeDataGeo:"notice_data-geo",NoticeDataGeoCookie:"NoticeDataGeo",NoticeDataGeoSelected:"notice_data-geo_selected",StatusNetInstance:"StatusNetInstance"}},messages:{},msg:function(a){if(typeof SN.messages[a]=="undefined"){return"["+a+"]"}else{return SN.messages[a]}},U:{FormNoticeEnhancements:function(b){if(jQuery.data(b[0],"ElementData")===undefined){MaxLength=b.find("#"+SN.C.S.NoticeTextCount).text();if(typeof(MaxLength)=="undefined"){MaxLength=SN.C.I.MaxLength}jQuery.data(b[0],"ElementData",{MaxLength:MaxLength});SN.U.Counter(b);NDT=b.find("#"+SN.C.S.NoticeDataText);NDT.bind("keyup",function(c){SN.U.Counter(b)});var a=function(c){window.setTimeout(function(){SN.U.Counter(b)},50)};NDT.bind("cut",a).bind("paste",a);NDT.bind("keydown",function(c){SN.U.SubmitOnReturn(c,b)})}else{b.find("#"+SN.C.S.NoticeTextCount).text(jQuery.data(b[0],"ElementData").MaxLength)}if($("body")[0].id!="conversation"&&window.location.hash.length===0&&$(window).scrollTop()==0){b.find("textarea").focus()}},SubmitOnReturn:function(b,a){if(b.keyCode==13||b.keyCode==10){a.submit();b.preventDefault();b.stopPropagation();$("#"+a[0].id+" #"+SN.C.S.NoticeDataText).blur();$("body").focus();return false}return true},Counter:function(d){SN.C.I.FormNoticeCurrent=d;var b=jQuery.data(d[0],"ElementData").MaxLength;if(b<=0){return}var c=b-SN.U.CharacterCount(d);var a=d.find("#"+SN.C.S.NoticeTextCount);if(c.toString()!=a.text()){if(!SN.C.I.CounterBlackout||c===0){if(a.text()!=String(c)){a.text(c)}if(c<0){d.addClass(SN.C.S.Warning)}else{d.removeClass(SN.C.S.Warning)}if(!SN.C.I.CounterBlackout){SN.C.I.CounterBlackout=true;SN.C.I.FormNoticeCurrent=d;window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);",500)}}}},CharacterCount:function(a){return a.find("#"+SN.C.S.NoticeDataText).val().length},ClearCounterBlackout:function(a){SN.C.I.CounterBlackout=false;SN.U.Counter(a)},RewriteAjaxAction:function(a){if(document.location.protocol=="https:"&&a.substr(0,5)=="http:"){return a.replace(/^http:\/\/[^:\/]+/,"https://"+document.location.host)}else{return a}},FormXHR:function(a){$.ajax({type:"POST",dataType:"xml",url:SN.U.RewriteAjaxAction(a.attr("action")),data:a.serialize()+"&ajax=1",beforeSend:function(b){a.addClass(SN.C.S.Processing).find(".submit").addClass(SN.C.S.Disabled).attr(SN.C.S.Disabled,SN.C.S.Disabled)},error:function(c,d,b){alert(b||d)},success:function(b,c){if(typeof($("form",b)[0])!="undefined"){form_new=document._importNode($("form",b)[0],true);a.replaceWith(form_new)}else{a.replaceWith(document._importNode($("p",b)[0],true))}}})},FormNoticeXHR:function(b){SN.C.I.NoticeDataGeo={};b.append('');b.attr("action",SN.U.RewriteAjaxAction(b.attr("action")));var c=function(d,e){b.append($('').addClass(d).text(e))};var a=function(){b.find(".form_response").remove()};b.ajaxForm({dataType:"xml",timeout:"60000",beforeSend:function(d){if(b.find("#"+SN.C.S.NoticeDataText)[0].value.length===0){b.addClass(SN.C.S.Warning);return false}b.addClass(SN.C.S.Processing).find("#"+SN.C.S.NoticeActionSubmit).addClass(SN.C.S.Disabled).attr(SN.C.S.Disabled,SN.C.S.Disabled);SN.C.I.NoticeDataGeo.NLat=$("#"+SN.C.S.NoticeLat).val();SN.C.I.NoticeDataGeo.NLon=$("#"+SN.C.S.NoticeLon).val();SN.C.I.NoticeDataGeo.NLNS=$("#"+SN.C.S.NoticeLocationNs).val();SN.C.I.NoticeDataGeo.NLID=$("#"+SN.C.S.NoticeLocationId).val();SN.C.I.NoticeDataGeo.NDG=$("#"+SN.C.S.NoticeDataGeo).attr("checked");cookieValue=$.cookie(SN.C.S.NoticeDataGeoCookie);if(cookieValue!==null&&cookieValue!="disabled"){cookieValue=JSON.parse(cookieValue);SN.C.I.NoticeDataGeo.NLat=$("#"+SN.C.S.NoticeLat).val(cookieValue.NLat).val();SN.C.I.NoticeDataGeo.NLon=$("#"+SN.C.S.NoticeLon).val(cookieValue.NLon).val();if($("#"+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS)){SN.C.I.NoticeDataGeo.NLNS=$("#"+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS).val();SN.C.I.NoticeDataGeo.NLID=$("#"+SN.C.S.NoticeLocationId).val(cookieValue.NLID).val()}}if(cookieValue=="disabled"){SN.C.I.NoticeDataGeo.NDG=$("#"+SN.C.S.NoticeDataGeo).attr("checked",false).attr("checked")}else{SN.C.I.NoticeDataGeo.NDG=$("#"+SN.C.S.NoticeDataGeo).attr("checked",true).attr("checked")}return true},error:function(f,g,e){b.removeClass(SN.C.S.Processing).find("#"+SN.C.S.NoticeActionSubmit).removeClass(SN.C.S.Disabled).removeAttr(SN.C.S.Disabled,SN.C.S.Disabled);a();if(g=="timeout"){c("error","Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.")}else{var d=SN.U.GetResponseXML(f);if($("."+SN.C.S.Error,d).length>0){b.append(document._importNode($("."+SN.C.S.Error,d)[0],true))}else{if(parseInt(f.status)===0||jQuery.inArray(parseInt(f.status),SN.C.I.HTTP20x30x)>=0){b.resetForm().find("#"+SN.C.S.NoticeDataAttachSelected).remove();SN.U.FormNoticeEnhancements(b)}else{c("error","(Sorry! We had trouble sending your notice ("+f.status+" "+f.statusText+"). Please report the problem to the site administrator if this happens again.")}}}},success:function(i,k){a();var e=$("#"+SN.C.S.Error,i);if(e.length>0){c("error",e.text())}else{if($("body")[0].id=="bookmarklet"){self.close()}var d=$("#"+SN.C.S.CommandResult,i);if(d.length>0){c("success",d.text())}else{var h=document._importNode($("li",i)[0],true);var j=$("#notices_primary .notices");if(j.length>0&&SN.U.belongsOnTimeline(h)){if($("#"+h.id).length===0){var f=$("#"+SN.C.S.NoticeInReplyTo).val();var g="#notices_primary #notice-"+f;if($("body")[0].id=="conversation"){if(f.length>0&&$(g+" .notices").length<1){$(g).append('
';NDAS=$("#"+SN.C.S.NoticeDataAttachSelected);if(NDAS.length>0){NDAS.replaceWith(S)}else{$("#"+SN.C.S.FormNotice).append(S)}$("#"+SN.C.S.NoticeDataAttachSelected+" button").click(function(){$("#"+SN.C.S.NoticeDataAttachSelected).remove();NDA.val("");return false});if(typeof this.files=="object"){for(var b=0;bf){e=false}if(e){g(c,function(i){var h=$("").attr("title",d).attr("alt",d).attr("src",i).attr("style","height: 120px");$("#"+SN.C.S.NoticeDataAttachSelected).append(h)})}else{var b=$("").text(d);$("#"+SN.C.S.NoticeDataAttachSelected).append(b)}},NoticeLocationAttach:function(){var c=$("#"+SN.C.S.NoticeLat).val();var h=$("#"+SN.C.S.NoticeLon).val();var d=$("#"+SN.C.S.NoticeLocationNs).val();var i=$("#"+SN.C.S.NoticeLocationId).val();var a=$("#"+SN.C.S.NoticeGeoName).text();var b=$("#"+SN.C.S.NoticeDataGeo);function e(){$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",jQuery.trim($("label[for="+SN.C.S.NoticeDataGeo+"]").text())).removeClass("checked");$("#"+SN.C.S.NoticeLat).val("");$("#"+SN.C.S.NoticeLon).val("");$("#"+SN.C.S.NoticeLocationNs).val("");$("#"+SN.C.S.NoticeLocationId).val("");$("#"+SN.C.S.NoticeDataGeo).attr("checked",false);$.cookie(SN.C.S.NoticeDataGeoCookie,"disabled",{path:"/"})}function j(k,l){$.getJSON(k,l,function(m){var n,o;if(typeof(m.location_ns)!="undefined"){$("#"+SN.C.S.NoticeLocationNs).val(m.location_ns);n=m.location_ns}if(typeof(m.location_id)!="undefined"){$("#"+SN.C.S.NoticeLocationId).val(m.location_id);o=m.location_id}if(typeof(m.name)=="undefined"){NLN_text=l.lat+";"+l.lon}else{NLN_text=m.name}$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",NoticeDataGeo_text.ShareDisable+" ("+NLN_text+")");$("#"+SN.C.S.NoticeLat).val(l.lat);$("#"+SN.C.S.NoticeLon).val(l.lon);$("#"+SN.C.S.NoticeLocationNs).val(n);$("#"+SN.C.S.NoticeLocationId).val(o);$("#"+SN.C.S.NoticeDataGeo).attr("checked",true);var p={NLat:l.lat,NLon:l.lon,NLNS:n,NLID:o,NLN:NLN_text,NLNU:m.url,NDG:true};$.cookie(SN.C.S.NoticeDataGeoCookie,JSON.stringify(p),{path:"/"})})}if(b.length>0){if($.cookie(SN.C.S.NoticeDataGeoCookie)=="disabled"){b.attr("checked",false)}else{b.attr("checked",true)}var f=$("#notice_data-geo_wrap");var g=f.attr("title");f.removeAttr("title");$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",jQuery.trim($("label[for="+SN.C.S.NoticeDataGeo+"]").text()));b.change(function(){if($("#"+SN.C.S.NoticeDataGeo).attr("checked")===true||$.cookie(SN.C.S.NoticeDataGeoCookie)===null){$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",NoticeDataGeo_text.ShareDisable).addClass("checked");if($.cookie(SN.C.S.NoticeDataGeoCookie)===null||$.cookie(SN.C.S.NoticeDataGeoCookie)=="disabled"){if(navigator.geolocation){navigator.geolocation.getCurrentPosition(function(m){$("#"+SN.C.S.NoticeLat).val(m.coords.latitude);$("#"+SN.C.S.NoticeLon).val(m.coords.longitude);var n={lat:m.coords.latitude,lon:m.coords.longitude,token:$("#token").val()};j(g,n)},function(m){switch(m.code){case m.PERMISSION_DENIED:e();break;case m.TIMEOUT:$("#"+SN.C.S.NoticeDataGeo).attr("checked",false);break}},{timeout:10000})}else{if(c.length>0&&h.length>0){var k={lat:c,lon:h,token:$("#token").val()};j(g,k)}else{e();$("#"+SN.C.S.NoticeDataGeo).remove();$("label[for="+SN.C.S.NoticeDataGeo+"]").remove()}}}else{var l=JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));$("#"+SN.C.S.NoticeLat).val(l.NLat);$("#"+SN.C.S.NoticeLon).val(l.NLon);$("#"+SN.C.S.NoticeLocationNs).val(l.NLNS);$("#"+SN.C.S.NoticeLocationId).val(l.NLID);$("#"+SN.C.S.NoticeDataGeo).attr("checked",l.NDG);$("label[for="+SN.C.S.NoticeDataGeo+"]").attr("title",NoticeDataGeo_text.ShareDisable+" ("+l.NLN+")").addClass("checked")}}else{e()}}).change()}},NewDirectMessage:function(){NDM=$(".entity_send-a-message a");NDM.attr({href:NDM.attr("href")+"&ajax=1"});NDM.bind("click",function(){var a=$(".entity_send-a-message form");if(a.length===0){$(this).addClass(SN.C.S.Processing);$.get(NDM.attr("href"),null,function(b){$(".entity_send-a-message").append(document._importNode($("form",b)[0],true));a=$(".entity_send-a-message .form_notice");SN.U.FormNoticeXHR(a);SN.U.FormNoticeEnhancements(a);a.append('');$(".entity_send-a-message button").click(function(){a.hide();return false});NDM.removeClass(SN.C.S.Processing)})}else{a.show();$(".entity_send-a-message textarea").focus()}return false})},GetFullYear:function(c,d,a){var b=new Date();b.setFullYear(c,d,a);return b},StatusNetInstance:{Set:function(b){var a=SN.U.StatusNetInstance.Get();if(a!==null){b=$.extend(a,b)}$.cookie(SN.C.S.StatusNetInstance,JSON.stringify(b),{path:"/",expires:SN.U.GetFullYear(2029,0,1)})},Get:function(){var a=$.cookie(SN.C.S.StatusNetInstance);if(a!==null){return JSON.parse(a)}return null},Delete:function(){$.cookie(SN.C.S.StatusNetInstance,null)}},belongsOnTimeline:function(b){var a=$("body").attr("id");if(a=="public"){return true}var c=$("#nav_profile a").attr("href");if(c){var d=$(b).find(".entry-title .author a.url").attr("href");if(d==c){if(a=="all"||a=="showstream"){return true}}}return false}},Init:{NoticeForm:function(){if($("body.user_in").length>0){SN.U.NoticeLocationAttach();$("."+SN.C.S.FormNotice).each(function(){SN.U.FormNoticeXHR($(this));SN.U.FormNoticeEnhancements($(this))});SN.U.NoticeDataAttach()}},Notices:function(){if($("body.user_in").length>0){SN.U.NoticeFavor();SN.U.NoticeRepeat();SN.U.NoticeReply();SN.U.NoticeInlineReplySetup()}SN.U.NoticeAttachments()},EntityActions:function(){if($("body.user_in").length>0){$(".form_user_subscribe").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_user_unsubscribe").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_group_join").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_group_leave").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_user_nudge").live("click",function(){SN.U.FormXHR($(this));return false});SN.U.NewDirectMessage()}},Login:function(){if(SN.U.StatusNetInstance.Get()!==null){var a=SN.U.StatusNetInstance.Get().Nickname;if(a!==null){$("#form_login #nickname").val(a)}}$("#form_login").bind("submit",function(){SN.U.StatusNetInstance.Set({Nickname:$("#form_login #nickname").val()});return true})},UploadForms:function(){$("input[type=file]").change(function(d){if(typeof this.files=="object"&&this.files.length>0){var c=0;for(var b=0;b0&&c>a){var e="File too large: maximum upload size is %d bytes.";alert(e.replace("%d",a));$(this).val("");d.preventDefault();return false}}})}}};$(document).ready(function(){SN.Init.UploadForms();if($("."+SN.C.S.FormNotice).length>0){SN.Init.NoticeForm()}if($("#content .notices").length>0){SN.Init.Notices()}if($("#content .entity_actions").length>0){SN.Init.EntityActions()}if($("#form_login").length>0){SN.Init.Login()}});if(!document.ELEMENT_NODE){document.ELEMENT_NODE=1;document.ATTRIBUTE_NODE=2;document.TEXT_NODE=3;document.CDATA_SECTION_NODE=4;document.ENTITY_REFERENCE_NODE=5;document.ENTITY_NODE=6;document.PROCESSING_INSTRUCTION_NODE=7;document.COMMENT_NODE=8;document.DOCUMENT_NODE=9;document.DOCUMENT_TYPE_NODE=10;document.DOCUMENT_FRAGMENT_NODE=11;document.NOTATION_NODE=12}document._importNode=function(e,a){switch(e.nodeType){case document.ELEMENT_NODE:var d=document.createElement(e.nodeName);if(e.attributes&&e.attributes.length>0){for(var c=0,b=e.attributes.length;c0){for(var c=0,b=e.childNodes.length;c0){var j=c.pop();j()}}};window._google_loader_apiLoaded=function(){f()};var d=function(){return(window.google&&google.loader)};var g=function(j){if(d()){return true}h(j);e();return false};e();return{shim:true,type:"ClientLocation",lastPosition:null,getCurrentPosition:function(k,n,o){var m=this;if(!g(function(){m.getCurrentPosition(k,n,o)})){return}if(google.loader.ClientLocation){var l=google.loader.ClientLocation;var j={coords:{latitude:l.latitude,longitude:l.longitude,altitude:null,accuracy:43000,altitudeAccuracy:null,heading:null,speed:null},address:{city:l.address.city,country:l.address.country,country_code:l.address.country_code,region:l.address.region},timestamp:new Date()};k(j);this.lastPosition=j}else{if(n==="function"){n({code:3,message:"Using the Google ClientLocation API and it is not able to calculate a location."})}}},watchPosition:function(j,l,m){this.getCurrentPosition(j,l,m);var k=this;var n=setInterval(function(){k.getCurrentPosition(j,l,m)},10000);return n},clearWatch:function(j){clearInterval(j)},getPermission:function(l,j,k){return true}}});navigator.geolocation=(window.google&&google.gears)?a():b()})()};
\ No newline at end of file
diff --git a/lib/accountmover.php b/lib/accountmover.php
new file mode 100644
index 0000000000..3e9228994a
--- /dev/null
+++ b/lib/accountmover.php
@@ -0,0 +1,151 @@
+.
+ *
+ * @category Account
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+ // This check helps protect against security problems;
+ // your code file can't be executed directly from the web.
+ exit(1);
+}
+
+/**
+ * Moves an account from this server to another
+ *
+ * @category Account
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+class AccountMover extends QueueHandler
+{
+ function transport()
+ {
+ return 'acctmove';
+ }
+
+ function handle($object)
+ {
+ list($user, $remote, $password) = $object;
+
+ $remote = Discovery::normalize($remote);
+
+ $oprofile = Ostatus_profile::ensureProfileURI($remote);
+
+ if (empty($oprofile)) {
+ // TRANS: Exception thrown when an account could not be located when it should be moved.
+ // TRANS: %s is the remote site.
+ throw new Exception(sprintf(_("Cannot locate account %s."),$remote));
+ }
+
+ list($svcDocUrl, $username) = self::getServiceDocument($remote);
+
+ $sink = new ActivitySink($svcDocUrl, $username, $password);
+
+ $this->log(LOG_INFO,
+ "Moving user {$user->nickname} ".
+ "to {$remote}.");
+
+ $stream = new UserActivityStream($user);
+
+ // Reverse activities to run in correct chron order
+
+ $acts = array_reverse($stream->activities);
+
+ $this->log(LOG_INFO,
+ "Got ".count($acts)." activities ".
+ "for {$user->nickname}.");
+
+ $qm = QueueManager::get();
+
+ foreach ($acts as $act) {
+ $qm->enqueue(array($act, $sink, $user->uri, $remote), 'actmove');
+ }
+
+ $this->log(LOG_INFO,
+ "Finished moving user {$user->nickname} ".
+ "to {$remote}.");
+ }
+
+ static function getServiceDocument($remote)
+ {
+ $discovery = new Discovery();
+
+ $xrd = $discovery->lookup($remote);
+
+ if (empty($xrd)) {
+ // TRANS: Exception thrown when a service document could not be located account move.
+ // TRANS: %s is the remote site.
+ throw new Exception(sprintf(_("Cannot find XRD for %s."),$remote));
+ }
+
+ $svcDocUrl = null;
+ $username = null;
+
+ foreach ($xrd->links as $link) {
+ if ($link['rel'] == 'http://apinamespace.org/atom' &&
+ $link['type'] == 'application/atomsvc+xml') {
+ $svcDocUrl = $link['href'];
+ if (!empty($link['property'])) {
+ foreach ($link['property'] as $property) {
+ if ($property['type'] == 'http://apinamespace.org/atom/username') {
+ $username = $property['value'];
+ break;
+ }
+ }
+ }
+ break;
+ }
+ }
+
+ if (empty($svcDocUrl)) {
+ // TRANS: Exception thrown when an account could not be located when it should be moved.
+ // TRANS: %s is the remote site.
+ throw new Exception(sprintf(_("No AtomPub API service for %s."),$remote));
+ }
+
+ return array($svcDocUrl, $username);
+ }
+
+ /**
+ * Log some data
+ *
+ * Add a header for our class so we know who did it.
+ *
+ * @param int $level Log level, like LOG_ERR or LOG_INFO
+ * @param string $message Message to log
+ *
+ * @return void
+ */
+ protected function log($level, $message)
+ {
+ common_log($level, "AccountMover: " . $message);
+ }
+}
diff --git a/lib/action.php b/lib/action.php
index 7631d80fe0..650f706a4b 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -111,6 +111,19 @@ class Action extends HTMLOutputter // lawsuit
}
}
+ function endHTML()
+ {
+ global $_startTime;
+
+ if (isset($_startTime)) {
+ $endTime = microtime(true);
+ $diff = round(($endTime - $_startTime) * 1000);
+ $this->raw("");
+ }
+
+ return parent::endHTML();
+ }
+
/**
* Show head, a template method.
*
@@ -300,11 +313,11 @@ class Action extends HTMLOutputter // lawsuit
* events and appending to the array. Try to avoid adding strings that won't be used, as
* they'll be added to HTML output.
*/
-
+
function showScriptMessages()
{
$messages = array();
-
+
if (Event::handle('StartScriptMessages', array($this, &$messages))) {
// Common messages needed for timeline views etc...
@@ -318,14 +331,14 @@ class Action extends HTMLOutputter // lawsuit
$messages['reply_comment'] = _m('Add a comment...');
$messages = array_merge($messages, $this->getScriptMessages());
-
+
Event::handle('EndScriptMessages', array($this, &$messages));
}
-
+
if (!empty($messages)) {
$this->inlineScript('SN.messages=' . json_encode($messages));
}
-
+
return $messages;
}
@@ -828,8 +841,11 @@ class Action extends HTMLOutputter // lawsuit
function showFooter()
{
$this->elementStart('div', array('id' => 'footer'));
- $this->showSecondaryNav();
- $this->showLicenses();
+ if (Event::handle('StartShowInsideFooter', array($this))) {
+ $this->showSecondaryNav();
+ $this->showLicenses();
+ Event::handle('EndShowInsideFooter', array($this));
+ }
$this->elementEnd('div');
}
diff --git a/lib/activity.php b/lib/activity.php
index 8d7ae1540b..b781e49846 100644
--- a/lib/activity.php
+++ b/lib/activity.php
@@ -182,6 +182,9 @@ class Activity
$actorEl = $this->_child($entry, self::ACTOR);
if (!empty($actorEl)) {
+ // Standalone elements are a holdover from older
+ // versions of ActivityStreams. Newer feeds should have this data
+ // integrated straight into .
$this->actor = new ActivityObject($actorEl);
@@ -196,18 +199,24 @@ class Activity
$this->actor->id = $authorObj->id;
}
}
+ } else if ($authorEl = $this->_child($entry, self::AUTHOR, self::ATOM)) {
+
+ // An in the entry overrides any author info on
+ // the surrounding feed.
+ $this->actor = new ActivityObject($authorEl);
+
} else if (!empty($feed) &&
$subjectEl = $this->_child($feed, self::SUBJECT)) {
+ // Feed subject is used for things like groups.
+ // Should actually possibly not be interpreted as an actor...?
$this->actor = new ActivityObject($subjectEl);
- } else if ($authorEl = $this->_child($entry, self::AUTHOR, self::ATOM)) {
-
- $this->actor = new ActivityObject($authorEl);
-
} else if (!empty($feed) && $authorEl = $this->_child($feed, self::AUTHOR,
self::ATOM)) {
+ // If there's no on the entry, it's safe to assume
+ // the containing feed's authorship info applies.
$this->actor = new ActivityObject($authorEl);
}
@@ -322,15 +331,172 @@ class Activity
*
* @return DOMElement Atom entry
*/
+
function toAtomEntry()
{
return null;
}
+ /**
+ * Returns an array based on this activity suitable
+ * for encoding as a JSON object
+ *
+ * @return array $activity
+ */
+
+ function asArray()
+ {
+ $activity = array();
+
+ // actor
+ $activity['actor'] = $this->actor->asArray();
+
+ // body
+ $activity['body'] = $this->content;
+
+ // generator <-- We could use this when we know a notice is created
+ // locally. Or if we know the upstream Generator.
+
+ // icon <-- I've decided to use the posting user's stream avatar here
+ // for now (also included in the avatarLinks extension)
+
+
+ // object
+ if ($this->verb == ActivityVerb::POST && count($this->objects) == 1) {
+ $activity['object'] = $this->objects[0]->asArray();
+
+ // Context stuff. For now I'm just sticking most of it
+ // in a property called "context"
+
+ if (!empty($this->context)) {
+
+ if (!empty($this->context->location)) {
+ $loc = $this->context->location;
+
+ // GeoJSON
+
+ $activity['geopoint'] = array(
+ 'type' => 'Point',
+ 'coordinates' => array($loc->lat, $loc->lon)
+ );
+
+ }
+
+ $activity['to'] = $this->context->getToArray();
+ $activity['context'] = $this->context->asArray();
+ }
+
+ // Instead of adding enclosures as an extension to JSON
+ // Activities, it seems like we should be using the
+ // attachedObjects property of ActivityObject
+
+ $attachedObjects = array();
+
+ // XXX: OK, this is kinda cheating. We should probably figure out
+ // what kind of objects these are based on mime-type and then
+ // create specific object types. Right now this rely on
+ // duck-typing. Also, we should include an embed code for
+ // video attachments.
+
+ foreach ($this->enclosures as $enclosure) {
+
+ if (is_string($enclosure)) {
+
+ $attachedObjects[]['id'] = $enclosure;
+
+ } else {
+
+ $attachedObjects[]['id'] = $enclosure->url;
+
+ $mediaLink = new ActivityStreamsMediaLink(
+ $enclosure->url,
+ null,
+ null,
+ $enclosure->mimetype
+ // XXX: Add 'size' as an extension to MediaLink?
+ );
+
+ $attachedObjects[]['mediaLink'] = $mediaLink->asArray(); // extension
+
+ if ($enclosure->title) {
+ $attachedObjects[]['displayName'] = $enclosure->title;
+ }
+ }
+ }
+
+ if (!empty($attachedObjects)) {
+ $activity['object']['attachedObjects'] = $attachedObjects;
+ }
+
+ } else {
+ $activity['object'] = array();
+ foreach($this->objects as $object) {
+ $activity['object'][] = $object->asArray();
+ }
+ }
+
+ $activity['postedTime'] = self::iso8601Date($this->time); // Change to exactly be RFC3339?
+
+ // provider
+ $provider = array(
+ 'objectType' => 'service',
+ 'displayName' => common_config('site', 'name'),
+ 'url' => common_root_url()
+ );
+
+ $activity['provider'] = $provider;
+
+ // target
+ if (!empty($this->target)) {
+ $activity['target'] = $this->target->asArray();
+ }
+
+ // title
+ $activity['title'] = $this->title;
+
+ // updatedTime <-- Should we use this to indicate the time we received
+ // a remote notice? Probably not.
+
+ // verb
+ //
+ // We can probably use the whole schema URL here but probably the
+ // relative simple name is easier to parse
+ $activity['verb'] = substr($this->verb, strrpos($this->verb, '/') + 1);
+
+ /* Purely extensions hereafter */
+
+ $tags = array();
+
+ // Use an Activity Object for term? Which object? Note?
+ foreach ($this->categories as $cat) {
+ $tags[] = $cat->term;
+ }
+
+ $activity['tags'] = $tags;
+
+ // XXX: a bit of a hack... Since JSON isn't namespaced we probably
+ // shouldn't be using 'statusnet:notice_info', but this will work
+ // for the moment.
+
+ foreach ($this->extra as $e) {
+ list($objectName, $props, $txt) = $e;
+ if (!empty($objectName)) {
+ $activity[$objectName] = $props;
+ }
+ }
+
+ return array_filter($activity);
+ }
+
function asString($namespace=false, $author=true, $source=false)
{
$xs = new XMLStringer(true);
+ $this->outputTo($xs, $namespace, $author, $source);
+ return $xs->getString();
+ }
+ function outputTo($xs, $namespace=false, $author=true, $source=false)
+ {
if ($namespace) {
$attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
'xmlns:thr' => 'http://purl.org/syndication/thread/1.0',
@@ -356,11 +522,11 @@ class Activity
$xs->element('title', null, $this->title);
$xs->element('content', array('type' => 'html'), $this->content);
-
+
if (!empty($this->summary)) {
$xs->element('summary', null, $this->summary);
}
-
+
if (!empty($this->link)) {
$xs->element('link', array('rel' => 'alternate',
'type' => 'text/html'),
@@ -372,12 +538,24 @@ class Activity
$xs->element('activity:verb', null, $this->verb);
$published = self::iso8601Date($this->time);
-
+
$xs->element('published', null, $published);
$xs->element('updated', null, $published);
-
+
if ($author) {
$this->actor->outputTo($xs, 'author');
+
+ // XXX: Remove ASAP! Author information
+ // has been moved to the author element in the Activity
+ // Streams spec. We're outputting actor only for backward
+ // compatibility with clients that can only parse
+ // activities based on older versions of the spec.
+
+ $depMsg = 'Deprecation warning: activity:actor is present '
+ . 'only for backward compatibility. It will be '
+ . 'removed in the next version of StatusNet.';
+ $xs->comment($depMsg);
+ $this->actor->outputTo($xs, 'activity:actor');
}
if ($this->verb != ActivityVerb::POST || count($this->objects) != 1) {
@@ -444,7 +622,7 @@ class Activity
}
// can be either URLs or enclosure objects
-
+
foreach ($this->enclosures as $enclosure) {
if (is_string($enclosure)) {
$xs->element('link', array('rel' => 'enclosure',
@@ -465,7 +643,7 @@ class Activity
if ($source && !empty($this->source)) {
$xs->elementStart('source');
-
+
$xs->element('id', null, $this->source->id);
$xs->element('title', null, $this->source->title);
@@ -474,7 +652,7 @@ class Activity
'type' => 'text/html',
'href' => $this->source->links['alternate']));
}
-
+
if (array_key_exists('self', $this->source->links)) {
$xs->element('link', array('rel' => 'self',
'type' => 'application/atom+xml',
@@ -493,7 +671,7 @@ class Activity
if (!empty($this->source->updated)) {
$xs->element('updated', null, $this->source->updated);
}
-
+
$xs->elementEnd('source');
}
@@ -510,7 +688,7 @@ class Activity
}
// For throwing in extra elements; used for statusnet:notice_info
-
+
foreach ($this->extra as $el) {
list($tag, $attrs, $content) = $el;
$xs->element($tag, $attrs, $content);
@@ -518,9 +696,7 @@ class Activity
$xs->elementEnd('entry');
- $str = $xs->getString();
-
- return $str;
+ return;
}
private function _child($element, $tag, $namespace=self::SPEC)
diff --git a/lib/activitycontext.php b/lib/activitycontext.php
index fd0dfe06c1..2eff3fb15f 100644
--- a/lib/activitycontext.php
+++ b/lib/activitycontext.php
@@ -130,4 +130,80 @@ class ActivityContext
common_log(LOG_ERR, "Ignoring bogus georss:point value $point");
return null;
}
+
+ /**
+ * Returns context (StatusNet stuff) as an array suitable for serializing
+ * in JSON. Right now context stuff is an extension to Activity.
+ *
+ * @return array the context
+ */
+
+ function asArray()
+ {
+ $context = array();
+
+ $context['inReplyTo'] = $this->getInReplyToArray();
+ $context['conversation'] = $this->conversation;
+ $context['forwardId'] = $this->forwardID;
+ $context['forwardUrl'] = $this->forwardUrl;
+
+ return array_filter($context);
+ }
+
+ /**
+ * Returns an array of arrays representing Activity Objects (intended to be
+ * serialized in JSON) that represent WHO the Activity is supposed to
+ * be received by. This is not really specified but appears in an example
+ * of the current spec as an extension. We might want to figure out a JSON
+ * serialization for OStatus and use that to express mentions instead.
+ *
+ * XXX: People's ideas on how to do this are all over the place
+ *
+ * @return array the array of recipients
+ */
+
+ function getToArray()
+ {
+ $tos = array();
+
+ foreach ($this->attention as $attnUrl) {
+ $to = array(
+ 'objectType' => 'person',
+ 'id' => $attnUrl,
+ 'url' => $attnUrl
+ );
+ $tos[] = $to;
+ }
+
+ return $tos;
+ }
+
+ /**
+ * Return an array for the notices this notice is a reply to
+ * suitable for serializing as JSON note objects.
+ *
+ * @return array the array of notes
+ */
+
+ function getInReplyToArray()
+ {
+ if (empty($this->replyToID) && empty($this->replyToUrl)) {
+ return null;
+ }
+
+ $replyToObj = array('objectType' => 'note');
+
+ // XXX: Possibly shorten this to just the numeric ID?
+ // Currently, it's the full URI of the notice.
+ if (!empty($this->replyToID)) {
+ $replyToObj['id'] = $this->replyToID;
+ }
+ if (!empty($this->replyToUrl)) {
+ $replyToObj['url'] = $this->replyToUrl;
+ }
+
+ return $replyToObj;
+ }
+
}
+
diff --git a/lib/activityimporter.php b/lib/activityimporter.php
index b3b7ffb066..aa9b95e084 100644
--- a/lib/activityimporter.php
+++ b/lib/activityimporter.php
@@ -4,7 +4,7 @@
* Copyright (C) 2010, StatusNet, Inc.
*
* class to import activities as part of a user's timeline
- *
+ *
* PHP version 5
*
* This program is free software: you can redistribute it and/or modify
@@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class ActivityImporter extends QueueHandler
{
private $trusted = false;
@@ -56,7 +55,6 @@ class ActivityImporter extends QueueHandler
*
* @return
*/
-
function handle($data)
{
list($user, $author, $activity, $trusted) = $data;
@@ -65,9 +63,8 @@ class ActivityImporter extends QueueHandler
$done = null;
- if (Event::handle('StartImportActivity',
+ if (Event::handle('StartImportActivity',
array($user, $author, $activity, $trusted, &$done))) {
-
try {
switch ($activity->verb) {
case ActivityVerb::FOLLOW:
@@ -80,9 +77,10 @@ class ActivityImporter extends QueueHandler
$this->postNote($user, $author, $activity);
break;
default:
- throw new ClientException("Unknown verb: {$activity->verb}");
+ // TRANS: Client exception thrown when using an unknown verb for the activity importer.
+ throw new ClientException(sprintf(_("Unknown verb: \"%s\"."),$activity->verb));
}
- Event::handle('EndImportActivity',
+ Event::handle('EndImportActivity',
array($user, $author, $activity, $trusted));
$done = true;
} catch (ClientException $ce) {
@@ -98,31 +96,31 @@ class ActivityImporter extends QueueHandler
}
return $done;
}
-
+
function subscribeProfile($user, $author, $activity)
{
$profile = $user->getProfile();
if ($activity->objects[0]->id == $author->id) {
-
if (!$this->trusted) {
- throw new ClientException(_("Can't force subscription for untrusted user."));
+ // TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+ throw new ClientException(_("Cannot force subscription for untrusted user."));
}
$other = $activity->actor;
$otherUser = User::staticGet('uri', $other->id);
-
+
if (!empty($otherUser)) {
$otherProfile = $otherUser->getProfile();
} else {
- throw new Exception("Can't force remote user to subscribe.");
+ // TRANS: Client exception thrown when trying to for a remote user to subscribe.
+ throw new Exception(_("Cannot force remote user to subscribe."));
}
// XXX: don't do this for untrusted input!
Subscription::start($otherProfile, $profile);
-
- } else if (empty($activity->actor)
+ } else if (empty($activity->actor)
|| $activity->actor->id == $author->id) {
$other = $activity->objects[0];
@@ -130,12 +128,14 @@ class ActivityImporter extends QueueHandler
$otherProfile = Profile::fromUri($other->id);
if (empty($otherProfile)) {
+ // TRANS: Client exception thrown when trying to subscribe to an unknown profile.
throw new ClientException(_("Unknown profile."));
}
Subscription::start($profile, $otherProfile);
} else {
- throw new Exception("This activity seems unrelated to our user.");
+ // TRANS: Client exception thrown when trying to import an event not related to the importing user.
+ throw new Exception(_("This activity seems unrelated to our user."));
}
}
@@ -150,7 +150,8 @@ class ActivityImporter extends QueueHandler
if (empty($group)) {
$oprofile = Ostatus_profile::ensureActivityObjectProfile($activity->objects[0]);
if (!$oprofile->isGroup()) {
- throw new ClientException("Remote profile is not a group!");
+ // TRANS: Client exception thrown when trying to join a remote group that is not a group.
+ throw new ClientException(_("Remote profile is not a group!"));
}
$group = $oprofile->localGroup();
}
@@ -158,7 +159,8 @@ class ActivityImporter extends QueueHandler
assert(!empty($group));
if ($user->isMember($group)) {
- throw new ClientException("User is already a member of this group.");
+ // TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+ throw new ClientException(_("User is already a member of this group."));
}
if (Event::handle('StartJoinGroup', array($group, $user))) {
@@ -178,7 +180,7 @@ class ActivityImporter extends QueueHandler
$notice = Notice::staticGet('uri', $sourceUri);
if (!empty($notice)) {
-
+
common_log(LOG_INFO, "Notice {$sourceUri} already exists.");
if ($this->trusted) {
@@ -194,12 +196,15 @@ class ActivityImporter extends QueueHandler
$notice->update($orig);
return;
} else {
- throw new ClientException(sprintf(_("Already know about notice %s and ".
- " it's got a different author %s."),
+ // TRANS: Client exception thrown when trying to import a notice by another user.
+ // TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+ throw new ClientException(sprintf(_('Already know about notice %1$s and '.
+ ' it has a different author %2$s.'),
$sourceUri, $uri));
}
} else {
- throw new ClientException("Not overwriting author info for non-trusted user.");
+ // TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+ throw new ClientException(_("Not overwriting author info for non-trusted user."));
}
}
@@ -213,8 +218,9 @@ class ActivityImporter extends QueueHandler
$sourceContent = $note->title;
} else {
// @fixme fetch from $sourceUrl?
- // @todo i18n FIXME: use sprintf and add i18n.
- throw new ClientException("No content for notice {$sourceUri}.");
+ // TRANS: Client exception thrown when trying to import a notice without content.
+ // TRANS: %s is the notice URI.
+ throw new ClientException(sprintf(_("No content for notice %s."),$sourceUri));
}
// Get (safe!) HTML and text versions of the content
@@ -345,7 +351,7 @@ class ActivityImporter extends QueueHandler
return array($groups, $replies);
}
-
+
function purify($content)
{
diff --git a/lib/activitymover.php b/lib/activitymover.php
new file mode 100644
index 0000000000..495d7b4caa
--- /dev/null
+++ b/lib/activitymover.php
@@ -0,0 +1,166 @@
+.
+ *
+ * @category Cache
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+ // This check helps protect against security problems;
+ // your code file can't be executed directly from the web.
+ exit(1);
+}
+
+/**
+ * Class comment
+ *
+ * @category General
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+class ActivityMover extends QueueHandler
+{
+ function transport()
+ {
+ return 'actmove';
+ }
+
+ function handle($data)
+ {
+ list ($act, $sink, $userURI, $remoteURI) = $data;
+
+ $user = User::staticGet('uri', $userURI);
+ $remote = Profile::fromURI($remoteURI);
+
+ try {
+ $this->moveActivity($act, $sink, $user, $remote);
+ } catch (ClientException $cex) {
+ $this->log(LOG_WARNING,
+ $cex->getMessage());
+ // "don't retry me"
+ return true;
+ } catch (ServerException $sex) {
+ $this->log(LOG_WARNING,
+ $sex->getMessage());
+ // "retry me" (because we think the server might handle it next time)
+ return false;
+ } catch (Exception $ex) {
+ $this->log(LOG_WARNING,
+ $ex->getMessage());
+ // "don't retry me"
+ return true;
+ }
+ }
+
+ function moveActivity($act, $sink, $user, $remote)
+ {
+ if (empty($user)) {
+ throw new Exception(sprintf(_("No such user %s."),$act->actor->id));
+ }
+
+ switch ($act->verb) {
+ case ActivityVerb::FAVORITE:
+ $this->log(LOG_INFO,
+ "Moving favorite of {$act->objects[0]->id} by ".
+ "{$act->actor->id} to {$remote->nickname}.");
+ // push it, then delete local
+ $sink->postActivity($act);
+ $notice = Notice::staticGet('uri', $act->objects[0]->id);
+ if (!empty($notice)) {
+ $fave = Fave::pkeyGet(array('user_id' => $user->id,
+ 'notice_id' => $notice->id));
+ $fave->delete();
+ }
+ break;
+ case ActivityVerb::POST:
+ $this->log(LOG_INFO,
+ "Moving notice {$act->objects[0]->id} by ".
+ "{$act->actor->id} to {$remote->nickname}.");
+ // XXX: send a reshare, not a post
+ $sink->postActivity($act);
+ $notice = Notice::staticGet('uri', $act->objects[0]->id);
+ if (!empty($notice)) {
+ $notice->delete();
+ }
+ break;
+ case ActivityVerb::JOIN:
+ $this->log(LOG_INFO,
+ "Moving group join of {$act->objects[0]->id} by ".
+ "{$act->actor->id} to {$remote->nickname}.");
+ $sink->postActivity($act);
+ $group = User_group::staticGet('uri', $act->objects[0]->id);
+ if (!empty($group)) {
+ Group_member::leave($group->id, $user->id);
+ }
+ break;
+ case ActivityVerb::FOLLOW:
+ if ($act->actor->id == $user->uri) {
+ $this->log(LOG_INFO,
+ "Moving subscription to {$act->objects[0]->id} by ".
+ "{$act->actor->id} to {$remote->nickname}.");
+ $sink->postActivity($act);
+ $other = Profile::fromURI($act->objects[0]->id);
+ if (!empty($other)) {
+ Subscription::cancel($user->getProfile(), $other);
+ }
+ } else {
+ $otherUser = User::staticGet('uri', $act->actor->id);
+ if (!empty($otherUser)) {
+ $this->log(LOG_INFO,
+ "Changing sub to {$act->objects[0]->id}".
+ "by {$act->actor->id} to {$remote->nickname}.");
+ $otherProfile = $otherUser->getProfile();
+ Subscription::start($otherProfile, $remote);
+ Subscription::cancel($otherProfile, $user->getProfile());
+ } else {
+ $this->log(LOG_NOTICE,
+ "Not changing sub to {$act->objects[0]->id}".
+ "by remote {$act->actor->id} ".
+ "to {$remote->nickname}.");
+ }
+ }
+ break;
+ }
+ }
+
+ /**
+ * Log some data
+ *
+ * Add a header for our class so we know who did it.
+ *
+ * @param int $level Log level, like LOG_ERR or LOG_INFO
+ * @param string $message Message to log
+ *
+ * @return void
+ */
+ protected function log($level, $message)
+ {
+ common_log($level, "ActivityMover: " . $message);
+ }
+}
diff --git a/lib/activityobject.php b/lib/activityobject.php
index f774dd3c8b..a69e1a1b42 100644
--- a/lib/activityobject.php
+++ b/lib/activityobject.php
@@ -179,7 +179,7 @@ class ActivityObject
if (empty($this->type)) {
$this->type = self::PERSON; // XXX: is this fair?
}
-
+
// start with
$title = ActivityUtils::childHtmlContent($element, self::TITLE);
@@ -419,7 +419,7 @@ class ActivityObject
static function fromNotice(Notice $notice)
{
$object = new ActivityObject();
-
+
if (Event::handle('StartActivityObjectFromNotice', array($notice, &$object))) {
$object->type = ActivityObject::NOTE;
@@ -526,7 +526,7 @@ class ActivityObject
return $object;
}
-
+
function outputTo($xo, $tag='activity:object')
{
if (!empty($tag)) {
@@ -546,7 +546,10 @@ class ActivityObject
if (!empty($this->title)) {
$name = common_xml_safe_str($this->title);
if ($tag == 'author') {
- $xo->element(self::NAME, null, $name);
+ // XXX: Backward compatibility hack -- atom:name should contain
+ // full name here, instead of nickname, i.e.: $name. Change
+ // this in the next version.
+ $xo->element(self::NAME, null, $this->poco->preferredUsername);
} else {
$xo->element(self::TITLE, null, $name);
}
@@ -630,4 +633,103 @@ class ActivityObject
return $xs->getString();
}
+
+ /*
+ * Returns an array based on this Activity Object suitable for
+ * encoding as JSON.
+ *
+ * @return array $object the activity object array
+ */
+
+ function asArray()
+ {
+ $object = array();
+
+ // XXX: attachedObjects are added by Activity
+
+ // displayName
+ $object['displayName'] = $this->title;
+
+ // TODO: downstreamDuplicates
+
+ // embedCode (used for video)
+
+ // id
+ //
+ // XXX: Should we use URL here? or a crazy tag URI?
+ $object['id'] = $this->id;
+
+ if ($this->type == ActivityObject::PERSON
+ || $this->type == ActivityObject::GROUP) {
+
+ // XXX: Not sure what the best avatar is to use for the
+ // author's "image". For now, I'm using the large size.
+
+ $avatarLarge = null;
+ $avatarMediaLinks = array();
+
+ foreach ($this->avatarLinks as $a) {
+
+ // Make a MediaLink for every other Avatar
+ $avatar = new ActivityStreamsMediaLink(
+ $a->url,
+ $a->width,
+ $a->height,
+ $a->type,
+ 'avatar'
+ );
+
+ // Find the big avatar to use as the "image"
+ if ($a->height == AVATAR_PROFILE_SIZE) {
+ $imgLink = $avatar;
+ }
+
+ $avatarMediaLinks[] = $avatar->asArray();
+ }
+
+ $object['avatarLinks'] = $avatarMediaLinks; // extension
+
+ // image
+ $object['image'] = $imgLink->asArray();
+ }
+
+ // objectType
+ //
+ // We can probably use the whole schema URL here but probably the
+ // relative simple name is easier to parse
+ $object['type'] = substr($this->type, strrpos($this->type, '/') + 1);
+
+ // summary
+ $object['summary'] = $this->summary;
+
+ // TODO: upstreamDuplicates
+
+ // url (XXX: need to put the right thing here...)
+ $object['url'] = $this->id;
+
+ /* Extensions */
+
+ foreach ($this->extra as $e) {
+ list($objectName, $props, $txt) = $e;
+ $object[$objectName] = $props;
+ }
+
+ // GeoJSON
+
+ if (!empty($this->geopoint)) {
+
+ list($lat, $long) = explode(' ', $this->geopoint);
+
+ $object['geopoint'] = array(
+ 'type' => 'Point',
+ 'coordinates' => array($lat, $long)
+ );
+ }
+
+ if (!empty($this->poco)) {
+ $object['contact'] = $this->poco->asArray();
+ }
+
+ return array_filter($object);
+ }
}
diff --git a/lib/activitysink.php b/lib/activitysink.php
new file mode 100644
index 0000000000..ec12ffb6c2
--- /dev/null
+++ b/lib/activitysink.php
@@ -0,0 +1,175 @@
+.
+ *
+ * @category AtomPub
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+ // This check helps protect against security problems;
+ // your code file can't be executed directly from the web.
+ exit(1);
+}
+
+/**
+ * A remote service that supports AtomPub
+ *
+ * @category AtomPub
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+class ActivitySink
+{
+ protected $svcDocUrl = null;
+ protected $username = null;
+ protected $password = null;
+ protected $collections = array();
+
+ function __construct($svcDocUrl, $username, $password)
+ {
+ $this->svcDocUrl = $svcDocUrl;
+ $this->username = $username;
+ $this->password = $password;
+
+ $this->_parseSvcDoc();
+ }
+
+ private function _parseSvcDoc()
+ {
+ $client = new HTTPClient();
+ $response = $client->get($this->svcDocUrl);
+
+ if ($response->getStatus() != 200) {
+ throw new Exception("Can't get {$this->svcDocUrl}; response status " . $response->getStatus());
+ }
+
+ $xml = $response->getBody();
+
+ $dom = new DOMDocument();
+
+ // We don't want to bother with white spaces
+ $dom->preserveWhiteSpace = false;
+
+ // Don't spew XML warnings to output
+ $old = error_reporting();
+ error_reporting($old & ~E_WARNING);
+ $ok = $dom->loadXML($xml);
+ error_reporting($old);
+
+ $path = new DOMXPath($dom);
+
+ $path->registerNamespace('atom', 'http://www.w3.org/2005/Atom');
+ $path->registerNamespace('app', 'http://www.w3.org/2007/app');
+ $path->registerNamespace('activity', 'http://activitystrea.ms/spec/1.0/');
+
+ $collections = $path->query('//app:collection');
+
+ for ($i = 0; $i < $collections->length; $i++) {
+ $collection = $collections->item($i);
+ $url = $collection->getAttribute('href');
+ $takesEntries = false;
+ $accepts = $path->query('app:accept', $collection);
+ for ($j = 0; $j < $accepts->length; $j++) {
+ $accept = $accepts->item($j);
+ $acceptValue = $accept->nodeValue;
+ if (preg_match('#application/atom\+xml(;\s*type=entry)?#', $acceptValue)) {
+ $takesEntries = true;
+ break;
+ }
+ }
+
+ if (!$takesEntries) {
+ continue;
+ }
+ $verbs = $path->query('activity:verb', $collection);
+ if ($verbs->length == 0) {
+ $this->_addCollection(ActivityVerb::POST, $url);
+ } else {
+ for ($k = 0; $k < $verbs->length; $k++) {
+ $verb = $verbs->item($k);
+ $this->_addCollection($verb->nodeValue, $url);
+ }
+ }
+ }
+ }
+
+ private function _addCollection($verb, $url)
+ {
+ if (array_key_exists($verb, $this->collections)) {
+ $this->collections[$verb][] = $url;
+ } else {
+ $this->collections[$verb] = array($url);
+ }
+ return;
+ }
+
+ function postActivity($activity)
+ {
+ if (!array_key_exists($activity->verb, $this->collections)) {
+ throw new Exception("No collection for verb {$activity->verb}");
+ } else {
+ if (count($this->collections[$activity->verb]) > 1) {
+ common_log(LOG_NOTICE, "More than one collection for verb {$activity->verb}");
+ }
+ $this->postToCollection($this->collections[$activity->verb][0], $activity);
+ }
+ }
+
+ function postToCollection($url, $activity)
+ {
+ $client = new HTTPClient($url);
+
+ $client->setMethod('POST');
+ $client->setAuth($this->username, $this->password);
+ $client->setHeader('Content-Type', 'application/atom+xml;type=entry');
+ $client->setBody($activity->asString(true, true, true));
+
+ $response = $client->send();
+
+ $status = $response->getStatus();
+ $reason = $response->getReasonPhrase();
+
+ if ($status >= 200 && $status < 300) {
+ return true;
+ } else if ($status >= 400 && $status < 500) {
+ // TRANS: Client exception thrown when post to collection fails with a 400 status.
+ // TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+ throw new ClientException(sprintf(_m('URLSTATUSREASON','%1$s %2$s %3$s'), $url, $status, $reason));
+ } else if ($status >= 500 && $status < 600) {
+ // TRANS: Server exception thrown when post to collection fails with a 500 status.
+ // TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+ throw new ServerException(sprintf(_m('URLSTATUSREASON','%1$s %2$s %3$s'), $url, $status, $reason));
+ } else {
+ // That's unexpected.
+ // TRANS: Exception thrown when post to collection fails with a status that is not handled.
+ // TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+ throw new Exception(sprintf(_m('URLSTATUSREASON','%1$s %2$s %3$s'), $url, $status, $reason));
+ }
+ }
+}
diff --git a/lib/activitystreamjsondocument.php b/lib/activitystreamjsondocument.php
new file mode 100644
index 0000000000..2b99d19eb7
--- /dev/null
+++ b/lib/activitystreamjsondocument.php
@@ -0,0 +1,217 @@
+.
+ *
+ * @category Feed
+ * @package StatusNet
+ * @author Zach Copley
+ * @copyright 2011 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/
+ */
+
+if (!defined('STATUSNET'))
+{
+ exit(1);
+}
+
+/**
+ * A class for generating JSON documents that represent an Activity Streams
+ *
+ * @category Feed
+ * @package StatusNet
+ * @author Zach Copley
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://status.net/
+ */
+class ActivityStreamJSONDocument
+{
+
+ /* Top level array representing the document */
+ protected $doc = array();
+
+ /* The current authenticated user */
+ protected $cur = null;
+
+ /**
+ * Constructor
+ *
+ * @param User $cur the current authenticated user
+ */
+
+ function __construct($cur = null)
+ {
+
+ $this->cur = $cur;
+
+ /* Title of the JSON document */
+ $this->doc['title'] = null;
+
+ /* Array of activity items */
+ $this->doc['items'] = array();
+
+ /* Array of links associated with the document */
+ $this->doc['links'] = array();
+
+ }
+
+ /**
+ * Set the title of the document
+ *
+ * @param String $title the title
+ */
+
+ function setTitle($title)
+ {
+ $this->doc['title'] = $title;
+ }
+
+ /**
+ * Add more than one Item to the document
+ *
+ * @param mixed $notices an array of Notice objects or handle
+ *
+ */
+
+ function addItemsFromNotices($notices)
+ {
+ if (is_array($notices)) {
+ foreach ($notices as $notice) {
+ $this->addItemFromNotice($notice);
+ }
+ } else {
+ while ($notices->fetch()) {
+ $this->addItemFromNotice($notices);
+ }
+ }
+ }
+
+ /**
+ * Add a single Notice to the document
+ *
+ * @param Notice $notice a Notice to add
+ */
+
+ function addItemFromNotice($notice)
+ {
+ $cur = empty($this->cur) ? common_current_user() : $this->cur;
+
+ $act = $notice->asActivity($cur);
+ $act->extra[] = $notice->noticeInfo($cur);
+ array_push($this->doc['items'], $act->asArray());
+ }
+
+ /**
+ * Add a link to the JSON document
+ *
+ * @param string $url the URL for the link
+ * @param string $rel the link relationship
+ */
+ function addLink($url = null, $rel = null, $mediaType = null)
+ {
+ $link = new ActivityStreamsLink($url, $rel, $mediaType);
+ $this->doc['link'][] = $link->asArray();
+ }
+
+ /*
+ * Return the entire document as a big string of JSON
+ *
+ * @return string encoded JSON output
+ */
+ function asString()
+ {
+ return json_encode(array_filter($this->doc));
+ }
+
+}
+
+/**
+ * A class for representing MediaLinks in JSON Activities
+ *
+ * @category Feed
+ * @package StatusNet
+ * @author Zach Copley
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://status.net/
+ */
+
+class ActivityStreamsMediaLink extends ActivityStreamsLink
+{
+ private $linkDict;
+
+ function __construct(
+ $url = null,
+ $width = null,
+ $height = null,
+ $mediaType = null,
+ $rel = null,
+ $duration = null
+ )
+ {
+ parent::__construct($url, $rel, $mediaType);
+ $this->linkDict = array(
+ 'width' => $width,
+ 'height' => $height,
+ 'duration' => $duration
+ );
+ }
+
+ function asArray()
+ {
+ return array_merge(
+ parent::asArray(),
+ array_filter($this->linkDict)
+ );
+ }
+}
+
+/**
+ * A class for representing links in JSON Activities
+ *
+ * @category Feed
+ * @package StatusNet
+ * @author Zach Copley
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://status.net/
+ */
+
+class ActivityStreamsLink
+{
+ private $linkDict;
+
+ function __construct($url = null, $rel = null, $mediaType = null)
+ {
+ // links MUST have a URL
+ if (empty($url)) {
+ throw new Exception('Links must have a URL.');
+ }
+
+ $this->linkDict = array(
+ 'url' => $url,
+ 'rel' => $rel, // extension
+ 'type' => $mediaType // extension
+ );
+ }
+
+ function asArray()
+ {
+ return array_filter($this->linkDict);
+ }
+}
diff --git a/lib/activityutils.php b/lib/activityutils.php
index 11befc0ed4..3aa09deb4e 100644
--- a/lib/activityutils.php
+++ b/lib/activityutils.php
@@ -273,14 +273,6 @@ class ActivityUtils
static function getFeedAuthor($feedEl)
{
- // Try the feed author
-
- $author = ActivityUtils::child($feedEl, Activity::AUTHOR, Activity::ATOM);
-
- if (!empty($author)) {
- return new ActivityObject($author);
- }
-
// Try old and deprecated activity:subject
$subject = ActivityUtils::child($feedEl, Activity::SUBJECT, Activity::SPEC);
@@ -289,6 +281,14 @@ class ActivityUtils
return new ActivityObject($subject);
}
+ // Try the feed author
+
+ $author = ActivityUtils::child($feedEl, Activity::AUTHOR, Activity::ATOM);
+
+ if (!empty($author)) {
+ return new ActivityObject($author);
+ }
+
// Sheesh. Not a very nice feed! Let's try fingerpoken in the
// entries.
@@ -298,14 +298,6 @@ class ActivityUtils
$entry = $entries->item(0);
- // Try the author
-
- $author = ActivityUtils::child($entry, Activity::AUTHOR, Activity::ATOM);
-
- if (!empty($author)) {
- return new ActivityObject($author);
- }
-
// Try the (deprecated) activity:actor
$actor = ActivityUtils::child($entry, Activity::ACTOR, Activity::SPEC);
@@ -313,6 +305,14 @@ class ActivityUtils
if (!empty($actor)) {
return new ActivityObject($actor);
}
+
+ // Try the author
+
+ $author = ActivityUtils::child($entry, Activity::AUTHOR, Activity::ATOM);
+
+ if (!empty($author)) {
+ return new ActivityObject($author);
+ }
}
return null;
diff --git a/lib/apiaction.php b/lib/apiaction.php
index 7eba1b3b8d..ebda36db7f 100644
--- a/lib/apiaction.php
+++ b/lib/apiaction.php
@@ -265,8 +265,7 @@ class ApiAction extends Action
? Design::url($design->backgroundimage) : '';
$twitter_user['profile_background_tile']
- = empty($design->disposition)
- ? '' : ($design->disposition & BACKGROUND_TILE) ? 'true' : 'false';
+ = (bool)($design->disposition & BACKGROUND_TILE);
$twitter_user['statuses_count'] = $profile->noticeCount();
@@ -414,7 +413,7 @@ class ApiAction extends Action
{
$twitter_group = array();
- $twitter_group['id'] = $group->id;
+ $twitter_group['id'] = intval($group->id);
$twitter_group['url'] = $group->permalink();
$twitter_group['nickname'] = $group->nickname;
$twitter_group['fullname'] = $group->fullname;
@@ -563,7 +562,7 @@ class ApiAction extends Action
$details['notifications_enabled'] = $notifications;
$details['blocking'] = $source->hasBlocked($target);
- $details['id'] = $source->id;
+ $details['id'] = intval($source->id);
return $details;
}
@@ -947,10 +946,10 @@ class ApiAction extends Action
$from_profile = $message->getFrom();
$to_profile = $message->getTo();
- $dmsg['id'] = $message->id;
- $dmsg['sender_id'] = $message->from_profile;
+ $dmsg['id'] = intval($message->id);
+ $dmsg['sender_id'] = intval($from_profile);
$dmsg['text'] = trim($message->content);
- $dmsg['recipient_id'] = $message->to_profile;
+ $dmsg['recipient_id'] = intval($to_profile);
$dmsg['created_at'] = $this->dateTwitter($message->created);
$dmsg['sender_screen_name'] = $from_profile->nickname;
$dmsg['recipient_screen_name'] = $to_profile->nickname;
@@ -1238,9 +1237,12 @@ class ApiAction extends Action
return;
}
- function clientError($msg, $code = 400, $format = 'xml')
+ function clientError($msg, $code = 400, $format = null)
{
$action = $this->trimmed('action');
+ if ($format === null) {
+ $format = $this->format;
+ }
common_debug("User error '$code' on '$action': $msg", __FILE__);
@@ -1280,9 +1282,12 @@ class ApiAction extends Action
}
}
- function serverError($msg, $code = 500, $content_type = 'xml')
+ function serverError($msg, $code = 500, $content_type = null)
{
$action = $this->trimmed('action');
+ if ($content_type === null) {
+ $content_type = $this->format;
+ }
common_debug("Server error '$code' on '$action': $msg", __FILE__);
@@ -1439,41 +1444,23 @@ class ApiAction extends Action
{
if (empty($id)) {
if (self::is_decimal($this->arg('id'))) {
- return User_group::staticGet($this->arg('id'));
+ return User_group::staticGet('id', $this->arg('id'));
} else if ($this->arg('id')) {
- $nickname = common_canonical_nickname($this->arg('id'));
- $local = Local_group::staticGet('nickname', $nickname);
- if (empty($local)) {
- return null;
- } else {
- return User_group::staticGet('id', $local->id);
- }
+ return User_group::getForNickname($this->arg('id'));
} 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
+ // This is to ensure that a non-numeric group_id still
+ // overrides group_name even if it doesn't get used
if (self::is_decimal($this->arg('group_id'))) {
return User_group::staticGet('id', $this->arg('group_id'));
}
} else if ($this->arg('group_name')) {
- $nickname = common_canonical_nickname($this->arg('group_name'));
- $local = Local_group::staticGet('nickname', $nickname);
- if (empty($local)) {
- return null;
- } else {
- return User_group::staticGet('id', $local->group_id);
- }
+ return User_group::getForNickname($this->arg('group_name'));
}
} else if (self::is_decimal($id)) {
- return User_group::staticGet($id);
+ return User_group::staticGet('id', $id);
} else {
- $nickname = common_canonical_nickname($id);
- $local = Local_group::staticGet('nickname', $nickname);
- if (empty($local)) {
- return null;
- } else {
- return User_group::staticGet('id', $local->group_id);
- }
+ return User_group::getForNickname($id);
}
}
diff --git a/lib/apiauth.php b/lib/apiauth.php
index 1dacf1409b..8a1af8c27d 100644
--- a/lib/apiauth.php
+++ b/lib/apiauth.php
@@ -196,7 +196,13 @@ class ApiAuthAction extends ApiAction
// Set the auth user
if (Event::handle('StartSetApiUser', array(&$user))) {
- $this->auth_user = User::staticGet('id', $appUser->profile_id);
+ $user = User::staticGet('id', $appUser->profile_id);
+ if (!empty($user)) {
+ if (!$user->hasRight(Right::API)) {
+ throw new AuthorizationException(_('Not allowed to use API.'));
+ }
+ }
+ $this->auth_user = $user;
Event::handle('EndSetApiUser', array($user));
}
@@ -274,6 +280,9 @@ class ApiAuthAction extends ApiAction
if (Event::handle('StartSetApiUser', array(&$user))) {
if (!empty($user)) {
+ if (!$user->hasRight(Right::API)) {
+ throw new AuthorizationException(_('Not allowed to use API.'));
+ }
$this->auth_user = $user;
}
@@ -337,7 +346,7 @@ class ApiAuthAction extends ApiAction
}
/**
- * Log an API authentication failer. Collect the proxy and IP
+ * Log an API authentication failure. Collect the proxy and IP
* and log them
*
* @param string $logMsg additional log message
diff --git a/lib/apioauthstore.php b/lib/apioauthstore.php
index 2a65fffc4b..f1f88b13a1 100644
--- a/lib/apioauthstore.php
+++ b/lib/apioauthstore.php
@@ -152,8 +152,11 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore
);
}
- // check to see if we have previously issued an access token for this application
- // and profile
+ // Check to see if we have previously issued an access token for
+ // this application and profile; if so we can just return the
+ // existing access token. That seems to be the best practice. It
+ // makes it so users only have to authorize the app once per
+ // machine.
$appUser = new Oauth_application_user();
@@ -172,19 +175,40 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore
)
);
- $at = new Token();
+ $at = null;
- // fetch the full access token
- $at->consumer_key = $consumer->key;
- $at->tok = $appUser->token;
+ // Special case: we used to store request tokens in the
+ // Oauth_application_user record, and the access_type would
+ // always be 0 (no access) as a failsafe until an access
+ // token was issued and replaced the request token. There could
+ // be a few old Oauth_application_user records storing request
+ // tokens still around, and we don't want to accidentally
+ // return a useless request token instead of a new access
+ // token. So if we find one, we generate a new access token
+ // and update the existing Oauth_application_user record before
+ // returning the new access token. This should be rare.
- $result = $at->find(true);
+ if ($appUser->access_type == 0) {
- if (!$result) {
- throw new Exception(
- // TRANS: Exception thrown when no access token can be issued.
- _('Could not issue access token.')
- );
+ $at = $this->generateNewAccessToken($consumer, $rt, $verifier);
+ $this->updateAppUser($appUser, $app, $at);
+
+ } else {
+
+ $at = new Token();
+
+ // fetch the full access token
+ $at->consumer_key = $consumer->key;
+ $at->tok = $appUser->token;
+
+ $result = $at->find(true);
+
+ if (!$result) {
+ throw new Exception(
+ // TRANS: Exception thrown when no access token can be issued.
+ _('Could not issue access token.')
+ );
+ }
}
// Yay, we can re-issue the access token
@@ -200,48 +224,8 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore
)
);
- // make a brand new access token
- $at = new Token();
-
- $at->consumer_key = $consumer->key;
- $at->tok = common_good_rand(16);
- $at->secret = common_good_rand(16);
- $at->type = 1; // access
- $at->verifier = $verifier;
- $at->verified_callback = $rt->verified_callback; // 1.0a
- $at->created = common_sql_now();
-
- if (!$at->insert()) {
- $e = $at->_lastError;
- common_debug('access token "' . $at->tok . '" not inserted: "' . $e->message . '"', __FILE__);
- return null;
- } else {
- common_debug('access token "' . $at->tok . '" inserted', __FILE__);
- // burn the old one
- $orig_rt = clone($rt);
- $rt->state = 2; // used
- if (!$rt->update($orig_rt)) {
- return null;
- }
- common_debug('request token "' . $rt->tok . '" updated', __FILE__);
- }
-
- // insert a new Oauth_application_user record w/access token
- $appUser = new Oauth_application_user();
-
- $appUser->profile_id = $tokenAssoc->profile_id;;
- $appUser->application_id = $app->id;
- $appUser->access_type = $app->access_type;
- $appUser->token = $at->tok;
- $appUser->created = common_sql_now();
-
- $result = $appUser->insert();
-
- if (!$result) {
- common_log_db_error($appUser, 'INSERT', __FILE__);
- // TRANS: Server error displayed when a database error occurs.
- $this->serverError(_('Database error inserting OAuth application user.'));
- }
+ $at = $this->generateNewAccessToken($consumer, $rt, $verifier);
+ $this->newAppUser($tokenAssoc, $app, $at);
// Okay, good
return new OAuthToken($at->tok, $at->secret);
@@ -261,6 +245,108 @@ class ApiStatusNetOAuthDataStore extends StatusNetOAuthDataStore
}
}
+ /*
+ * Generate a new access token and save it to the database
+ *
+ * @param Consumer $consumer the OAuth consumer
+ * @param Token $rt the authorized request token
+ * @param string $verifier the OAuth 1.0a verifier
+ *
+ * @access private
+ *
+ * @return Token $at the new access token
+ */
+ private function generateNewAccessToken($consumer, $rt, $verifier)
+ {
+ $at = new Token();
+
+ $at->consumer_key = $consumer->key;
+ $at->tok = common_good_rand(16);
+ $at->secret = common_good_rand(16);
+ $at->type = 1; // access
+ $at->verifier = $verifier;
+ $at->verified_callback = $rt->verified_callback; // 1.0a
+ $at->created = common_sql_now();
+
+ if (!$at->insert()) {
+ $e = $at->_lastError;
+ common_debug('access token "' . $at->tok . '" not inserted: "' . $e->message . '"', __FILE__);
+ return null;
+ } else {
+ common_debug('access token "' . $at->tok . '" inserted', __FILE__);
+ // burn the old one
+ $orig_rt = clone($rt);
+ $rt->state = 2; // used
+ if (!$rt->update($orig_rt)) {
+ return null;
+ }
+ common_debug('request token "' . $rt->tok . '" updated', __FILE__);
+ }
+
+ return $at;
+ }
+
+ /*
+ * Add a new app user (Oauth_application_user) record
+ *
+ * @param Oauth_token_association $tokenAssoc token-to-app association
+ * @param Oauth_application $app the OAuth client app
+ * @param Token $at the access token
+ *
+ * @access private
+ *
+ * @return void
+ */
+ private function newAppUser($tokenAssoc, $app, $at)
+ {
+ $appUser = new Oauth_application_user();
+
+ $appUser->profile_id = $tokenAssoc->profile_id;
+ $appUser->application_id = $app->id;
+ $appUser->access_type = $app->access_type;
+ $appUser->token = $at->tok;
+ $appUser->created = common_sql_now();
+
+ $result = $appUser->insert();
+
+ if (!$result) {
+ common_log_db_error($appUser, 'INSERT', __FILE__);
+
+ // TRANS: Server error displayed when a database error occurs.
+ throw new Exception(
+ _('Database error inserting OAuth application user.')
+ );
+ }
+ }
+
+ /*
+ * Update an existing app user (Oauth_application_user) record
+ *
+ * @param Oauth_application_user $appUser existing app user rec
+ * @param Oauth_application $app the OAuth client app
+ * @param Token $at the access token
+ *
+ * @access private
+ *
+ * @return void
+ */
+ private function updateAppUser($appUser, $app, $at)
+ {
+ $original = clone($appUser);
+ $appUser->access_type = $app->access_type;
+ $appUser->token = $at->tok;
+
+ $result = $appUser->update($original);
+
+ if (!$result) {
+ common_log_db_error($appUser, 'UPDATE', __FILE__);
+ // TRANS: Server error displayed when a database error occurs.
+ throw new Exception(
+ _('Database error updating OAuth application user.')
+ );
+ }
+ }
+
/**
* Revoke specified access token
*
diff --git a/lib/applicationeditform.php b/lib/applicationeditform.php
index f53c31feb4..ec6702cd64 100644
--- a/lib/applicationeditform.php
+++ b/lib/applicationeditform.php
@@ -168,6 +168,10 @@ class ApplicationEditForm extends Form
$this->out->element('img', array('src' => $icon));
}
+ $this->out->element('input', array('name' => 'MAX_FILE_SIZE',
+ 'type' => 'hidden',
+ 'id' => 'MAX_FILE_SIZE',
+ 'value' => ImageFile::maxFileSizeInt()));
$this->out->element('label', array('for' => 'app_icon'),
// TRANS: Form input field label for application icon.
_('Icon'));
@@ -176,10 +180,6 @@ class ApplicationEditForm extends Form
'id' => 'app_icon'));
// TRANS: Form guide.
$this->out->element('p', 'form_guide', _('Icon for this application'));
- $this->out->element('input', array('name' => 'MAX_FILE_SIZE',
- 'type' => 'hidden',
- 'id' => 'MAX_FILE_SIZE',
- 'value' => ImageFile::maxFileSizeInt()));
$this->out->elementEnd('li');
$this->out->elementStart('li');
diff --git a/lib/arraywrapper.php b/lib/arraywrapper.php
index 8a1cdd96e1..f9d3c3cf94 100644
--- a/lib/arraywrapper.php
+++ b/lib/arraywrapper.php
@@ -76,6 +76,10 @@ class ArrayWrapper
function __call($name, $args)
{
$item =& $this->_items[$this->_i];
+ if (!is_object($item)) {
+ common_log(LOG_ERR, "Invalid entry " . var_export($item, true) . " at index $this->_i of $this->N; calling $name()");
+ throw new ServerException("Internal error: bad entry in array wrapper list.");
+ }
return call_user_func_array(array($item, $name), $args);
}
}
diff --git a/lib/atom10feed.php b/lib/atom10feed.php
index 881df6605f..8d4b66d8b8 100644
--- a/lib/atom10feed.php
+++ b/lib/atom10feed.php
@@ -108,8 +108,9 @@ class Atom10Feed extends XMLStringer
if (!empty($name)) {
$xs->element('name', null, $name);
} else {
+ // TRANS: Atom feed exception thrown when an author element does not contain a name element.
throw new Atom10FeedException(
- _('author element must contain a name element.')
+ _('Author element must contain a name element.')
);
}
@@ -155,7 +156,8 @@ class Atom10Feed extends XMLStringer
function setActivitySubject($xmlSubject)
{
- throw new ServerException(_('Don\'t use this method!'));
+ // TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+ throw new ServerException(_('Do not use this method!'));
}
function getNamespaces()
diff --git a/lib/atomgroupnoticefeed.php b/lib/atomgroupnoticefeed.php
index 4e7f992662..817191b64a 100644
--- a/lib/atomgroupnoticefeed.php
+++ b/lib/atomgroupnoticefeed.php
@@ -91,8 +91,16 @@ class AtomGroupNoticeFeed extends AtomNoticeFeed
$ao = ActivityObject::fromGroup($group);
- $this->addAuthorRaw($ao->asString('author').
- $ao->asString('activity:subject'));
+ $this->addAuthorRaw($ao->asString('author'));
+
+ $depMsg = 'Deprecation warning: activity:subject is present '
+ . 'only for backward compatibility. It will be '
+ . 'removed in the next version of StatusNet.';
+
+ $this->addAuthorRaw(
+ "\n"
+ . $ao->asString('activity:subject')
+ );
$this->addLink($group->homeUrl());
}
diff --git a/lib/atomusernoticefeed.php b/lib/atomusernoticefeed.php
index 5ca089b859..fb0ac5f831 100644
--- a/lib/atomusernoticefeed.php
+++ b/lib/atomusernoticefeed.php
@@ -59,9 +59,29 @@ class AtomUserNoticeFeed extends AtomNoticeFeed
parent::__construct($cur, $indent);
$this->user = $user;
if (!empty($user)) {
+
$profile = $user->getProfile();
+
$ao = ActivityObject::fromProfile($profile);
+
+ array_push($ao->extra, $profile->profileInfo($cur));
+
+ // XXX: For users, we generate an author _AND_ an
+ // This is for backward compatibility with clients (especially
+ // StatusNet's clients) that assume the Atom will conform to an
+ // older version of the Activity Streams API. Subject should be
+ // removed in future versions of StatusNet.
+
$this->addAuthorRaw($ao->asString('author'));
+
+ $depMsg = 'Deprecation warning: activity:subject is present '
+ . 'only for backward compatibility. It will be '
+ . 'removed in the next version of StatusNet.';
+
+ $this->addAuthorRaw(
+ "\n"
+ . $ao->asString('activity:subject')
+ );
}
// TRANS: Title in atom user notice feed. %s is a user name.
diff --git a/lib/attachmentlist.php b/lib/attachmentlist.php
index 80f8cdb680..cf7c9acc14 100644
--- a/lib/attachmentlist.php
+++ b/lib/attachmentlist.php
@@ -76,8 +76,7 @@ class AttachmentList extends Widget
*/
function show()
{
- $atts = new File;
- $att = $atts->getAttachments($this->notice->id);
+ $att = File::getAttachments($this->notice->id);
if (empty($att)) return 0;
$this->showListStart();
diff --git a/lib/authorizationexception.php b/lib/authorizationexception.php
new file mode 100644
index 0000000000..a9576e3a70
--- /dev/null
+++ b/lib/authorizationexception.php
@@ -0,0 +1,59 @@
+.
+ *
+ * @category Exception
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2011 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+ // This check helps protect against security problems;
+ // your code file can't be executed directly from the web.
+ exit(1);
+}
+
+/**
+ * An exception for authorization issues
+ *
+ * @category Exception
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2011 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+
+class AuthorizationException extends ClientException
+{
+ /**
+ * Constructor
+ *
+ * @param string $message Message for the exception
+ */
+ public function __construct($message=null)
+ {
+ parent::__construct($message, 403);
+ }
+}
diff --git a/lib/cache.php b/lib/cache.php
index 8dc97a6428..eb4eb66656 100644
--- a/lib/cache.php
+++ b/lib/cache.php
@@ -164,6 +164,7 @@ class Cache
{
$value = false;
+ common_perf_counter('Cache::get', $key);
if (Event::handle('StartCacheGet', array(&$key, &$value))) {
if (array_key_exists($key, $this->_items)) {
$value = unserialize($this->_items[$key]);
@@ -188,6 +189,7 @@ class Cache
{
$success = false;
+ common_perf_counter('Cache::set', $key);
if (Event::handle('StartCacheSet', array(&$key, &$value, &$flag,
&$expiry, &$success))) {
@@ -214,6 +216,7 @@ class Cache
function increment($key, $step=1)
{
$value = false;
+ common_perf_counter('Cache::increment', $key);
if (Event::handle('StartCacheIncrement', array(&$key, &$step, &$value))) {
// Fallback is not guaranteed to be atomic,
// and may original expiry value.
@@ -239,6 +242,7 @@ class Cache
{
$success = false;
+ common_perf_counter('Cache::delete', $key);
if (Event::handle('StartCacheDelete', array(&$key, &$success))) {
if (array_key_exists($key, $this->_items)) {
unset($this->_items[$key]);
diff --git a/lib/commandinterpreter.php b/lib/commandinterpreter.php
index c288c2e5f0..fe426f1fcd 100644
--- a/lib/commandinterpreter.php
+++ b/lib/commandinterpreter.php
@@ -25,252 +25,299 @@ class CommandInterpreter
{
function handle_command($user, $text)
{
- # XXX: localise
+ // XXX: localise
$text = preg_replace('/\s+/', ' ', trim($text));
list($cmd, $arg) = $this->split_arg($text);
- # We try to support all the same commands as Twitter, see
- # http://getsatisfaction.com/twitter/topics/what_are_the_twitter_commands
- # There are a few compatibility commands from earlier versions of
- # StatusNet
+ // We try to support all the same commands as Twitter, see
+ // http://getsatisfaction.com/twitter/topics/what_are_the_twitter_commands
+ // There are a few compatibility commands from earlier versions of
+ // StatusNet
- switch(strtolower($cmd)) {
- case 'help':
- if ($arg) {
- return null;
- }
- return new HelpCommand($user);
- case 'login':
- if ($arg) {
- return null;
- } else {
- return new LoginCommand($user);
- }
- case 'lose':
- if ($arg) {
+ $cmd = strtolower($cmd);
+
+ if (Event::handle('StartIntepretCommand', array($cmd, $arg, $user, &$result))) {
+ switch($cmd) {
+ case 'help':
+ if ($arg) {
+ $result = null;
+ } else {
+ $result = new HelpCommand($user);
+ }
+ break;
+ case 'login':
+ if ($arg) {
+ $result = null;
+ } else {
+ $result = new LoginCommand($user);
+ }
+ break;
+ case 'lose':
+ if ($arg) {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new LoseCommand($user, $other);
+ }
+ } else {
+ $result = null;
+ }
+ break;
+ case 'subscribers':
+ if ($arg) {
+ $result = null;
+ } else {
+ $result = new SubscribersCommand($user);
+ }
+ break;
+ case 'subscriptions':
+ if ($arg) {
+ $result = null;
+ } else {
+ $result = new SubscriptionsCommand($user);
+ }
+ break;
+ case 'groups':
+ if ($arg) {
+ $result = null;
+ } else {
+ $result = new GroupsCommand($user);
+ }
+ break;
+ case 'on':
+ if ($arg) {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new OnCommand($user, $other);
+ }
+ } else {
+ $result = new OnCommand($user);
+ }
+ break;
+ case 'off':
+ if ($arg) {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new OffCommand($user, $other);
+ }
+ } else {
+ $result = new OffCommand($user);
+ }
+ break;
+ case 'stop':
+ case 'quit':
+ if ($arg) {
+ $result = null;
+ } else {
+ $result = new OffCommand($user);
+ }
+ break;
+ case 'join':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new JoinCommand($user, $other);
+ }
+ }
+ break;
+ case 'drop':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new DropCommand($user, $other);
+ }
+ }
+ break;
+ case 'follow':
+ case 'sub':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new SubCommand($user, $other);
+ }
+ }
+ break;
+ case 'leave':
+ case 'unsub':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new UnsubCommand($user, $other);
+ }
+ }
+ break;
+ case 'get':
+ case 'last':
+ if (!$arg) {
+ $result = null;
+ }
list($other, $extra) = $this->split_arg($arg);
if ($extra) {
- return null;
+ $result = null;
} else {
- return new LoseCommand($user, $other);
+ $result = new GetCommand($user, $other);
+ }
+ break;
+ case 'd':
+ case 'dm':
+ if (!$arg) {
+ $result = null;
}
- } else {
- return null;
- }
- case 'subscribers':
- if ($arg) {
- return null;
- } else {
- return new SubscribersCommand($user);
- }
- case 'subscriptions':
- if ($arg) {
- return null;
- } else {
- return new SubscriptionsCommand($user);
- }
- case 'groups':
- if ($arg) {
- return null;
- } else {
- return new GroupsCommand($user);
- }
- case 'on':
- if ($arg) {
list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
+ if (!$extra) {
+ $result = null;
} else {
- return new OnCommand($user, $other);
+ $result = new MessageCommand($user, $other, $extra);
+ }
+ break;
+ case 'r':
+ case 'reply':
+ if (!$arg) {
+ $result = null;
}
- } else {
- return new OnCommand($user);
- }
- case 'off':
- if ($arg) {
list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
+ if (!$extra) {
+ $result = null;
} else {
- return new OffCommand($user, $other);
+ $result = new ReplyCommand($user, $other, $extra);
}
- } else {
- return new OffCommand($user);
+ break;
+ case 'repeat':
+ case 'rp':
+ case 'rt':
+ case 'rd':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new RepeatCommand($user, $other);
+ }
+ }
+ break;
+ case 'whois':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new WhoisCommand($user, $other);
+ }
+ }
+ break;
+ case 'fav':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new FavCommand($user, $other);
+ }
+ }
+ break;
+ case 'nudge':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new NudgeCommand($user, $other);
+ }
+ }
+ break;
+ case 'stats':
+ if ($arg) {
+ $result = null;
+ } else {
+ $result = new StatsCommand($user);
+ }
+ break;
+ case 'invite':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($other, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else {
+ $result = new InviteCommand($user, $other);
+ }
+ }
+ break;
+ case 'track':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($word, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else if ($word == 'off') {
+ $result = new TrackOffCommand($user);
+ } else {
+ $result = new TrackCommand($user, $word);
+ }
+ }
+ break;
+ case 'untrack':
+ if (!$arg) {
+ $result = null;
+ } else {
+ list($word, $extra) = $this->split_arg($arg);
+ if ($extra) {
+ $result = null;
+ } else if ($word == 'all') {
+ $result = new TrackOffCommand($user);
+ } else {
+ $result = new UntrackCommand($user, $word);
+ }
+ }
+ break;
+ case 'tracks':
+ case 'tracking':
+ if ($arg) {
+ $result = null;
+ } else {
+ $result = new TrackingCommand($user);
+ }
+ break;
+ default:
+ $result = false;
}
- case 'stop':
- case 'quit':
- if ($arg) {
- return null;
- } else {
- return new OffCommand($user);
- }
- case 'join':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new JoinCommand($user, $other);
- }
- case 'drop':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new DropCommand($user, $other);
- }
- case 'follow':
- case 'sub':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new SubCommand($user, $other);
- }
- case 'leave':
- case 'unsub':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new UnsubCommand($user, $other);
- }
- case 'get':
- case 'last':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new GetCommand($user, $other);
- }
- case 'd':
- case 'dm':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if (!$extra) {
- return null;
- } else {
- return new MessageCommand($user, $other, $extra);
- }
- case 'r':
- case 'reply':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if (!$extra) {
- return null;
- } else {
- return new ReplyCommand($user, $other, $extra);
- }
- case 'repeat':
- case 'rp':
- case 'rt':
- case 'rd':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new RepeatCommand($user, $other);
- }
- case 'whois':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new WhoisCommand($user, $other);
- }
- case 'fav':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new FavCommand($user, $other);
- }
- case 'nudge':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new NudgeCommand($user, $other);
- }
- case 'stats':
- if ($arg) {
- return null;
- }
- return new StatsCommand($user);
- case 'invite':
- if (!$arg) {
- return null;
- }
- list($other, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else {
- return new InviteCommand($user, $other);
- }
- case 'track':
- if (!$arg) {
- return null;
- }
- list($word, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else if ($word == 'off') {
- return new TrackOffCommand($user);
- } else {
- return new TrackCommand($user, $word);
- }
- case 'untrack':
- if (!$arg) {
- return null;
- }
- list($word, $extra) = $this->split_arg($arg);
- if ($extra) {
- return null;
- } else if ($word == 'all') {
- return new TrackOffCommand($user);
- } else {
- return new UntrackCommand($user, $word);
- }
- case 'tracks':
- case 'tracking':
- if ($arg) {
- return null;
- }
- return new TrackingCommand($user);
- default:
- return false;
+
+ Event::handle('EndInterpretCommand', array($cmd, $arg, $user, $result));
}
+
+ return $result;
}
/**
diff --git a/lib/default.php b/lib/default.php
index 186ac263c9..6090217d18 100644
--- a/lib/default.php
+++ b/lib/default.php
@@ -39,6 +39,8 @@ $default =
'logo' => null,
'ssllogo' => null,
'logdebug' => false,
+ 'logperf' => false, // Enable to dump performance counters to syslog
+ 'logperf_detail' => false, // Enable to dump every counter hit
'fancy' => false,
'locale_path' => INSTALLDIR.'/locale',
'language' => 'en',
@@ -270,8 +272,9 @@ $default =
'search' =>
array('type' => 'fulltext'),
'sessions' =>
- array('handle' => false, // whether to handle sessions ourselves
- 'debug' => false), // debugging output for sessions
+ array('handle' => false, // whether to handle sessions ourselves
+ 'debug' => false, // debugging output for sessions
+ 'gc_limit' => 1000), // max sessions to expire at a time
'design' =>
array('backgroundcolor' => null, // null -> 'use theme default'
'contentcolor' => null,
@@ -304,6 +307,10 @@ $default =
'StrictTransportSecurity' => null,
'OpenID' => null),
'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories
+ 'server' => null,
+ 'sslserver' => null,
+ 'path' => null,
+ 'sslpath' => null,
),
'pluginlist' => array(),
'admin' =>
diff --git a/lib/deleteuserform.php b/lib/deleteuserform.php
index 09ea8f68d1..df8b480ed4 100644
--- a/lib/deleteuserform.php
+++ b/lib/deleteuserform.php
@@ -41,7 +41,6 @@ if (!defined('STATUSNET')) {
* @link http://status.net/
*
*/
-
class DeleteUserForm extends ProfileActionForm
{
/**
@@ -49,7 +48,6 @@ class DeleteUserForm extends ProfileActionForm
*
* @return string Name of the action, lowercased.
*/
-
function target()
{
return 'deleteuser';
@@ -60,9 +58,9 @@ class DeleteUserForm extends ProfileActionForm
*
* @return string Title of the form, internationalized
*/
-
function title()
{
+ // TRANS: Title of form for deleting a user.
return _('Delete');
}
@@ -71,9 +69,9 @@ class DeleteUserForm extends ProfileActionForm
*
* @return string description of the form, internationalized
*/
-
function description()
{
+ // TRANS: Description of form for deleting a user.
return _('Delete this user');
}
}
diff --git a/plugins/OStatus/lib/discovery.php b/lib/discovery.php
similarity index 55%
rename from plugins/OStatus/lib/discovery.php
rename to lib/discovery.php
index 905ece2ca5..70638cf243 100644
--- a/plugins/OStatus/lib/discovery.php
+++ b/lib/discovery.php
@@ -3,7 +3,7 @@
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2010, StatusNet, Inc.
*
- * A sample module to show best practices for StatusNet plugins
+ * Use Hammer discovery stack to find out interesting things about an URI
*
* PHP version 5
*
@@ -20,6 +20,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*
+ * @category Discovery
* @package StatusNet
* @author James Walker
* @copyright 2010 StatusNet, Inc.
@@ -27,22 +28,40 @@
* @link http://status.net/
*/
+if (!defined('STATUSNET')) {
+ exit(1);
+}
+
/**
* This class implements LRDD-based service discovery based on the "Hammer Draft"
* (including webfinger)
*
- * @see http://groups.google.com/group/webfinger/browse_thread/thread/9f3d93a479e91bbf
+ * @category Discovery
+ * @package StatusNet
+ * @author James Walker
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ *
+ * @see http://groups.google.com/group/webfinger/browse_thread/thread/9f3d93a479e91bbf
*/
class Discovery
{
-
- const LRDD_REL = 'lrdd';
+ const LRDD_REL = 'lrdd';
const PROFILEPAGE = 'http://webfinger.net/rel/profile-page';
const UPDATESFROM = 'http://schemas.google.com/g/2010#updates-from';
- const HCARD = 'http://microformats.org/profile/hcard';
+ const HCARD = 'http://microformats.org/profile/hcard';
public $methods = array();
+ /**
+ * Constructor for a discovery object
+ *
+ * Registers different discovery methods.
+ *
+ * @return Discovery this
+ */
+
public function __construct()
{
$this->registerMethod('Discovery_LRDD_Host_Meta');
@@ -50,6 +69,13 @@ class Discovery
$this->registerMethod('Discovery_LRDD_Link_HTML');
}
+ /**
+ * Register a discovery class
+ *
+ * @param string $class Class name
+ *
+ * @return void
+ */
public function registerMethod($class)
{
$this->methods[] = $class;
@@ -58,6 +84,10 @@ class Discovery
/**
* Given a "user id" make sure it's normalized to either a webfinger
* acct: uri or a profile HTTP URL.
+ *
+ * @param string $user_id User ID to normalize
+ *
+ * @return string normalized acct: or http(s)?: URI
*/
public static function normalize($user_id)
{
@@ -67,13 +97,22 @@ class Discovery
return $user_id;
}
- if (strpos($user_id, '@') !== FALSE) {
+ if (strpos($user_id, '@') !== false) {
return 'acct:' . $user_id;
}
return 'http://' . $user_id;
}
+ /**
+ * Determine if a string is a Webfinger ID
+ *
+ * Webfinger IDs look like foo@example.com or acct:foo@example.com
+ *
+ * @param string $user_id ID to check
+ *
+ * @return boolean true if $user_id is a Webfinger, else false
+ */
public static function isWebfinger($user_id)
{
$uri = Discovery::normalize($user_id);
@@ -82,7 +121,11 @@ class Discovery
}
/**
- * This implements the actual lookup procedure
+ * Given a user ID, return the first available XRD
+ *
+ * @param string $id User ID URI
+ *
+ * @return XRD XRD object for the user
*/
public function lookup($id)
{
@@ -106,11 +149,20 @@ class Discovery
}
}
- // TRANS: Exception.
- throw new Exception(sprintf(_m('Unable to find services for %s.'),$id));
+ // TRANS: Exception. %s is an ID.
+ throw new Exception(sprintf(_('Unable to find services for %s.'), $id));
}
- public static function getService($links, $service) {
+ /**
+ * Given an array of links, returns the matching service
+ *
+ * @param array $links Links to check
+ * @param string $service Service to find
+ *
+ * @return array $link assoc array representing the link
+ */
+ public static function getService($links, $service)
+ {
if (!is_array($links)) {
return false;
}
@@ -122,6 +174,16 @@ class Discovery
}
}
+ /**
+ * Apply a template using an ID
+ *
+ * Replaces {uri} in template string with the ID given.
+ *
+ * @param string $template Template to match
+ * @param string $id User ID to replace with
+ *
+ * @return string replaced values
+ */
public static function applyTemplate($template, $id)
{
$template = str_replace('{uri}', urlencode($id), $template);
@@ -129,10 +191,17 @@ class Discovery
return $template;
}
+ /**
+ * Fetch an XRD file and parse
+ *
+ * @param string $url URL of the XRD
+ *
+ * @return XRD object representing the XRD file
+ */
public static function fetchXrd($url)
{
try {
- $client = new HTTPClient();
+ $client = new HTTPClient();
$response = $client->get($url);
} catch (HTTP_Request2_Exception $e) {
return false;
@@ -146,13 +215,56 @@ class Discovery
}
}
+/**
+ * Abstract interface for discovery
+ *
+ * Objects that implement this interface can retrieve an array of
+ * XRD links for the URI.
+ *
+ * @category Discovery
+ * @package StatusNet
+ * @author James Walker
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
interface Discovery_LRDD
{
+ /**
+ * Discover interesting info about the URI
+ *
+ * @param string $uri URI to inquire about
+ *
+ * @return array Links in the XRD file
+ */
public function discover($uri);
}
+/**
+ * Implementation of discovery using host-meta file
+ *
+ * Discovers XRD file for a user by going to the organization's
+ * host-meta file and trying to find a template for LRDD.
+ *
+ * @category Discovery
+ * @package StatusNet
+ * @author James Walker
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
class Discovery_LRDD_Host_Meta implements Discovery_LRDD
{
+ /**
+ * Discovery core method
+ *
+ * For Webfinger and HTTP URIs, fetch the host-meta file
+ * and look for LRDD templates
+ *
+ * @param string $uri URI to inquire about
+ *
+ * @return array Links in the XRD file
+ */
public function discover($uri)
{
if (Discovery::isWebfinger($uri)) {
@@ -176,12 +288,36 @@ class Discovery_LRDD_Host_Meta implements Discovery_LRDD
}
}
+/**
+ * Implementation of discovery using HTTP Link header
+ *
+ * Discovers XRD file for a user by fetching the URL and reading any
+ * Link: headers in the HTTP response.
+ *
+ * @category Discovery
+ * @package StatusNet
+ * @author James Walker
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
class Discovery_LRDD_Link_Header implements Discovery_LRDD
{
+ /**
+ * Discovery core method
+ *
+ * For HTTP IDs fetch the URL and look for Link headers.
+ *
+ * @param string $uri URI to inquire about
+ *
+ * @return array Links in the XRD file
+ *
+ * @todo fail out of Webfinger URIs faster
+ */
public function discover($uri)
{
try {
- $client = new HTTPClient();
+ $client = new HTTPClient();
$response = $client->get($uri);
} catch (HTTP_Request2_Exception $e) {
return false;
@@ -199,6 +335,13 @@ class Discovery_LRDD_Link_Header implements Discovery_LRDD
return array(Discovery_LRDD_Link_Header::parseHeader($link_header));
}
+ /**
+ * Given a string or array of headers, returns XRD-like assoc array
+ *
+ * @param string|array $header string or array of strings for headers
+ *
+ * @return array Link header in XRD-like format
+ */
protected static function parseHeader($header)
{
$lh = new LinkHeader($header);
@@ -209,12 +352,37 @@ class Discovery_LRDD_Link_Header implements Discovery_LRDD
}
}
+/**
+ * Implementation of discovery using HTML element
+ *
+ * Discovers XRD file for a user by fetching the URL and reading any
+ * elements in the HTML response.
+ *
+ * @category Discovery
+ * @package StatusNet
+ * @author James Walker
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
class Discovery_LRDD_Link_HTML implements Discovery_LRDD
{
+ /**
+ * Discovery core method
+ *
+ * For HTTP IDs, fetch the URL and look for elements
+ * in the HTML response.
+ *
+ * @param string $uri URI to inquire about
+ *
+ * @return array Links in XRD-ish assoc array
+ *
+ * @todo fail out of Webfinger URIs faster
+ */
public function discover($uri)
{
try {
- $client = new HTTPClient();
+ $client = new HTTPClient();
$response = $client->get($uri);
} catch (HTTP_Request2_Exception $e) {
return false;
@@ -227,6 +395,15 @@ class Discovery_LRDD_Link_HTML implements Discovery_LRDD
return Discovery_LRDD_Link_HTML::parse($response->getBody());
}
+ /**
+ * Parse HTML and return elements
+ *
+ * Given an HTML string, scans the string for elements
+ *
+ * @param string $html HTML to scan
+ *
+ * @return array array of associative arrays in XRD-ish format
+ */
public function parse($html)
{
$links = array();
@@ -237,8 +414,8 @@ class Discovery_LRDD_Link_HTML implements Discovery_LRDD
preg_match_all('/]*>/i', $head_html, $link_matches);
foreach ($link_matches[0] as $link_html) {
- $link_url = null;
- $link_rel = null;
+ $link_url = null;
+ $link_rel = null;
$link_type = null;
preg_match('/\srel=(("|\')([^\\2]*?)\\2|[^"\'\s]+)/i', $link_html, $rel_matches);
diff --git a/lib/disfavorform.php b/lib/disfavorform.php
index 6023766d7b..3a1c7d17fb 100644
--- a/lib/disfavorform.php
+++ b/lib/disfavorform.php
@@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php';
*
* @see FavorForm
*/
-
class DisfavorForm extends Form
{
/**
* Notice to disfavor
*/
-
var $notice = null;
/**
@@ -61,7 +59,6 @@ class DisfavorForm extends Form
* @param HTMLOutputter $out output channel
* @param Notice $notice notice to disfavor
*/
-
function __construct($out=null, $notice=null)
{
parent::__construct($out);
@@ -74,7 +71,6 @@ class DisfavorForm extends Form
*
* @return int ID of the form
*/
-
function id()
{
return 'disfavor-' . $this->notice->id;
@@ -85,7 +81,6 @@ class DisfavorForm extends Form
*
* @return string URL of the action
*/
-
function action()
{
return common_local_url('disfavor');
@@ -96,14 +91,12 @@ class DisfavorForm extends Form
*
* @return void
*/
-
function sessionToken()
{
$this->out->hidden('token-' . $this->notice->id,
common_session_token());
}
-
/**
* Legend of the Form
*
@@ -111,10 +104,10 @@ class DisfavorForm extends Form
*/
function formLegend()
{
+ // TRANS: Form legend for removing the favourite status for a favourite notice.
$this->out->element('legend', null, _('Disfavor this notice'));
}
-
/**
* Data elements
*
@@ -129,7 +122,6 @@ class DisfavorForm extends Form
'notice');
Event::handle('EndDisFavorNoticeForm', array($this, $this->notice));
}
-
}
/**
@@ -137,22 +129,24 @@ class DisfavorForm extends Form
*
* @return void
*/
-
function formActions()
{
$this->out->submit('disfavor-submit-' . $this->notice->id,
- _('Disfavor favorite'), 'submit', null, _('Disfavor this notice'));
+ // TRANS: Button text for removing the favourite status for a favourite notice.
+ _m('BUTTON','Disfavor favorite'),
+ 'submit',
+ null,
+ // TRANS: Title for button text for removing the favourite status for a favourite notice.
+ _('Disfavor this notice'));
}
-
+
/**
* Class of the form.
*
* @return string the form's class
*/
-
function formClass()
{
return 'form_disfavor';
}
-
}
diff --git a/lib/favorform.php b/lib/favorform.php
index 4e2891ffd5..956cc896a2 100644
--- a/lib/favorform.php
+++ b/lib/favorform.php
@@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php';
*
* @see DisfavorForm
*/
-
class FavorForm extends Form
{
/**
* Notice to favor
*/
-
var $notice = null;
/**
@@ -61,7 +59,6 @@ class FavorForm extends Form
* @param HTMLOutputter $out output channel
* @param Notice $notice notice to favor
*/
-
function __construct($out=null, $notice=null)
{
parent::__construct($out);
@@ -74,7 +71,6 @@ class FavorForm extends Form
*
* @return int ID of the form
*/
-
function id()
{
return 'favor-' . $this->notice->id;
@@ -85,7 +81,6 @@ class FavorForm extends Form
*
* @return string URL of the action
*/
-
function action()
{
return common_local_url('favor');
@@ -96,14 +91,12 @@ class FavorForm extends Form
*
* @return void
*/
-
function sessionToken()
{
$this->out->hidden('token-' . $this->notice->id,
common_session_token());
}
-
/**
* Legend of the Form
*
@@ -111,16 +104,15 @@ class FavorForm extends Form
*/
function formLegend()
{
+ // TRANS: Form legend for adding the favourite status to a notice.
$this->out->element('legend', null, _('Favor this notice'));
}
-
/**
* Data elements
*
* @return void
*/
-
function formData()
{
if (Event::handle('StartFavorNoticeForm', array($this, $this->notice))) {
@@ -136,19 +128,22 @@ class FavorForm extends Form
*
* @return void
*/
-
function formActions()
{
$this->out->submit('favor-submit-' . $this->notice->id,
- _('Favor'), 'submit', null, _('Favor this notice'));
+ // TRANS: Button text for adding the favourite status to a notice.
+ _m('BUTTON','Favor'),
+ 'submit',
+ null,
+ // TRANS: Title for button text for adding the favourite status to a notice.
+ _('Favor this notice'));
}
-
+
/**
* Class of the form.
*
* @return string the form's class
*/
-
function formClass()
{
return 'form_favor';
diff --git a/lib/featureduserssection.php b/lib/featureduserssection.php
index f0753a25ed..8dacdc332d 100644
--- a/lib/featureduserssection.php
+++ b/lib/featureduserssection.php
@@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class FeaturedUsersSection extends ProfileSection
{
function getProfiles()
@@ -84,6 +83,7 @@ class FeaturedUsersSection extends ProfileSection
function title()
{
+ // TRANS: Title for featured users section.
return _('Featured users');
}
diff --git a/lib/groupeditform.php b/lib/groupeditform.php
index cc25f06886..3a2cf6bf4a 100644
--- a/lib/groupeditform.php
+++ b/lib/groupeditform.php
@@ -46,13 +46,11 @@ require_once INSTALLDIR.'/lib/form.php';
*
* @see UnsubscribeForm
*/
-
class GroupEditForm extends Form
{
/**
* group for user to join
*/
-
var $group = null;
/**
@@ -61,7 +59,6 @@ class GroupEditForm extends Form
* @param Action $out output channel
* @param User_group $group group to join
*/
-
function __construct($out=null, $group=null)
{
parent::__construct($out);
@@ -74,7 +71,6 @@ class GroupEditForm extends Form
*
* @return string ID of the form
*/
-
function id()
{
if ($this->group) {
@@ -89,7 +85,6 @@ class GroupEditForm extends Form
*
* @return string of the form class
*/
-
function formClass()
{
return 'form_settings';
@@ -100,7 +95,6 @@ class GroupEditForm extends Form
*
* @return string URL of the action
*/
-
function action()
{
if ($this->group) {
@@ -116,7 +110,6 @@ class GroupEditForm extends Form
*
* @return void
*/
-
function formLegend()
{
$this->out->element('legend', null, _('Create a new group'));
@@ -127,7 +120,6 @@ class GroupEditForm extends Form
*
* @return void
*/
-
function formData()
{
if ($this->group) {
@@ -147,51 +139,54 @@ class GroupEditForm extends Form
}
$this->out->elementStart('ul', 'form_data');
- $this->out->elementStart('li');
- $this->out->hidden('groupid', $id);
- $this->out->input('nickname', _('Nickname'),
- ($this->out->arg('nickname')) ? $this->out->arg('nickname') : $nickname,
- _('1-64 lowercase letters or numbers, no punctuation or spaces'));
- $this->out->elementEnd('li');
- $this->out->elementStart('li');
- $this->out->input('fullname', _('Full name'),
- ($this->out->arg('fullname')) ? $this->out->arg('fullname') : $fullname);
- $this->out->elementEnd('li');
- $this->out->elementStart('li');
- $this->out->input('homepage', _('Homepage'),
- ($this->out->arg('homepage')) ? $this->out->arg('homepage') : $homepage,
- _('URL of the homepage or blog of the group or topic.'));
- $this->out->elementEnd('li');
- $this->out->elementStart('li');
- $desclimit = User_group::maxDescription();
- if ($desclimit == 0) {
- $descinstr = _('Describe the group or topic');
- } else {
- $descinstr = sprintf(_m('Describe the group or topic in %d character or less',
- 'Describe the group or topic in %d characters or less',
- $desclimit),
- $desclimit);
- }
- $this->out->textarea('description', _('Description'),
- ($this->out->arg('description')) ? $this->out->arg('description') : $description,
- $descinstr);
- $this->out->elementEnd('li');
- $this->out->elementStart('li');
- $this->out->input('location', _('Location'),
- ($this->out->arg('location')) ? $this->out->arg('location') : $location,
- _('Location for the group, if any, like "City, State (or Region), Country".'));
- $this->out->elementEnd('li');
- if (common_config('group', 'maxaliases') > 0) {
- $aliases = (empty($this->group)) ? array() : $this->group->getAliases();
+ if (Event::handle('StartGroupEditFormData', array($this))) {
$this->out->elementStart('li');
- $this->out->input('aliases', _('Aliases'),
- ($this->out->arg('aliases')) ? $this->out->arg('aliases') :
- (!empty($aliases)) ? implode(' ', $aliases) : '',
- sprintf(_m('Extra nicknames for the group, separated with commas or spaces. Maximum %d alias allowed.',
- 'Extra nicknames for the group, separated with commas or spaces. Maximum %d aliases allowed.',
- common_config('group', 'maxaliases')),
- common_config('group', 'maxaliases')));;
+ $this->out->hidden('groupid', $id);
+ $this->out->input('nickname', _('Nickname'),
+ ($this->out->arg('nickname')) ? $this->out->arg('nickname') : $nickname,
+ _('1-64 lowercase letters or numbers, no punctuation or spaces'));
$this->out->elementEnd('li');
+ $this->out->elementStart('li');
+ $this->out->input('fullname', _('Full name'),
+ ($this->out->arg('fullname')) ? $this->out->arg('fullname') : $fullname);
+ $this->out->elementEnd('li');
+ $this->out->elementStart('li');
+ $this->out->input('homepage', _('Homepage'),
+ ($this->out->arg('homepage')) ? $this->out->arg('homepage') : $homepage,
+ _('URL of the homepage or blog of the group or topic.'));
+ $this->out->elementEnd('li');
+ $this->out->elementStart('li');
+ $desclimit = User_group::maxDescription();
+ if ($desclimit == 0) {
+ $descinstr = _('Describe the group or topic');
+ } else {
+ $descinstr = sprintf(_m('Describe the group or topic in %d character or less',
+ 'Describe the group or topic in %d characters or less',
+ $desclimit),
+ $desclimit);
+ }
+ $this->out->textarea('description', _('Description'),
+ ($this->out->arg('description')) ? $this->out->arg('description') : $description,
+ $descinstr);
+ $this->out->elementEnd('li');
+ $this->out->elementStart('li');
+ $this->out->input('location', _('Location'),
+ ($this->out->arg('location')) ? $this->out->arg('location') : $location,
+ _('Location for the group, if any, like "City, State (or Region), Country".'));
+ $this->out->elementEnd('li');
+ if (common_config('group', 'maxaliases') > 0) {
+ $aliases = (empty($this->group)) ? array() : $this->group->getAliases();
+ $this->out->elementStart('li');
+ $this->out->input('aliases', _('Aliases'),
+ ($this->out->arg('aliases')) ? $this->out->arg('aliases') :
+ (!empty($aliases)) ? implode(' ', $aliases) : '',
+ sprintf(_m('Extra nicknames for the group, separated with commas or spaces. Maximum %d alias allowed.',
+ 'Extra nicknames for the group, separated with commas or spaces. Maximum %d aliases allowed.',
+ common_config('group', 'maxaliases')),
+ common_config('group', 'maxaliases')));;
+ $this->out->elementEnd('li');
+ }
+ Event::handle('EndGroupEditFormData', array($this));
}
$this->out->elementEnd('ul');
}
@@ -201,7 +196,6 @@ class GroupEditForm extends Form
*
* @return void
*/
-
function formActions()
{
$this->out->submit('submit', _m('BUTTON','Save'));
diff --git a/lib/imagefile.php b/lib/imagefile.php
index 159deead61..0e06720247 100644
--- a/lib/imagefile.php
+++ b/lib/imagefile.php
@@ -69,6 +69,7 @@ class ImageFile
($info[2] == IMAGETYPE_XBM && function_exists('imagecreatefromxbm')) ||
($info[2] == IMAGETYPE_PNG && function_exists('imagecreatefrompng')))) {
+ // TRANS: Exception thrown when trying to upload an unsupported image file format.
throw new Exception(_('Unsupported image file format.'));
return;
}
@@ -92,6 +93,7 @@ class ImageFile
return;
case UPLOAD_ERR_PARTIAL:
@unlink($_FILES[$param]['tmp_name']);
+ // TRANS: Exception thrown when uploading an image and that action could not be completed.
throw new Exception(_('Partial upload.'));
return;
case UPLOAD_ERR_NO_FILE:
@@ -100,6 +102,7 @@ class ImageFile
default:
common_log(LOG_ERR, __METHOD__ . ": Unknown upload error " .
$_FILES[$param]['error']);
+ // TRANS: Exception thrown when uploading an image fails for an unknown reason.
throw new Exception(_('System error uploading file.'));
return;
}
@@ -108,6 +111,7 @@ class ImageFile
if (!$info) {
@unlink($_FILES[$param]['tmp_name']);
+ // TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
throw new Exception(_('Not an image or corrupt file.'));
return;
}
@@ -128,7 +132,7 @@ class ImageFile
*/
function resize($size, $x = 0, $y = 0, $w = null, $h = null)
{
- $targetType = $this->preferredType($this->type);
+ $targetType = $this->preferredType();
$outname = Avatar::filename($this->id,
image_type_to_extension($targetType),
$size,
@@ -138,6 +142,19 @@ class ImageFile
return $outname;
}
+ /**
+ * Copy the image file to the given destination.
+ * For obscure formats, this will automatically convert to PNG;
+ * otherwise the original file will be copied as-is.
+ *
+ * @param string $outpath
+ * @return string filename
+ */
+ function copyTo($outpath)
+ {
+ return $this->resizeTo($outpath, $this->width, $this->height);
+ }
+
/**
* Create and save a thumbnail image.
*
@@ -154,9 +171,10 @@ class ImageFile
{
$w = ($w === null) ? $this->width:$w;
$h = ($h === null) ? $this->height:$h;
- $targetType = $this->preferredType($this->type);
+ $targetType = $this->preferredType();
if (!file_exists($this->filepath)) {
+ // TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
throw new Exception(_('Lost our file.'));
return;
}
@@ -194,6 +212,7 @@ class ImageFile
$image_src = imagecreatefromxbm($this->filepath);
break;
default:
+ // TRANS: Exception thrown when trying to resize an unknown file type.
throw new Exception(_('Unknown file type'));
return;
}
@@ -234,6 +253,7 @@ class ImageFile
imagepng($image_dest, $outpath);
break;
default:
+ // TRANS: Exception thrown when trying resize an unknown file type.
throw new Exception(_('Unknown file type'));
return;
}
@@ -247,25 +267,25 @@ class ImageFile
/**
* Several obscure file types should be normalized to PNG on resize.
*
- * @param int $type
+ * @fixme consider flattening anything not GIF or JPEG to PNG
* @return int
*/
- function preferredType($type)
+ function preferredType()
{
- if($type == IMAGETYPE_BMP) {
+ if($this->type == IMAGETYPE_BMP) {
//we don't want to save BMP... it's an inefficient, rare, antiquated format
//save png instead
return IMAGETYPE_PNG;
- } else if($type == IMAGETYPE_WBMP) {
+ } else if($this->type == IMAGETYPE_WBMP) {
//we don't want to save WBMP... it's a rare format that we can't guarantee clients will support
//save png instead
return IMAGETYPE_PNG;
- } else if($type == IMAGETYPE_XBM) {
+ } else if($this->type == IMAGETYPE_XBM) {
//we don't want to save XBM... it's a rare format that we can't guarantee clients will support
//save png instead
return IMAGETYPE_PNG;
}
- return $type;
+ return $this->type;
}
function unlink()
diff --git a/lib/language.php b/lib/language.php
index 86896cff9d..302192efde 100644
--- a/lib/language.php
+++ b/lib/language.php
@@ -315,9 +315,10 @@ function get_all_languages() {
'en-gb' => array('q' => 1, 'lang' => 'en_GB', 'name' => 'English (British)', 'direction' => 'ltr'),
'en' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'),
'es' => array('q' => 1, 'lang' => 'es', 'name' => 'Spanish', 'direction' => 'ltr'),
- 'fi' => array('q' => 1, 'lang' => 'fi', 'name' => 'Finnish', 'direction' => 'ltr'),
'fa' => array('q' => 1, 'lang' => 'fa', 'name' => 'Persian', 'direction' => 'rtl'),
+ 'fi' => array('q' => 1, 'lang' => 'fi', 'name' => 'Finnish', 'direction' => 'ltr'),
'fr-fr' => array('q' => 1, 'lang' => 'fr', 'name' => 'French', 'direction' => 'ltr'),
+ 'fur' => array('q' => 0.8, 'lang' => 'fur', 'name' => 'Friulian', 'direction' => 'ltr'),
'ga' => array('q' => 0.5, 'lang' => 'ga', 'name' => 'Irish', 'direction' => 'ltr'),
'gl' => array('q' => 0.8, 'lang' => 'gl', 'name' => 'Galician', 'direction' => 'ltr'),
'he' => array('q' => 0.5, 'lang' => 'he', 'name' => 'Hebrew', 'direction' => 'rtl'),
diff --git a/lib/linkheader.php b/lib/linkheader.php
new file mode 100644
index 0000000000..dd8f88c29b
--- /dev/null
+++ b/lib/linkheader.php
@@ -0,0 +1,129 @@
+.
+ *
+ * @category Discovery
+ * @package StatusNet
+ * @author James Walker
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+ exit(1);
+}
+
+/**
+ * Class to represent Link: headers in an HTTP response
+ *
+ * Since these are a fairly important part of Hammer-stack discovery, they're
+ * reified and implemented here.
+ *
+ * @category Discovery
+ * @package StatusNet
+ * @author James Walker
+ * @copyright 2010 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ *
+ * @see Discovery
+ */
+class LinkHeader
+{
+ var $href;
+ var $rel;
+ var $type;
+
+ /**
+ * Initialize from a string
+ *
+ * @param string $str Link: header value
+ *
+ * @return LinkHeader self
+ */
+ function __construct($str)
+ {
+ preg_match('/^<[^>]+>/', $str, $uri_reference);
+ //if (empty($uri_reference)) return;
+
+ $this->href = trim($uri_reference[0], '<>');
+ $this->rel = array();
+ $this->type = null;
+
+ // remove uri-reference from header
+ $str = substr($str, strlen($uri_reference[0]));
+
+ // parse link-params
+ $params = explode(';', $str);
+
+ foreach ($params as $param) {
+ if (empty($param)) {
+ continue;
+ }
+ list($param_name, $param_value) = explode('=', $param, 2);
+
+ $param_name = trim($param_name);
+ $param_value = preg_replace('(^"|"$)', '', trim($param_value));
+
+ // for now we only care about 'rel' and 'type' link params
+ // TODO do something with the other links-params
+ switch ($param_name) {
+ case 'rel':
+ $this->rel = trim($param_value);
+ break;
+
+ case 'type':
+ $this->type = trim($param_value);
+ }
+ }
+ }
+
+ /**
+ * Given an HTTP response, return the requested Link: header
+ *
+ * @param HTTP_Request2_Response $response response to check
+ * @param string $rel relationship to look for
+ * @param string $type media type to look for
+ *
+ * @return LinkHeader discovered header, or null on failure
+ */
+ static function getLink($response, $rel=null, $type=null)
+ {
+ $headers = $response->getHeader('Link');
+ if ($headers) {
+ // Can get an array or string, so try to simplify the path
+ if (!is_array($headers)) {
+ $headers = array($headers);
+ }
+
+ foreach ($headers as $header) {
+ $lh = new LinkHeader($header);
+
+ if ((is_null($rel) || $lh->rel == $rel) &&
+ (is_null($type) || $lh->type == $type)) {
+ return $lh->href;
+ }
+ }
+ }
+ return null;
+ }
+}
diff --git a/lib/logingroupnav.php b/lib/logingroupnav.php
index b545fbf269..a309e7320f 100644
--- a/lib/logingroupnav.php
+++ b/lib/logingroupnav.php
@@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/widget.php';
*
* @see Widget
*/
-
class LoginGroupNav extends Widget
{
var $action = null;
@@ -54,7 +53,6 @@ class LoginGroupNav extends Widget
*
* @param Action $action current action, used for output
*/
-
function __construct($action=null)
{
parent::__construct($action);
@@ -66,28 +64,31 @@ class LoginGroupNav extends Widget
*
* @return void
*/
-
function show()
{
$action_name = $this->action->trimmed('action');
$this->action->elementStart('ul', array('class' => 'nav'));
- if (Event::handle('StartLoginGroupNav', array(&$this->action))) {
+ if (Event::handle('StartLoginGroupNav', array($this->action))) {
$this->action->menuItem(common_local_url('login'),
- _('Login'),
+ // TRANS: Menu item for logging in to the StatusNet site.
+ _m('MENU','Login'),
+ // TRANS: Title for menu item for logging in to the StatusNet site.
_('Login with a username and password'),
$action_name === 'login');
if (!(common_config('site','closed') || common_config('site','inviteonly'))) {
$this->action->menuItem(common_local_url('register'),
- _('Register'),
+ // TRANS: Menu item for registering with the StatusNet site.
+ _m('MENU','Register'),
+ // TRANS: Title for menu item for registering with the StatusNet site.
_('Sign up for a new account'),
$action_name === 'register');
}
- Event::handle('EndLoginGroupNav', array(&$this->action));
+ Event::handle('EndLoginGroupNav', array($this->action));
}
$this->action->elementEnd('ul');
diff --git a/lib/mail.php b/lib/mail.php
index dd6a1a366e..ab22de404c 100644
--- a/lib/mail.php
+++ b/lib/mail.php
@@ -44,7 +44,6 @@ require_once 'Mail.php';
*
* @return Mail backend
*/
-
function mail_backend()
{
static $backend = null;
@@ -70,7 +69,6 @@ function mail_backend()
*
* @return boolean success flag
*/
-
function mail_send($recipients, $headers, $body)
{
// XXX: use Mail_Queue... maybe
@@ -94,7 +92,6 @@ function mail_send($recipients, $headers, $body)
*
* @return string mail domain, suitable for making email addresses.
*/
-
function mail_domain()
{
$maildomain = common_config('mail', 'domain');
@@ -112,7 +109,6 @@ function mail_domain()
*
* @return string notify from address
*/
-
function mail_notify_from()
{
$notifyfrom = common_config('mail', 'notifyfrom');
@@ -121,7 +117,7 @@ function mail_notify_from()
$domain = mail_domain();
- $notifyfrom = '"'.common_config('site', 'name') .'" ';
+ $notifyfrom = '"'. str_replace('"', '\\"', common_config('site', 'name')) .'" ';
}
return $notifyfrom;
@@ -138,7 +134,6 @@ function mail_notify_from()
*
* @return boolean success flag
*/
-
function mail_to_user(&$user, $subject, $body, $headers=array(), $address=null)
{
if (!$address) {
@@ -167,9 +162,12 @@ function mail_to_user(&$user, $subject, $body, $headers=array(), $address=null)
*
* @return success flag
*/
-
-function mail_confirm_address($user, $code, $nickname, $address)
+function mail_confirm_address($user, $code, $nickname, $address, $url=null)
{
+ if (empty($url)) {
+ $url = common_local_url('confirmaddress', array('code' => $code));
+ }
+
// TRANS: Subject for address confirmation email.
$subject = _('Email address confirmation');
@@ -184,7 +182,8 @@ function mail_confirm_address($user, $code, $nickname, $address)
"Thanks for your time, \n%2\$s\n"),
$nickname,
common_config('site', 'name'),
- common_local_url('confirmaddress', array('code' => $code)));
+ $url);
+
$headers = array();
return mail_to_user($user, $subject, $body, $headers, $address);
@@ -202,7 +201,6 @@ function mail_confirm_address($user, $code, $nickname, $address)
*
* @return void
*/
-
function mail_subscribe_notify($listenee, $listener)
{
$other = $listener->getProfile();
@@ -220,7 +218,6 @@ function mail_subscribe_notify($listenee, $listener)
*
* @return void
*/
-
function mail_subscribe_notify_profile($listenee, $other)
{
if ($other->hasRight(Right::EMAILONSUBSCRIBE) &&
@@ -490,7 +487,7 @@ function mail_notify_nudge($from, $to)
common_switch_locale($to->language);
// TRANS: Subject for 'nudge' notification email.
// TRANS: %s is the nudging user.
- $subject = sprintf(_('You\'ve been nudged by %s'), $from->nickname);
+ $subject = sprintf(_('You have been nudged by %s'), $from->nickname);
$from_profile = $from->getProfile();
diff --git a/lib/mailbox.php b/lib/mailbox.php
index 2b00f5ffde..7faeb7dba3 100644
--- a/lib/mailbox.php
+++ b/lib/mailbox.php
@@ -31,8 +31,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
exit(1);
}
-define('MESSAGES_PER_PAGE', 20);
-
/**
* common superclass for direct messages inbox and outbox
*
@@ -111,32 +109,22 @@ class MailboxAction extends CurrentUserDesignAction
$message = $this->getMessages();
if ($message) {
- $cnt = 0;
- $this->elementStart('div', array('id' =>'notices_primary'));
- $this->element('h2', null, _('Notices'));
- $this->elementStart('ul', 'notices');
- while ($message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
- $cnt++;
+ $ml = $this->getMessageList($message);
- if ($cnt > MESSAGES_PER_PAGE) {
- break;
- }
+ $cnt = $ml->show();
- $this->showMessage($message);
- }
-
- $this->elementEnd('ul');
-
- $this->pagination($this->page > 1, $cnt > MESSAGES_PER_PAGE,
- $this->page, $this->trimmed('action'),
+ $this->pagination($this->page > 1,
+ $cnt > MESSAGES_PER_PAGE,
+ $this->page,
+ $this->trimmed('action'),
array('nickname' => $this->user->nickname));
- $this->elementEnd('div');
- $message->free();
- unset($message);
- }
- else {
- $this->element('p', 'guide', _('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.'));
+ } else {
+ $this->element('p',
+ 'guide',
+ _('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.'));
}
}
@@ -145,95 +133,11 @@ class MailboxAction extends CurrentUserDesignAction
return null;
}
- /**
- * returns the profile we want to show with the message
- *
- * For inboxes, we show the sender; for outboxes, the recipient.
- *
- * @param Message $message The message to get the profile for
- *
- * @return Profile The profile that matches the message
- */
-
- function getMessageProfile($message)
+ function getMessageList($message)
{
return null;
}
- /**
- * show a single message in the list format
- *
- * XXX: This needs to be extracted out into a MessageList similar
- * to NoticeList.
- *
- * @param Message $message the message to show
- *
- * @return void
- */
-
- function showMessage($message)
- {
- $this->elementStart('li', array('class' => 'hentry notice',
- 'id' => 'message-' . $message->id));
-
- $profile = $this->getMessageProfile($message);
-
- $this->elementStart('div', 'entry-title');
- $this->elementStart('span', 'vcard author');
- $this->elementStart('a', array('href' => $profile->profileurl,
- 'class' => 'url'));
- $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
- $this->element('img', array('src' => ($avatar) ?
- $avatar->displayUrl() :
- Avatar::defaultImage(AVATAR_STREAM_SIZE),
- 'class' => 'photo avatar',
- 'width' => AVATAR_STREAM_SIZE,
- 'height' => AVATAR_STREAM_SIZE,
- 'alt' =>
- ($profile->fullname) ? $profile->fullname :
- $profile->nickname));
- $this->element('span', array('class' => 'nickname fn'),
- $profile->nickname);
- $this->elementEnd('a');
- $this->elementEnd('span');
-
- // FIXME: URL, image, video, audio
- $this->elementStart('p', array('class' => 'entry-content'));
- $this->raw($message->rendered);
- $this->elementEnd('p');
- $this->elementEnd('div');
-
- $messageurl = common_local_url('showmessage',
- array('message' => $message->id));
-
- // XXX: we need to figure this out better. Is this right?
- if (strcmp($message->uri, $messageurl) != 0 &&
- preg_match('/^http/', $message->uri)) {
- $messageurl = $message->uri;
- }
-
- $this->elementStart('div', 'entry-content');
- $this->elementStart('a', array('rel' => 'bookmark',
- 'class' => 'timestamp',
- 'href' => $messageurl));
- $dt = common_date_iso8601($message->created);
- $this->element('abbr', array('class' => 'published',
- 'title' => $dt),
- common_date_string($message->created));
- $this->elementEnd('a');
-
- if ($message->source) {
- $this->elementStart('span', 'source');
- // FIXME: bad i18n. Device should be a parameter (from %s).
- $this->text(_('from'));
- $this->element('span', 'device', $this->showSource($message->source));
- $this->elementEnd('span');
- }
- $this->elementEnd('div');
-
- $this->elementEnd('li');
- }
-
/**
* Show the page notice
*
@@ -252,44 +156,6 @@ class MailboxAction extends CurrentUserDesignAction
$this->elementEnd('div');
}
- /**
- * Show the source of the message
- *
- * Returns either the name (and link) of the API client that posted the notice,
- * or one of other other channels.
- *
- * @param string $source the source of the message
- *
- * @return void
- */
-
- function showSource($source)
- {
- $source_name = _($source);
- switch ($source) {
- case 'web':
- case 'xmpp':
- case 'mail':
- case 'omb':
- case 'api':
- $this->element('span', 'device', $source_name);
- break;
- default:
- $ns = Notice_source::staticGet($source);
- if ($ns) {
- $this->elementStart('span', 'device');
- $this->element('a', array('href' => $ns->url,
- 'rel' => 'external'),
- $ns->name);
- $this->elementEnd('span');
- } else {
- $this->element('span', 'device', $source_name);
- }
- break;
- }
- return;
- }
-
/**
* Mailbox actions are read only
*
@@ -302,5 +168,4 @@ class MailboxAction extends CurrentUserDesignAction
{
return true;
}
-
}
diff --git a/lib/messagelist.php b/lib/messagelist.php
new file mode 100644
index 0000000000..da7e9a6c27
--- /dev/null
+++ b/lib/messagelist.php
@@ -0,0 +1,107 @@
+.
+ *
+ * @category Widget
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2011 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+ // This check helps protect against security problems;
+ // your code file can't be executed directly from the web.
+ exit(1);
+}
+
+/**
+ * Message list widget
+ *
+ * @category Widget
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2011 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+
+abstract class MessageList extends Widget
+{
+ var $message;
+
+ /**
+ * Constructor
+ *
+ * @param HTMLOutputter $out Output context
+ * @param Message $message Stream of messages to show
+ */
+ function __construct($out, $message)
+ {
+ parent::__construct($out);
+ $this->message = $message;
+ }
+
+ /**
+ * Show the widget
+ *
+ * Uses newItem() to create each new item.
+ *
+ * @return integer count of messages seen.
+ */
+ function show()
+ {
+ $cnt = 0;
+
+ $this->out->elementStart('div', array('id' =>'notices_primary'));
+
+ $this->out->element('h2', null, _('Messages'));
+
+ $this->out->elementStart('ul', 'notices messages');
+
+ while ($this->message->fetch() && $cnt <= MESSAGES_PER_PAGE) {
+
+ $cnt++;
+
+ if ($cnt > MESSAGES_PER_PAGE) {
+ break;
+ }
+
+ $mli = $this->newItem($this->message);
+
+ $mli->show();
+ }
+
+ $this->out->elementEnd('ul');
+
+ $this->out->elementEnd('div');
+ }
+
+ /**
+ * Create a new message item for a message
+ *
+ * @param Message $message The message to show
+ *
+ * @return MessageListItem an item to show
+ */
+ abstract function newItem($message);
+}
diff --git a/lib/messagelistitem.php b/lib/messagelistitem.php
new file mode 100644
index 0000000000..44e6976454
--- /dev/null
+++ b/lib/messagelistitem.php
@@ -0,0 +1,178 @@
+.
+ *
+ * @category Widget
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2011 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+
+if (!defined('STATUSNET')) {
+ // This check helps protect against security problems;
+ // your code file can't be executed directly from the web.
+ exit(1);
+}
+
+/**
+ * A single item in a message list
+ *
+ * @category Widget
+ * @package StatusNet
+ * @author Evan Prodromou
+ * @copyright 2011 StatusNet, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
+ * @link http://status.net/
+ */
+abstract class MessageListItem extends Widget
+{
+ var $message;
+
+ /**
+ * Constructor
+ *
+ * @param HTMLOutputter $out Output context
+ * @param Message $message Message to show
+ */
+ function __construct($out, $message)
+ {
+ parent::__construct($out);
+ $this->message = $message;
+ }
+
+ /**
+ * Show the widget
+ *
+ * @return void
+ */
+
+ function show()
+ {
+ $this->out->elementStart('li', array('class' => 'hentry notice',
+ 'id' => 'message-' . $this->message->id));
+
+ $profile = $this->getMessageProfile();
+
+ $this->out->elementStart('div', 'entry-title');
+ $this->out->elementStart('span', 'vcard author');
+ $this->out->elementStart('a', array('href' => $profile->profileurl,
+ 'class' => 'url'));
+ $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
+ $this->out->element('img', array('src' => ($avatar) ?
+ $avatar->displayUrl() :
+ Avatar::defaultImage(AVATAR_STREAM_SIZE),
+ 'class' => 'photo avatar',
+ 'width' => AVATAR_STREAM_SIZE,
+ 'height' => AVATAR_STREAM_SIZE,
+ 'alt' =>
+ ($profile->fullname) ? $profile->fullname :
+ $profile->nickname));
+ $this->out->element('span', array('class' => 'nickname fn'),
+ $profile->nickname);
+ $this->out->elementEnd('a');
+ $this->out->elementEnd('span');
+
+ // FIXME: URL, image, video, audio
+ $this->out->elementStart('p', array('class' => 'entry-content'));
+ $this->out->raw($this->message->rendered);
+ $this->out->elementEnd('p');
+ $this->out->elementEnd('div');
+
+ $messageurl = common_local_url('showmessage',
+ array('message' => $this->message->id));
+
+ // XXX: we need to figure this out better. Is this right?
+ if (strcmp($this->message->uri, $messageurl) != 0 &&
+ preg_match('/^http/', $this->message->uri)) {
+ $messageurl = $this->message->uri;
+ }
+
+ $this->out->elementStart('div', 'entry-content');
+ $this->out->elementStart('a', array('rel' => 'bookmark',
+ 'class' => 'timestamp',
+ 'href' => $messageurl));
+ $dt = common_date_iso8601($this->message->created);
+ $this->out->element('abbr', array('class' => 'published',
+ 'title' => $dt),
+ common_date_string($this->message->created));
+ $this->out->elementEnd('a');
+
+ if ($this->message->source) {
+ $this->out->elementStart('span', 'source');
+ // FIXME: bad i18n. Device should be a parameter (from %s).
+ $this->out->text(_('from'));
+ $this->showSource($this->message->source);
+ $this->out->elementEnd('span');
+ }
+ $this->out->elementEnd('div');
+
+ $this->out->elementEnd('li');
+ }
+
+
+ /**
+ * Show the source of the message
+ *
+ * Returns either the name (and link) of the API client that posted the notice,
+ * or one of other other channels.
+ *
+ * @param string $source the source of the message
+ *
+ * @return void
+ */
+ function showSource($source)
+ {
+ $source_name = _($source);
+ switch ($source) {
+ case 'web':
+ case 'xmpp':
+ case 'mail':
+ case 'omb':
+ case 'api':
+ $this->out->element('span', 'device', $source_name);
+ break;
+ default:
+ $ns = Notice_source::staticGet($source);
+ if ($ns) {
+ $this->out->elementStart('span', 'device');
+ $this->out->element('a', array('href' => $ns->url,
+ 'rel' => 'external'),
+ $ns->name);
+ $this->out->elementEnd('span');
+ } else {
+ $this->out->element('span', 'device', $source_name);
+ }
+ break;
+ }
+ return;
+ }
+
+ /**
+ * Return the profile to show in the message item
+ *
+ * Overridden in sub-classes to show sender, receiver, or whatever
+ *
+ * @return Profile profile to show avatar and name of
+ */
+ abstract function getMessageProfile();
+}
diff --git a/lib/noticeform.php b/lib/noticeform.php
index 432316adc9..4e8b842078 100644
--- a/lib/noticeform.php
+++ b/lib/noticeform.php
@@ -189,12 +189,12 @@ class NoticeForm extends Form
}
if (common_config('attachments', 'uploads')) {
+ $this->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota'));
$this->out->element('label', array('for' => 'notice_data-attach'),_('Attach'));
$this->out->element('input', array('id' => 'notice_data-attach',
'type' => 'file',
'name' => 'attach',
'title' => _('Attach a file')));
- $this->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota'));
}
if ($this->action) {
$this->out->hidden('notice_return-to', $this->action, 'returnto');
diff --git a/lib/personalgroupnav.php b/lib/personalgroupnav.php
index f57de8e240..72d0893af7 100644
--- a/lib/personalgroupnav.php
+++ b/lib/personalgroupnav.php
@@ -52,7 +52,6 @@ require_once INSTALLDIR.'/lib/widget.php';
*
* @see HTMLOutputter
*/
-
class PersonalGroupNav extends Widget
{
var $action = null;
@@ -62,7 +61,6 @@ class PersonalGroupNav extends Widget
*
* @param Action $action current action, used for output
*/
-
function __construct($action=null)
{
parent::__construct($action);
@@ -74,7 +72,6 @@ class PersonalGroupNav extends Widget
*
* @return void
*/
-
function show()
{
$user = null;
diff --git a/lib/personaltagcloudsection.php b/lib/personaltagcloudsection.php
index 5ea3f188db..fd10ba14d6 100644
--- a/lib/personaltagcloudsection.php
+++ b/lib/personaltagcloudsection.php
@@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class PersonalTagCloudSection extends TagCloudSection
{
var $user = null;
@@ -53,6 +52,7 @@ class PersonalTagCloudSection extends TagCloudSection
function title()
{
+ // TRANS: Title for personal tag cloud section. %s is a user nickname.
return sprintf(_('Tags in %s\'s notices'), $this->user->nickname);
}
@@ -84,5 +84,4 @@ class PersonalTagCloudSection extends TagCloudSection
3600);
return $tag;
}
-
}
diff --git a/lib/plugin.php b/lib/plugin.php
index 3f84afa27e..0e8c0a742d 100644
--- a/lib/plugin.php
+++ b/lib/plugin.php
@@ -110,11 +110,16 @@ class Plugin
{
$this->log(LOG_DEBUG, $msg);
}
+
+ function name()
+ {
+ $cls = get_class($this);
+ return mb_substr($cls, 0, -6);
+ }
function onPluginVersion(&$versions)
{
- $cls = get_class($this);
- $name = mb_substr($cls, 0, -6);
+ $name = $this->name();
$versions[] = array('name' => $name,
// TRANS: Displayed as version information for a plugin if no version information was found.
@@ -122,4 +127,51 @@ class Plugin
return true;
}
+
+ function path($relative)
+ {
+ return self::staticPath($this->name(), $relative);
+ }
+
+ static function staticPath($plugin, $relative)
+ {
+ $isHTTPS = StatusNet::isHTTPS();
+
+ if ($isHTTPS) {
+ $server = common_config('plugins', 'sslserver');
+ } else {
+ $server = common_config('plugins', 'server');
+ }
+
+ if (empty($server)) {
+ if ($isHTTPS) {
+ $server = common_config('site', 'sslserver');
+ }
+ if (empty($server)) {
+ $server = common_config('site', 'server');
+ }
+ }
+
+ if ($isHTTPS) {
+ $path = common_config('plugins', 'sslpath');
+ } else {
+ $path = common_config('plugins', 'path');
+ }
+
+ if (empty($path)) {
+ $path = common_config('site', 'path') . '/plugins/';
+ }
+
+ if ($path[strlen($path)-1] != '/') {
+ $path .= '/';
+ }
+
+ if ($path[0] != '/') {
+ $path = '/'.$path;
+ }
+
+ $protocol = ($isHTTPS) ? 'https' : 'http';
+
+ return $protocol.'://'.$server.$path.$plugin.'/'.$relative;
+ }
}
diff --git a/lib/poco.php b/lib/poco.php
index d7b082163e..baea5b33b0 100644
--- a/lib/poco.php
+++ b/lib/poco.php
@@ -241,4 +241,42 @@ class PoCo
$url->outputTo($xo);
}
}
+
+ /**
+ * Output a Portable Contact as an array suitable for serializing
+ * as JSON
+ *
+ * @return $array the PoCo array
+ */
+
+ function asArray()
+ {
+ $poco = array();
+
+ $poco['preferredUsername'] = $this->preferredUsername;
+ $poco['displayName'] = $this->displayName;
+
+ if (!empty($this->note)) {
+ $poco['note'] = $this->note;
+ }
+
+ if (!empty($this->address)) {
+ $poco['addresses'] = $this->address->asArray();
+ }
+
+ if (!empty($this->urls)) {
+
+ $urls = array();
+
+ foreach ($this->urls as $url) {
+ $urls[] = $url->asArray();
+ }
+
+ $poco['urls'] = $urls;
+ }
+
+ return $poco;
+ }
+
}
+
diff --git a/lib/pocoaddress.php b/lib/pocoaddress.php
index d9f6ff2bde..22d4d02b13 100644
--- a/lib/pocoaddress.php
+++ b/lib/pocoaddress.php
@@ -56,4 +56,17 @@ class PoCoAddress
$xo->elementEnd('poco:address');
}
}
+
+ /**
+ * Return this PoCo address as an array suitable for serializing in JSON
+ *
+ * @return array the address
+ */
+
+ function asArray()
+ {
+ if (!empty($this->formatted)) {
+ return array('formatted' => $this->formatted);
+ }
+ }
}
diff --git a/lib/pocourl.php b/lib/pocourl.php
index 786793b280..e375f125a0 100644
--- a/lib/pocourl.php
+++ b/lib/pocourl.php
@@ -67,4 +67,24 @@ class PoCoURL
}
$xo->elementEnd('poco:urls');
}
+
+ /**
+ * Return this PoCo URL as an array suitable for serializing in JSON
+ *
+ * @array $url the url
+ */
+
+ function asArray()
+ {
+ $url = array();
+
+ $url['type'] = $this->type;
+ $url['value'] = $this->value;
+
+ if (!empty($this->primary)) {
+ $url['primary'] = 'true';
+ }
+
+ return $url;
+ }
}
diff --git a/lib/popularnoticesection.php b/lib/popularnoticesection.php
index a4f038b246..f6f27c6878 100644
--- a/lib/popularnoticesection.php
+++ b/lib/popularnoticesection.php
@@ -43,7 +43,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class PopularNoticeSection extends NoticeSection
{
function getNotices()
@@ -59,6 +58,7 @@ class PopularNoticeSection extends NoticeSection
function title()
{
+ // TRANS: Title for favourited notices section.
return _('Popular notices');
}
diff --git a/lib/profileaction.php b/lib/profileaction.php
index 9ba8261229..f777edd319 100644
--- a/lib/profileaction.php
+++ b/lib/profileaction.php
@@ -46,7 +46,6 @@ require_once INSTALLDIR.'/lib/groupminilist.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class ProfileAction extends OwnerDesignAction
{
var $page = null;
@@ -74,6 +73,7 @@ class ProfileAction extends OwnerDesignAction
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
+ // TRANS: Client error displayed when calling a profile action without specifying a user.
$this->clientError(_('No such user.'), 404);
return false;
}
@@ -81,6 +81,7 @@ class ProfileAction extends OwnerDesignAction
$this->profile = $this->user->getProfile();
if (!$this->profile) {
+ // TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
$this->serverError(_('User has no profile.'));
return false;
}
@@ -99,6 +100,21 @@ class ProfileAction extends OwnerDesignAction
$this->showStatistics();
}
+ /**
+ * Convenience function for common pattern of links to subscription/groups sections.
+ *
+ * @param string $actionClass
+ * @param string $title
+ * @param string $cssClass
+ */
+ private function statsSectionLink($actionClass, $title, $cssClass='')
+ {
+ $this->element('a', array('href' => common_local_url($actionClass,
+ array('nickname' => $this->profile->nickname)),
+ 'class' => $cssClass),
+ $title);
+ }
+
function showSubscriptions()
{
$profile = $this->profile->getSubscriptions(0, PROFILES_PER_MINILIST + 1);
@@ -106,7 +122,10 @@ class ProfileAction extends OwnerDesignAction
$this->elementStart('div', array('id' => 'entity_subscriptions',
'class' => 'section'));
if (Event::handle('StartShowSubscriptionsMiniList', array($this))) {
- $this->element('h2', null, _('Subscriptions'));
+ $this->elementStart('h2');
+ // TRANS: H2 text for user subscription statistics.
+ $this->statsSectionLink('subscriptions', _('Subscriptions'));
+ $this->elementEnd('h2');
$cnt = 0;
@@ -114,16 +133,15 @@ class ProfileAction extends OwnerDesignAction
$pml = new ProfileMiniList($profile, $this);
$cnt = $pml->show();
if ($cnt == 0) {
+ // TRANS: Text for user subscription statistics if the user has no subscriptions.
$this->element('p', null, _('(None)'));
}
}
if ($cnt > PROFILES_PER_MINILIST) {
$this->elementStart('p');
- $this->element('a', array('href' => common_local_url('subscriptions',
- array('nickname' => $this->profile->nickname)),
- 'class' => 'more'),
- _('All subscriptions'));
+ // TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+ $this->statsSectionLink('subscriptions', _('All subscriptions'), 'more');
$this->elementEnd('p');
}
@@ -141,7 +159,10 @@ class ProfileAction extends OwnerDesignAction
if (Event::handle('StartShowSubscribersMiniList', array($this))) {
- $this->element('h2', null, _('Subscribers'));
+ $this->elementStart('h2');
+ // TRANS: H2 text for user subscriber statistics.
+ $this->statsSectionLink('subscribers', _('Subscribers'));
+ $this->elementEnd('h2');
$cnt = 0;
@@ -149,16 +170,15 @@ class ProfileAction extends OwnerDesignAction
$sml = new SubscribersMiniList($profile, $this);
$cnt = $sml->show();
if ($cnt == 0) {
+ // TRANS: Text for user subscriber statistics if user has no subscribers.
$this->element('p', null, _('(None)'));
}
}
if ($cnt > PROFILES_PER_MINILIST) {
$this->elementStart('p');
- $this->element('a', array('href' => common_local_url('subscribers',
- array('nickname' => $this->profile->nickname)),
- 'class' => 'more'),
- _('All subscribers'));
+ // TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+ $this->statsSectionLink('subscribers', _('All subscribers'), 'more');
$this->elementEnd('p');
}
@@ -170,10 +190,7 @@ class ProfileAction extends OwnerDesignAction
function showStatistics()
{
- $subs_count = $this->profile->subscriptionCount();
- $subbed_count = $this->profile->subscriberCount();
$notice_count = $this->profile->noticeCount();
- $group_count = $this->profile->getGroups()->N;
$age_days = (time() - strtotime($this->profile->created)) / 86400;
if ($age_days < 1) {
// Rather than extrapolating out to a bajillion...
@@ -184,50 +201,83 @@ class ProfileAction extends OwnerDesignAction
$this->elementStart('div', array('id' => 'entity_statistics',
'class' => 'section'));
+ // TRANS: H2 text for user statistics.
$this->element('h2', null, _('Statistics'));
- // Other stats...?
- $this->elementStart('dl');
- $this->element('dt', null, _('User ID'));
- $this->element('dd', 'entity_user-id', $this->profile->id);
+ $profile = $this->profile;
+ $actionParams = array('nickname' => $profile->nickname);
+ $stats = array(
+ array(
+ 'id' => 'user-id',
+ // TRANS: Label for user statistics.
+ 'label' => _('User ID'),
+ 'value' => $profile->id,
+ ),
+ array(
+ 'id' => 'member-since',
+ // TRANS: Label for user statistics.
+ 'label' => _('Member since'),
+ 'value' => date('j M Y', strtotime($profile->created))
+ ),
+ array(
+ 'id' => 'subscriptions',
+ // TRANS: Label for user statistics.
+ 'label' => _('Subscriptions'),
+ 'link' => common_local_url('subscriptions', $actionParams),
+ 'value' => $profile->subscriptionCount(),
+ ),
+ array(
+ 'id' => 'subscribers',
+ // TRANS: Label for user statistics.
+ 'label' => _('Subscribers'),
+ 'link' => common_local_url('subscribers', $actionParams),
+ 'value' => $profile->subscriberCount(),
+ ),
+ array(
+ 'id' => 'groups',
+ // TRANS: Label for user statistics.
+ 'label' => _('Groups'),
+ 'link' => common_local_url('usergroups', $actionParams),
+ 'value' => $profile->getGroups()->N,
+ ),
+ array(
+ 'id' => 'notices',
+ // TRANS: Label for user statistics.
+ 'label' => _('Notices'),
+ 'value' => $notice_count,
+ ),
+ array(
+ 'id' => 'daily_notices',
+ // TRANS: Label for user statistics.
+ // TRANS: Average count of posts made per day since account registration.
+ 'label' => _('Daily average'),
+ 'value' => $daily_count
+ )
+ );
- $this->element('dt', null, _('Member since'));
- $this->element('dd', 'entity_member-since', date('j M Y',
- strtotime($this->profile->created)));
-
- $this->elementStart('dt');
- $this->element('a', array('href' => common_local_url('subscriptions',
- array('nickname' => $this->profile->nickname))),
- _('Subscriptions'));
- $this->elementEnd('dt');
- $this->element('dd', 'entity_subscriptions', $subs_count);
-
- $this->elementStart('dt');
- $this->element('a', array('href' => common_local_url('subscribers',
- array('nickname' => $this->profile->nickname))),
- _('Subscribers'));
- $this->elementEnd('dt');
- $this->element('dd', 'subscribers entity_subscribers', $subbed_count);
-
- $this->elementStart('dt');
- $this->element('a', array('href' => common_local_url('usergroups',
- array('nickname' => $this->profile->nickname))),
- _('Groups'));
- $this->elementEnd('dt');
- $this->element('dd', 'groups entity_groups', $group_count);
-
- $this->element('dt', null, _('Notices'));
- $this->element('dd', 'entity_notices', $notice_count);
-
- // TRANS: Average count of posts made per day since account registration
- $this->element('dt', null, _('Daily average'));
- $this->element('dd', 'entity_daily_notices', $daily_count);
-
- $this->elementEnd('dl');
+ // Give plugins a chance to add stats entries
+ Event::handle('ProfileStats', array($profile, &$stats));
+ foreach ($stats as $row) {
+ $this->showStatsRow($row);
+ }
$this->elementEnd('div');
}
+ private function showStatsRow($row)
+ {
+ $this->elementStart('dl', 'entity_' . $row['id']);
+ $this->elementStart('dt');
+ if (!empty($row['link'])) {
+ $this->element('a', array('href' => $row['link']), $row['label']);
+ } else {
+ $this->text($row['label']);
+ }
+ $this->elementEnd('dt');
+ $this->element('dd', null, $row['value']);
+ $this->elementEnd('dl');
+ }
+
function showGroups()
{
$groups = $this->profile->getGroups(0, GROUPS_PER_MINILIST + 1);
@@ -235,22 +285,24 @@ class ProfileAction extends OwnerDesignAction
$this->elementStart('div', array('id' => 'entity_groups',
'class' => 'section'));
if (Event::handle('StartShowGroupsMiniList', array($this))) {
- $this->element('h2', null, _('Groups'));
+ $this->elementStart('h2');
+ // TRANS: H2 text for user group membership statistics.
+ $this->statsSectionLink('usergroups', _('Groups'));
+ $this->elementEnd('h2');
if ($groups) {
$gml = new GroupMiniList($groups, $this->profile, $this);
$cnt = $gml->show();
if ($cnt == 0) {
+ // TRANS: Text for user user group membership statistics if user is not a member of any group.
$this->element('p', null, _('(None)'));
}
}
if ($cnt > GROUPS_PER_MINILIST) {
$this->elementStart('p');
- $this->element('a', array('href' => common_local_url('usergroups',
- array('nickname' => $this->profile->nickname)),
- 'class' => 'more'),
- _('All groups'));
+ // TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+ $this->statsSectionLink('usergroups', _('All groups'), 'more');
$this->elementEnd('p');
}
@@ -279,4 +331,3 @@ class SubscribersMiniListItem extends ProfileMiniListItem
return $aAttrs;
}
}
-
diff --git a/lib/profileformaction.php b/lib/profileformaction.php
index 51c89a922e..5706528223 100644
--- a/lib/profileformaction.php
+++ b/lib/profileformaction.php
@@ -40,7 +40,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
-
class ProfileFormAction extends RedirectingAction
{
var $profile = null;
@@ -52,7 +51,6 @@ class ProfileFormAction extends RedirectingAction
*
* @return boolean success flag
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -61,6 +59,7 @@ class ProfileFormAction extends RedirectingAction
if (!common_logged_in()) {
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
+ // TRANS: Client error displayed when trying to change user options while not logged in.
$this->clientError(_('Not logged in.'));
} else {
// Redirect to login.
@@ -76,6 +75,7 @@ class ProfileFormAction extends RedirectingAction
$id = $this->trimmed('profileid');
if (!$id) {
+ // TRANS: Client error displayed when trying to change user options without specifying a user to work on.
$this->clientError(_('No profile specified.'));
return false;
}
@@ -83,6 +83,7 @@ class ProfileFormAction extends RedirectingAction
$this->profile = Profile::staticGet('id', $id);
if (!$this->profile) {
+ // TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
$this->clientError(_('No profile with that ID.'));
return false;
}
@@ -99,7 +100,6 @@ class ProfileFormAction extends RedirectingAction
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
@@ -117,9 +117,9 @@ class ProfileFormAction extends RedirectingAction
*
* @return void
*/
-
function handlePost()
{
+ // TRANS: Server error displayed when using an unimplemented method.
$this->serverError(_("Unimplemented method."));
}
}
diff --git a/lib/queuemanager.php b/lib/queuemanager.php
index 60ac4855a7..1fa3417829 100644
--- a/lib/queuemanager.php
+++ b/lib/queuemanager.php
@@ -243,6 +243,8 @@ abstract class QueueManager extends IoManager
$this->connect('deluser', 'DelUserQueueHandler');
$this->connect('feedimp', 'FeedImporter');
$this->connect('actimp', 'ActivityImporter');
+ $this->connect('acctmove', 'AccountMover');
+ $this->connect('actmove', 'ActivityMover');
// Broadcasting profile updates to OMB remote subscribers
$this->connect('profile', 'ProfileQueueHandler');
diff --git a/lib/right.php b/lib/right.php
index d144b21ae9..baa18d3c13 100644
--- a/lib/right.php
+++ b/lib/right.php
@@ -66,5 +66,7 @@ class Right
const DELETEACCOUNT = 'deleteaccount';
const MOVEACCOUNT = 'moveaccount';
const CREATEGROUP = 'creategroup';
+ const WEBLOGIN = 'weblogin';
+ const API = 'api';
}
diff --git a/lib/router.php b/lib/router.php
index 10e5291588..ccc4b09781 100644
--- a/lib/router.php
+++ b/lib/router.php
@@ -116,6 +116,8 @@ class Router
static $bare = array('requesttoken', 'accesstoken', 'userauthorization',
'postnotice', 'updateprofile', 'finishremotesubscribe');
+ const REGEX_TAG = '[^\/]+'; // [\pL\pN_\-\.]{1,64} better if we can do unicode regexes
+
static function get()
{
if (!Router::$inst) {
@@ -348,14 +350,14 @@ class Router
$m->connect('tag', array('action' => 'publictagcloud'));
$m->connect('tag/:tag/rss',
array('action' => 'tagrss'),
- array('tag' => '[\pL\pN_\-\.]{1,64}'));
+ array('tag' => self::REGEX_TAG));
$m->connect('tag/:tag',
array('action' => 'tag'),
- array('tag' => '[\pL\pN_\-\.]{1,64}'));
+ array('tag' => self::REGEX_TAG));
$m->connect('peopletag/:tag',
array('action' => 'peopletag'),
- array('tag' => '[a-zA-Z0-9]+'));
+ array('tag' => self::REGEX_TAG));
// groups
@@ -412,64 +414,64 @@ class Router
$m->connect('api/statuses/public_timeline.:format',
array('action' => 'ApiTimelinePublic',
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/friends_timeline.:format',
array('action' => 'ApiTimelineFriends',
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/friends_timeline/:id.:format',
array('action' => 'ApiTimelineFriends',
'id' => Nickname::INPUT_FMT,
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/home_timeline.:format',
array('action' => 'ApiTimelineHome',
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/home_timeline/:id.:format',
array('action' => 'ApiTimelineHome',
'id' => Nickname::INPUT_FMT,
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/user_timeline.:format',
array('action' => 'ApiTimelineUser',
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/user_timeline/:id.:format',
array('action' => 'ApiTimelineUser',
'id' => Nickname::INPUT_FMT,
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/mentions.:format',
array('action' => 'ApiTimelineMentions',
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/mentions/:id.:format',
array('action' => 'ApiTimelineMentions',
'id' => Nickname::INPUT_FMT,
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/replies.:format',
array('action' => 'ApiTimelineMentions',
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/replies/:id.:format',
array('action' => 'ApiTimelineMentions',
'id' => Nickname::INPUT_FMT,
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statuses/retweeted_by_me.:format',
array('action' => 'ApiTimelineRetweetedByMe',
- 'format' => '(xml|json|atom)'));
+ 'format' => '(xml|json|atom|as)'));
$m->connect('api/statuses/retweeted_to_me.:format',
array('action' => 'ApiTimelineRetweetedToMe',
- 'format' => '(xml|json|atom)'));
+ 'format' => '(xml|json|atom|as)'));
$m->connect('api/statuses/retweets_of_me.:format',
array('action' => 'ApiTimelineRetweetsOfMe',
- 'format' => '(xml|json|atom)'));
+ 'format' => '(xml|json|atom|as)'));
$m->connect('api/statuses/friends.:format',
array('action' => 'ApiUserFriends',
@@ -630,12 +632,12 @@ class Router
$m->connect('api/favorites.:format',
array('action' => 'ApiTimelineFavorites',
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/favorites/:id.:format',
array('action' => 'ApiTimelineFavorites',
'id' => Nickname::INPUT_FMT,
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/favorites/create/:id.:format',
array('action' => 'ApiFavoriteCreate',
@@ -700,7 +702,7 @@ class Router
$m->connect('api/statusnet/groups/timeline/:id.:format',
array('action' => 'ApiTimelineGroup',
'id' => Nickname::INPUT_FMT,
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
$m->connect('api/statusnet/groups/show.:format',
array('action' => 'ApiGroupShow',
@@ -767,7 +769,7 @@ class Router
// Tags
$m->connect('api/statusnet/tags/timeline/:tag.:format',
array('action' => 'ApiTimelineTag',
- 'format' => '(xml|json|rss|atom)'));
+ 'format' => '(xml|json|rss|atom|as)'));
// media related
$m->connect(
@@ -831,7 +833,7 @@ class Router
$m->connect($a.'/:tag',
array('action' => $a,
'nickname' => $nickname),
- array('tag' => '[a-zA-Z0-9]+'));
+ array('tag' => self::REGEX_TAG));
}
foreach (array('rss', 'groups') as $a) {
@@ -858,12 +860,12 @@ class Router
$m->connect('tag/:tag/rss',
array('action' => 'userrss',
'nickname' => $nickname),
- array('tag' => '[\pL\pN_\-\.]{1,64}'));
+ array('tag' => self::REGEX_TAG));
$m->connect('tag/:tag',
array('action' => 'showstream',
'nickname' => $nickname),
- array('tag' => '[\pL\pN_\-\.]{1,64}'));
+ array('tag' => self::REGEX_TAG));
$m->connect('rsd.xml',
array('action' => 'rsd',
@@ -894,7 +896,7 @@ class Router
foreach (array('subscriptions', 'subscribers') as $a) {
$m->connect(':nickname/'.$a.'/:tag',
array('action' => $a),
- array('tag' => '[a-zA-Z0-9]+',
+ array('tag' => self::REGEX_TAG,
'nickname' => Nickname::DISPLAY_FMT));
}
@@ -922,12 +924,12 @@ class Router
$m->connect(':nickname/tag/:tag/rss',
array('action' => 'userrss'),
array('nickname' => Nickname::DISPLAY_FMT),
- array('tag' => '[\pL\pN_\-\.]{1,64}'));
+ array('tag' => self::REGEX_TAG));
$m->connect(':nickname/tag/:tag',
array('action' => 'showstream'),
array('nickname' => Nickname::DISPLAY_FMT),
- array('tag' => '[\pL\pN_\-\.]{1,64}'));
+ array('tag' => self::REGEX_TAG));
$m->connect(':nickname/rsd.xml',
array('action' => 'rsd'),
diff --git a/lib/useractivitystream.php b/lib/useractivitystream.php
index 0fc315e26e..d1e3e28fb8 100644
--- a/lib/useractivitystream.php
+++ b/lib/useractivitystream.php
@@ -25,18 +25,52 @@
* We extend atomusernoticefeed since it does some nice setup for us.
*
*/
-
class UserActivityStream extends AtomUserNoticeFeed
{
- function __construct($user, $indent = true)
+ public $activities = array();
+
+ const OUTPUT_STRING = 1;
+ const OUTPUT_RAW = 2;
+ public $outputMode = self::OUTPUT_STRING;
+
+ /**
+ *
+ * @param User $user
+ * @param boolean $indent
+ * @param boolean $outputMode: UserActivityStream::OUTPUT_STRING to return a string,
+ * or UserActivityStream::OUTPUT_RAW to go to raw output.
+ * Raw output mode will attempt to stream, keeping less
+ * data in memory but will leave $this->activities incomplete.
+ */
+ function __construct($user, $indent = true, $outputMode = UserActivityStream::OUTPUT_STRING)
{
parent::__construct($user, null, $indent);
+ $this->outputMode = $outputMode;
+ if ($this->outputMode == self::OUTPUT_STRING) {
+ // String buffering? Grab all the notices now.
+ $notices = $this->getNotices();
+ } elseif ($this->outputMode == self::OUTPUT_RAW) {
+ // Raw output... need to restructure from the stringer init.
+ $this->xw = new XMLWriter();
+ $this->xw->openURI('php://output');
+ if(is_null($indent)) {
+ $indent = common_config('site', 'indent');
+ }
+ $this->xw->setIndent($indent);
+
+ // We'll fetch notices later.
+ $notices = array();
+ } else {
+ throw new Exception('Invalid outputMode provided to ' . __METHOD__);
+ }
+
+ // Assume that everything but notices is feasible
+ // to pull at once and work with in memory...
$subscriptions = $this->getSubscriptions();
$subscribers = $this->getSubscribers();
$groups = $this->getGroups();
$faves = $this->getFaves();
- $notices = $this->getNotices();
$objs = array_merge($subscriptions, $subscribers, $groups, $faves, $notices);
@@ -44,11 +78,44 @@ class UserActivityStream extends AtomUserNoticeFeed
usort($objs, 'UserActivityStream::compareObject');
+ // We'll keep these around for later, and interleave them into
+ // the output stream with the user's notices.
foreach ($objs as $obj) {
- $act = $obj->asActivity();
+ $this->activities[] = $obj->asActivity();
+ }
+ }
+
+ /**
+ * Interleave the pre-sorted subs/groups/faves with the user's
+ * notices, all in reverse chron order.
+ */
+ function renderEntries()
+ {
+ $end = time() + 1;
+ foreach ($this->activities as $act) {
+ $start = $act->time;
+
+ if ($this->outputMode == self::OUTPUT_RAW && $start != $end) {
+ // In raw mode, we haven't pre-fetched notices.
+ // Grab the chunks of notices between other activities.
+ $notices = $this->getNoticesBetween($start, $end);
+ foreach ($notices as $noticeAct) {
+ $noticeAct->asActivity()->outputTo($this, false, false);
+ }
+ }
+
// Only show the author sub-element if it's different from default user
- $str = $act->asString(false, ($act->actor->id != $this->user->uri));
- $this->addEntryRaw($str);
+ $act->outputTo($this, false, ($act->actor->id != $this->user->uri));
+
+ $end = $start;
+ }
+
+ if ($this->outputMode == self::OUTPUT_RAW) {
+ // Grab anything after the last pre-sorted activity.
+ $notices = $this->getNoticesBetween(0, $end);
+ foreach ($notices as $noticeAct) {
+ $noticeAct->asActivity()->outputTo($this, false, false);
+ }
}
}
@@ -115,7 +182,13 @@ class UserActivityStream extends AtomUserNoticeFeed
return $faves;
}
- function getNotices()
+ /**
+ *
+ * @param int $start unix timestamp for earliest
+ * @param int $end unix timestamp for latest
+ * @return array of Notice objects
+ */
+ function getNoticesBetween($start=0, $end=0)
{
$notices = array();
@@ -123,6 +196,17 @@ class UserActivityStream extends AtomUserNoticeFeed
$notice->profile_id = $this->user->id;
+ if ($start) {
+ $tsstart = common_sql_date($start);
+ $notice->whereAdd("created >= '$tsstart'");
+ }
+ if ($end) {
+ $tsend = common_sql_date($end);
+ $notice->whereAdd("created < '$tsend'");
+ }
+
+ $notice->orderBy('created DESC');
+
if ($notice->find()) {
while ($notice->fetch()) {
$notices[] = clone($notice);
@@ -132,6 +216,11 @@ class UserActivityStream extends AtomUserNoticeFeed
return $notices;
}
+ function getNotices()
+ {
+ return $this->getNoticesBetween();
+ }
+
function getGroups()
{
$groups = array();
diff --git a/lib/userprofile.php b/lib/userprofile.php
index 71b54682af..0b7efb22fc 100644
--- a/lib/userprofile.php
+++ b/lib/userprofile.php
@@ -48,7 +48,6 @@ require_once INSTALLDIR.'/lib/widget.php';
*
* @see HTMLOutputter
*/
-
class UserProfile extends Widget
{
var $user = null;
@@ -73,6 +72,7 @@ class UserProfile extends Widget
$this->out->elementStart('div', array('id' => 'i',
'class' => 'entity_profile vcard author'));
+ // TRANS: H2 for user profile information.
$this->out->element('h2', null, _('User profile'));
if (Event::handle('StartProfilePageProfileElements', array(&$this->out, $this->profile))) {
@@ -212,36 +212,41 @@ class UserProfile extends Widget
{
if ($this->profile->hasRole(Profile_role::DELETED)) {
$this->out->elementStart('div', 'entity_actions');
+ // TRANS: H2 for user actions in a profile.
$this->out->element('h2', null, _('User actions'));
$this->out->elementStart('ul');
$this->out->elementStart('p', array('class' => 'profile_deleted'));
+ // TRANS: Text shown in user profile of not yet compeltely deleted users.
$this->out->text(_('User deletion in progress...'));
$this->out->elementEnd('p');
$this->out->elementEnd('ul');
$this->out->elementEnd('div');
return;
}
- if (Event::handle('StartProfilePageActionsSection', array(&$this->out, $this->profile))) {
+ if (Event::handle('StartProfilePageActionsSection', array($this->out, $this->profile))) {
$cur = common_current_user();
$this->out->elementStart('div', 'entity_actions');
+ // TRANS: H2 for entity actions in a profile.
$this->out->element('h2', null, _('User actions'));
$this->out->elementStart('ul');
- if (Event::handle('StartProfilePageActionsElements', array(&$this->out, $this->profile))) {
+ if (Event::handle('StartProfilePageActionsElements', array($this->out, $this->profile))) {
if (empty($cur)) { // not logged in
- if (Event::handle('StartProfileRemoteSubscribe', array(&$this->out, $this->profile))) {
+ if (Event::handle('StartProfileRemoteSubscribe', array($this->out, $this->profile))) {
$this->out->elementStart('li', 'entity_subscribe');
$this->showRemoteSubscribeLink();
$this->out->elementEnd('li');
- Event::handle('EndProfileRemoteSubscribe', array(&$this->out, $this->profile));
+ Event::handle('EndProfileRemoteSubscribe', array($this->out, $this->profile));
}
} else {
if ($cur->id == $this->profile->id) { // your own page
$this->out->elementStart('li', 'entity_edit');
$this->out->element('a', array('href' => common_local_url('profilesettings'),
+ // TRANS: Link title for link on user profile.
'title' => _('Edit profile settings')),
+ // TRANS: Link text for link on user profile.
_('Edit'));
$this->out->elementEnd('li');
} else { // someone else's page
@@ -265,7 +270,9 @@ class UserProfile extends Widget
$this->out->elementStart('li', 'entity_send-a-message');
$this->out->element('a', array('href' => common_local_url('newmessage', array('to' => $this->user->id)),
+ // TRANS: Link title for link on user profile.
'title' => _('Send a direct message to this user')),
+ // TRANS: Link text for link on user profile.
_('Message'));
$this->out->elementEnd('li');
@@ -307,6 +314,7 @@ class UserProfile extends Widget
$cur->hasRight(Right::SILENCEUSER) ||
$cur->hasRight(Right::DELETEUSER)) {
$this->out->elementStart('li', 'entity_moderation');
+ // TRANS: Label text on user profile to select a user role.
$this->out->element('p', null, _('Moderate'));
$this->out->elementStart('ul');
if ($cur->hasRight(Right::SANDBOXUSER)) {
@@ -342,12 +350,15 @@ class UserProfile extends Widget
$this->out->elementEnd('ul');
$this->out->elementEnd('li');
}
-
+
if ($isLocal && $cur->hasRight(Right::GRANTROLE)) {
$this->out->elementStart('li', 'entity_role');
+ // TRANS: Label text on user profile to select a user role.
$this->out->element('p', null, _('User role'));
$this->out->elementStart('ul');
+ // TRANS: Role that can be set for a user profile.
$this->roleButton('administrator', _m('role', 'Administrator'));
+ // TRANS: Role that can be set for a user profile.
$this->roleButton('moderator', _m('role', 'Moderator'));
$this->out->elementEnd('ul');
$this->out->elementEnd('li');
@@ -355,13 +366,13 @@ class UserProfile extends Widget
}
}
- Event::handle('EndProfilePageActionsElements', array(&$this->out, $this->profile));
+ Event::handle('EndProfilePageActionsElements', array($this->out, $this->profile));
}
$this->out->elementEnd('ul');
$this->out->elementEnd('div');
- Event::handle('EndProfilePageActionsSection', array(&$this->out, $this->profile));
+ Event::handle('EndProfilePageActionsSection', array($this->out, $this->profile));
}
}
@@ -387,6 +398,7 @@ class UserProfile extends Widget
array('nickname' => $this->profile->nickname));
$this->out->element('a', array('href' => $url,
'class' => 'entity_remote_subscribe'),
+ // TRANS: Link text for link that will subscribe to a remote profile.
_('Subscribe'));
}
}
diff --git a/lib/util.php b/lib/util.php
index 4aec05275c..9f84e3120a 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -316,7 +316,10 @@ function common_set_user($user)
if ($user) {
if (Event::handle('StartSetUser', array(&$user))) {
- if($user){
+ if (!empty($user)) {
+ if (!$user->hasRight(Right::WEBLOGIN)) {
+ throw new AuthorizationException(_('Not allowed to log in.'));
+ }
common_ensure_session();
$_SESSION['userid'] = $user->id;
$_cur = $user;
@@ -800,7 +803,7 @@ function common_render_text($text)
$r = preg_replace('/[\x{0}-\x{8}\x{b}-\x{c}\x{e}-\x{19}]/', '', $r);
$r = common_replace_urls_callback($r, 'common_linkify');
- $r = preg_replace('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.common_tag_link('\\2')", $r);
+ $r = preg_replace('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/ue', "'\\1#'.common_tag_link('\\2')", $r);
// XXX: machine tags
return $r;
}
@@ -938,11 +941,11 @@ function common_linkify($url) {
// functions
$url = htmlspecialchars_decode($url);
- if(strpos($url, '@') !== false && strpos($url, ':') === false) {
- //url is an email address without the mailto: protocol
- $canon = "mailto:$url";
- $longurl = "mailto:$url";
- }else{
+ if (strpos($url, '@') !== false && strpos($url, ':') === false && Validate::email($url)) {
+ //url is an email address without the mailto: protocol
+ $canon = "mailto:$url";
+ $longurl = "mailto:$url";
+ } else {
$canon = File_redirection::_canonUrl($url);
@@ -2201,3 +2204,40 @@ function common_nicknamize($str)
$str = preg_replace('/\W/', '', $str);
return strtolower($str);
}
+
+function common_perf_counter($key, $val=null)
+{
+ global $_perfCounters;
+ if (isset($_perfCounters)) {
+ if (common_config('site', 'logperf')) {
+ if (array_key_exists($key, $_perfCounters)) {
+ $_perfCounters[$key][] = $val;
+ } else {
+ $_perfCounters[$key] = array($val);
+ }
+ if (common_config('site', 'logperf_detail')) {
+ common_log(LOG_DEBUG, "PERF COUNTER HIT: $key $val");
+ }
+ }
+ }
+}
+
+function common_log_perf_counters()
+{
+ if (common_config('site', 'logperf')) {
+ global $_startTime, $_perfCounters;
+
+ if (isset($_startTime)) {
+ $endTime = microtime(true);
+ $diff = round(($endTime - $_startTime) * 1000);
+ common_log(LOG_DEBUG, "PERF runtime: ${diff}ms");
+ }
+ $counters = $_perfCounters;
+ ksort($counters);
+ foreach ($counters as $key => $values) {
+ $count = count($values);
+ $unique = count(array_unique($values));
+ common_log(LOG_DEBUG, "PERF COUNTER: $key $count ($unique unique)");
+ }
+ }
+}
diff --git a/lib/webcolor.php b/lib/webcolor.php
index 7f264c6741..bf791bf794 100644
--- a/lib/webcolor.php
+++ b/lib/webcolor.php
@@ -45,7 +45,6 @@ class WebColor {
*
* @return nothing
*/
-
function __construct($color = null)
{
if (isset($color)) {
@@ -77,7 +76,9 @@ class WebColor {
if (preg_match('/(#([0-9A-Fa-f]{3,6})\b)/u', $color) > 0) {
$this->setHexColor($color);
} else {
- $errmsg = _('%s is not a valid color!');
+ // TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+ // TRANS: %s is the provided (invalid) color code.
+ $errmsg = _('%s is not a valid color! Use 3 or 6 hex characters.');
throw new WebColorException(sprintf($errmsg, $color));
}
}
@@ -115,8 +116,8 @@ class WebColor {
$hexcolor[1].$hexcolor[1],
$hexcolor[2].$hexcolor[2]);
} else {
- // TRANS: Validation error for a web colour.
- // TRANS: %s is the provided (invalid) text for colour.
+ // TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+ // TRANS: %s is the provided (invalid) color code.
$errmsg = _('%s is not a valid color! Use 3 or 6 hex characters.');
throw new WebColorException(sprintf($errmsg, $hexcolor));
}
diff --git a/lib/xrd.php b/lib/xrd.php
index 9c6d9f3ab7..43cb2ec73c 100644
--- a/lib/xrd.php
+++ b/lib/xrd.php
@@ -26,7 +26,6 @@
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
-
class XRD
{
const XML_NS = 'http://www.w3.org/2000/xmlns/';
@@ -61,12 +60,12 @@ class XRD
if (!$ok) {
// TRANS: Exception.
- throw new Exception(_m('Invalid XML.'));
+ throw new Exception(_('Invalid XML.'));
}
$xrd_element = $dom->getElementsByTagName('XRD')->item(0);
if (!$xrd_element) {
// TRANS: Exception.
- throw new Exception(_m('Invalid XML, missing XRD root.'));
+ throw new Exception(_('Invalid XML, missing XRD root.'));
}
// Check for host-meta host
@@ -173,6 +172,13 @@ class XRD
switch($node->tagName) {
case 'Title':
$link['title'][] = $node->nodeValue;
+ break;
+ case 'Property':
+ $link['property'][] = array('type' => $node->getAttribute('type'),
+ 'value' => $node->nodeValue);
+ break;
+ default:
+ common_log(LOG_NOTICE, "Unexpected tag name {$node->tagName} found in XRD file.");
}
}
}
diff --git a/lib/xrdaction.php b/lib/xrdaction.php
index 855ed1ea89..a0e7a1c415 100644
--- a/lib/xrdaction.php
+++ b/lib/xrdaction.php
@@ -31,7 +31,7 @@ class XrdAction extends Action
const PROFILEPAGE = 'http://webfinger.net/rel/profile-page';
const UPDATESFROM = 'http://schemas.google.com/g/2010#updates-from';
const HCARD = 'http://microformats.org/profile/hcard';
-
+
public $uri;
public $user;
@@ -54,39 +54,39 @@ class XrdAction extends Action
}
if (Event::handle('StartXrdActionAliases', array(&$xrd, $this->user))) {
-
+
// Possible aliases for the user
-
+
$uris = array($this->user->uri, $profile->profileurl);
-
+
// FIXME: Webfinger generation code should live somewhere on its own
-
+
$path = common_config('site', 'path');
-
+
if (empty($path)) {
$uris[] = sprintf('acct:%s@%s', $nick, common_config('site', 'server'));
}
-
+
foreach ($uris as $uri) {
if ($uri != $xrd->subject) {
$xrd->alias[] = $uri;
}
}
-
+
Event::handle('EndXrdActionAliases', array(&$xrd, $this->user));
}
if (Event::handle('StartXrdActionLinks', array(&$xrd, $this->user))) {
-
+
$xrd->links[] = array('rel' => self::PROFILEPAGE,
'type' => 'text/html',
'href' => $profile->profileurl);
-
+
// hCard
$xrd->links[] = array('rel' => self::HCARD,
'type' => 'text/html',
'href' => common_local_url('hcard', array('nickname' => $nick)));
-
+
// XFN
$xrd->links[] = array('rel' => 'http://gmpg.org/xfn/11',
'type' => 'text/html',
@@ -96,17 +96,19 @@ class XrdAction extends Action
'type' => 'application/rdf+xml',
'href' => common_local_url('foaf',
array('nickname' => $nick)));
-
+
$xrd->links[] = array('rel' => 'http://apinamespace.org/atom',
'type' => 'application/atomsvc+xml',
- 'href' => common_local_url('ApiAtomService', array('id' => $nick)));
+ 'href' => common_local_url('ApiAtomService', array('id' => $nick)),
+ 'property' => array(array('type' => 'http://apinamespace.org/atom/username',
+ 'value' => $nick)));
if (common_config('site', 'fancy')) {
$apiRoot = common_path('api/', true);
} else {
$apiRoot = common_path('index.php/api/', true);
}
-
+
$xrd->links[] = array('rel' => 'http://apinamespace.org/twitter',
'href' => $apiRoot,
'property' => array(array('type' => 'http://apinamespace.org/twitter/username',
@@ -118,12 +120,12 @@ class XrdAction extends Action
header('Content-type: application/xrd+xml');
print $xrd->toXML();
}
-
+
/**
* Given a "user id" make sure it's normalized to either a webfinger
* acct: uri or a profile HTTP URL.
*/
-
+
public static function normalize($user_id)
{
if (substr($user_id, 0, 5) == 'http:' ||
diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po
index 2c4afe8d0b..4b004e3c3c 100644
--- a/locale/af/LC_MESSAGES/statusnet.po
+++ b/locale/af/LC_MESSAGES/statusnet.po
@@ -9,17 +9,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:21+0000\n"
+"POT-Creation-Date: 2011-01-14 23:32+0000\n"
+"PO-Revision-Date: 2011-01-14 23:34:31+0000\n"
"Language-Team: Afrikaans \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: af\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -271,7 +271,7 @@ msgstr "Opdaterings van %1$s en vriende op %2$s."
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -316,7 +316,8 @@ msgstr "Kon nie die gebruiker opdateer nie."
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/apiaccountupdateprofileimage.php:130
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
#: lib/profileaction.php:84
@@ -549,7 +550,7 @@ msgstr "Kon nie die gebruiker opdateer nie."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
+#: actions/newgroup.php:136 actions/profilesettings.php:277
#: actions/register.php:214
msgid "Nickname already in use. Try another one."
msgstr "Die gebruikersnaam is reeds in gebruik. Kies 'n ander een."
@@ -559,7 +560,7 @@ msgstr "Die gebruikersnaam is reeds in gebruik. Kies 'n ander een."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
+#: actions/newgroup.php:140 actions/profilesettings.php:247
#: actions/register.php:216
msgid "Not a valid nickname."
msgstr "Nie 'n geldige gebruikersnaam nie."
@@ -571,7 +572,7 @@ msgstr "Nie 'n geldige gebruikersnaam nie."
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
+#: actions/newgroup.php:147 actions/profilesettings.php:252
#: actions/register.php:223
msgid "Homepage is not a valid URL."
msgstr "Tuisblad is nie 'n geldige URL nie."
@@ -581,7 +582,7 @@ msgstr "Tuisblad is nie 'n geldige URL nie."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
+#: actions/newgroup.php:151 actions/profilesettings.php:256
#: actions/register.php:226
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
@@ -597,7 +598,7 @@ msgstr "Volledige naam is te lang (maksimum 255 karakters)."
#. TRANS: %d is the maximum number of allowed characters.
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/newgroup.php:156
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -609,7 +610,7 @@ msgstr[1] "Die beskrywing is te lank (die maksimum is %d karakters)."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
+#: actions/newgroup.php:163 actions/profilesettings.php:269
#: actions/register.php:235
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
@@ -622,7 +623,7 @@ msgstr "Ligging is te lank is (maksimum 255 karakters)."
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/newgroup.php:176
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -641,7 +642,7 @@ msgstr "Ongeldige alias: \"%s\""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#: actions/newgroup.php:191
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Die alias \"%s\" word al reeds gebruik. Probeer 'n ander een."
@@ -650,7 +651,7 @@ msgstr "Die alias \"%s\" word al reeds gebruik. Probeer 'n ander een."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/newgroup.php:198
msgid "Alias can't be the same as nickname."
msgstr "Die alias kan nie dieselfde as die gebruikersnaam wees nie."
@@ -957,9 +958,10 @@ msgstr "U kan nie u eie kennisgewings herhaal nie."
msgid "Already repeated that notice."
msgstr "U het reeds die kennisgewing herhaal."
+#. TRANS: Client error shown when using a non-supported HTTP method.
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
@@ -1047,7 +1049,7 @@ msgstr "%1$s / Gunstelinge van %2$s"
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Dit was nie moontlik om die groep by te werk nie."
@@ -1139,30 +1141,30 @@ msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#: actions/apitimelineuser.php:378
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "U kan nie u eie kennisgewings herhaal nie."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#: actions/apitimelineuser.php:406
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr ""
-#: actions/apitimelineuser.php:435
+#: actions/apitimelineuser.php:437
#, php-format
msgid "AtomPub post with unknown attention URI %s"
msgstr ""
@@ -1174,7 +1176,7 @@ msgid "API method under construction."
msgstr "Die API-funksie is nie gevind nie."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "Die API-funksie is nie gevind nie."
@@ -1267,9 +1269,8 @@ msgstr ""
"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie."
#: actions/atompubshowmembership.php:81
-#, fuzzy
msgid "No such group"
-msgstr "Die groep bestaan nie."
+msgstr "Hierdie groep bestaat nie"
#: actions/atompubshowmembership.php:90
#, fuzzy
@@ -1285,21 +1286,26 @@ msgstr "Die API-funksie is nie gevind nie."
msgid "Can't delete someone else's membership"
msgstr ""
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
msgid "No such profile id: %d"
msgstr "Die lêer bestaan nie."
-#: actions/atompubshowsubscription.php:90
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
+msgid "Profile %1$d not subscribed to profile %2$d"
msgstr "U volg hierdie gebruiker:"
-#: actions/atompubshowsubscription.php:154
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's subscription"
msgstr ""
"Dit was nie moontlik om die boodskap van u gunstelinge te verwyder nie."
@@ -1394,14 +1400,16 @@ msgid "Preview"
msgstr "Voorskou"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Skrap"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1444,6 +1452,37 @@ msgstr "Die opdatering van die avatar het gefaal."
msgid "Avatar deleted."
msgstr "Die avatar is verwyder."
+#: actions/backupaccount.php:62 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#: actions/backupaccount.php:80
+msgid "Only logged-in users can backup their account."
+msgstr ""
+
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#: actions/backupaccount.php:232
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and "
+"provides an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#: actions/backupaccount.php:255
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Agtergrond"
+
+#: actions/backupaccount.php:258
+msgid "Backup your account"
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1652,6 +1691,76 @@ msgstr "Gesprek"
msgid "Notices"
msgstr "Kennisgewings"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "U kan nie gebruikers verwyder nie."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Die avatar is verwyder."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:474
+#, fuzzy
+msgid "Delete account"
+msgstr "Skep 'n gebruiker"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:239 actions/register.php:441
+msgid "Confirm"
+msgstr "Bevestig"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "U kan nie gebruikers verwyder nie."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "U kan nie gebruikers verwyder nie."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1797,7 +1906,7 @@ msgid "Do not delete this notice"
msgstr "Moenie hierdie kennisgewing verwyder nie"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
+#: actions/deletenotice.php:166 lib/noticelist.php:673
msgid "Delete this notice"
msgstr "Verwyder hierdie kennisgewing"
@@ -2106,7 +2215,7 @@ msgstr "Gebruik hierdie vorm om die groep te wysig."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#: actions/editgroup.php:239 actions/newgroup.php:186
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Ongeldige alias: \"%s\""
@@ -2118,7 +2227,7 @@ msgstr "Dit was nie moontlik om die groep by te werk nie."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:279 classes/User_group.php:534
msgid "Could not create aliases."
msgstr "Dit was nie moontlik om die aliasse te skep nie."
@@ -3303,8 +3412,14 @@ msgstr "Dit was nie moontlik om die applikasie te skep nie."
msgid "New group"
msgstr "Nuwe groep"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "U is nie 'n lid van die groep nie."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
#, fuzzy
msgid "Use this form to create a new group."
msgstr "Gebruik hierdie vorm om die groep te wysig."
@@ -3629,11 +3744,6 @@ msgstr "Nuwe wagwoord"
msgid "6 or more characters"
msgstr "6 of meer karakters"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Bevestig"
-
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
msgid "Same as password above"
msgstr "Dieselfde as wagwoord hierbo"
@@ -4163,6 +4273,12 @@ msgstr "Kon nie gebruiker opdateer nie."
msgid "Settings saved."
msgstr "Voorkeure is gestoor."
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:481 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Skep 'n gebruiker"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4608,7 +4724,7 @@ msgstr "U kan nie u eie kennisgewings herhaal nie."
msgid "You already repeated that notice."
msgstr "U het reeds die kennisgewing herhaal."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:114 lib/noticelist.php:692
msgid "Repeated"
msgstr "Herhalend"
@@ -4670,6 +4786,92 @@ msgstr ""
msgid "Replies to %1$s on %2$s!"
msgstr "Opdaterings van %1$s op %2$s."
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Dit was nie moontlik om die applikasie te skep nie."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Oplaai"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Alle lede"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Oplaai"
+
#: actions/revokerole.php:75
#, fuzzy
msgid "You cannot revoke user roles on this site."
@@ -4778,7 +4980,7 @@ msgid "Reset key & secret"
msgstr ""
#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#: lib/deleteuserform.php:66 lib/noticelist.php:673
msgid "Delete"
msgstr "Skrap"
@@ -6022,14 +6224,14 @@ msgid "Author(s)"
msgstr "Outeur(s)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164 lib/favorform.php:143
#, fuzzy
msgid "Favor"
msgstr "Gunstelinge"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!"
@@ -6140,7 +6342,7 @@ msgid "Could not create login token for %s"
msgstr "Dit was nie moontlik om die aliasse te skep nie."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:537
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6170,72 +6372,72 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr ""
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr ""
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
#, fuzzy
msgid "You are banned from posting notices on this site."
msgstr "Jy kan nie gebruikers op hierdie webwerf stilmaak nie."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr ""
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:914
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1013
msgid "Problem saving group inbox."
msgstr ""
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1127
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Kon nie die profiel stoor nie."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1646
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6243,14 +6445,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:765
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:774
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6329,34 +6531,34 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Welkom by %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:516
msgid "Could not create group."
msgstr "Kon nie die groep skep nie."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:526
#, fuzzy
msgid "Could not set group URI."
msgstr "Kon nie die groep skep nie."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:549
#, fuzzy
msgid "Could not set group membership."
msgstr "Kon nie die groep skep nie."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:564
#, fuzzy
msgid "Could not save local group info."
msgstr "Kon nie die profiel stoor nie."
@@ -6695,10 +6897,56 @@ msgstr "Voor"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Onbekende taal \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Foto"
+msgid "Cannot force remote user to subscribe."
+msgstr "Kon nie gebruikersdata opdateer nie."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Onbekende lêertipe"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "U is reeds 'n lid van die groep."
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "U kan nie u eie kennisgewings herhaal nie."
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6999,10 +7247,16 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Verwyder"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Moenie hierdie kennisgewing verwyder nie"
+
#. TRANS: DT element label in attachment list item.
#: lib/attachmentlist.php:294
msgid "Author"
@@ -7407,25 +7661,25 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:150
#, fuzzy
msgid "No configuration file found."
msgstr "Geen bevestigingskode."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:153
msgid "I looked for configuration files in the following places:"
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:156
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:160
msgid "Go to the installer."
msgstr "Gaan na die installeerder."
@@ -7535,6 +7789,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "Vriende van vriende (FOAF)"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Alle lede"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7720,11 +7987,6 @@ msgstr "Die kennisgewing is te lank. Gebruik maksimum %d karakters."
msgid "Partial upload."
msgstr "Geen lêer opgelaai nie."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr ""
-
#: lib/imagefile.php:111
msgid "Not an image or corrupt file."
msgstr ""
@@ -8044,7 +8306,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only."
msgstr ""
-#: lib/mailbox.php:228 lib/noticelist.php:521
+#: lib/mailbox.php:228 lib/noticelist.php:522
msgid "from"
msgstr "van"
@@ -8074,38 +8336,6 @@ msgstr "Nie-ondersteunde formaat."
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8128,7 +8358,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8137,7 +8367,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8172,19 +8402,19 @@ msgid "Send"
msgstr "Stuur"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Die gebruikersnaam mag slegs uit kleinletters en syfers bestaan en mag geen "
"spasies bevat nie."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8225,56 +8455,56 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "O"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "W"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "op"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "in konteks"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Herhaal deur"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
#, fuzzy
msgid "Reply to this notice"
msgstr "Verwyder hierdie kennisgewing"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Antwoord"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:691
#, fuzzy
msgid "Notice repeated"
msgstr "Hierdie kennisgewing is verwyder."
@@ -8439,7 +8669,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Blok hierdie gebruiker van hierdie groep"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Die API-funksie is nie gevind nie."
@@ -8803,21 +9033,7 @@ msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Geen groep verskaf nie."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po
index 2eb7e3f32d..eb9802fc22 100644
--- a/locale/ar/LC_MESSAGES/statusnet.po
+++ b/locale/ar/LC_MESSAGES/statusnet.po
@@ -1,7 +1,8 @@
# Translation of StatusNet - Core to Arabic (العربية)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
+# Author: Majid Al-Dharrab
# Author: Meno25
# Author: OsamaK
# --
@@ -11,19 +12,19 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:23+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:00+0000\n"
"Language-Team: Arabic \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ar\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == "
"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= "
"99) ? 4 : 5 ) ) ) );\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -78,8 +79,9 @@ msgid "Save access settings"
msgstr "حفظ إعدادت الوصول"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -89,13 +91,13 @@ msgstr "حفظ إعدادت الوصول"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "احفظ"
@@ -103,7 +105,7 @@ msgstr "احفظ"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "لا صفحة كهذه."
@@ -113,6 +115,8 @@ msgstr "لا صفحة كهذه."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -128,13 +132,23 @@ msgstr "لا صفحة كهذه."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -142,15 +156,15 @@ msgstr "لا صفحة كهذه."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "لا مستخدم كهذا."
@@ -164,9 +178,10 @@ msgstr "%1$s والأصدقاء, الصفحة %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s والأصدقاء"
@@ -275,7 +290,7 @@ msgstr "الإشعارات التي فضلها %1$s في %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -307,7 +322,21 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "تعذّر تحديث المستخدم."
@@ -317,18 +346,23 @@ msgstr "تعذّر تحديث المستخدم."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "ليس للمستخدم ملف شخصي."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "لم يمكن حفظ الملف."
@@ -338,8 +372,8 @@ msgstr "لم يمكن حفظ الملف."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -359,63 +393,74 @@ msgstr[5] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
-#, fuzzy
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
-msgstr "تعذّر حذف إعدادات التصميم."
+msgstr "تعذّر حفظ إعدادات تصميمك."
#. TRANS: Error displayed when updating design settings fails.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "تعذّر تحديث تصميمك."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "مسار %s الزمني"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "اشتراكات %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "المفضلات"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "أعضاء مجموعة %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "لا يمكنك منع نفسك!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "فشل منع المستخدم."
@@ -475,7 +520,7 @@ msgstr "لم يُعثر على المستخدم المستلم."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
#. TRANS: Client error displayed trying to direct message self (403).
@@ -498,8 +543,9 @@ msgid "This status is already a favorite."
msgstr "هذه الحالة مفضلة بالفعل."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "تعذّر إنشاء مفضلة."
@@ -509,28 +555,27 @@ msgid "That status is not a favorite."
msgstr "تلك الحالة ليست مفضلة."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "تعذّر حذف المفضلة."
#. TRANS: Client error displayed when trying follow who's profile could not be found.
#: actions/apifriendshipscreate.php:109
-#, fuzzy
msgid "Could not follow user: profile not found."
-msgstr "لم يمكن حفظ الملف."
+msgstr "تعذر متابعة المستخدم: الحساب غير موجود."
#. TRANS: Client error displayed when trying to follow a user that's already being followed.
#. TRANS: %s is the nickname of the user that is already being followed.
#: actions/apifriendshipscreate.php:120
-#, fuzzy, php-format
+#, php-format
msgid "Could not follow user: %s is already on your list."
-msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s."
+msgstr "تعذر متابعة المستخدم: %s موجود في قائمتك مسبقًا."
#. TRANS: Client error displayed when trying to unfollow a user that cannot be found.
#: actions/apifriendshipsdestroy.php:109
-#, fuzzy
msgid "Could not unfollow user: User not found."
-msgstr "لا يمكنك عدم متابعة نفسك."
+msgstr "تعذر إلغاء الاشتراك: المستخدم غير موجود."
#. TRANS: Client error displayed when trying to unfollow self.
#: actions/apifriendshipsdestroy.php:121
@@ -556,9 +601,9 @@ msgstr "تعذّر إيجاد المستخدم الهدف."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا."
@@ -566,21 +611,22 @@ msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمً
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "ليس اسمًا مستعارًا صحيحًا."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "الصفحة الرئيسية ليست عنونًا صالحًا."
@@ -588,24 +634,24 @@ msgstr "الصفحة الرئيسية ليست عنونًا صالحًا."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
-#, fuzzy
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
-msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
+msgstr "الاسم الكامل طويل جدًا (الحد الأقصى 255 حرفًا)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -620,9 +666,9 @@ msgstr[5] "المنظمة طويلة جدا (الأقصى %d حرفا)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)."
@@ -633,8 +679,8 @@ msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -655,18 +701,16 @@ msgstr "كنية غير صالحة: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, fuzzy, php-format
msgid "Alias \"%s\" already in use. Try another one."
-msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا."
+msgstr "هذا الاسم مستخدم بالفعل. جرّب اسمًا آخر."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -677,30 +721,34 @@ msgstr ""
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "المجموعة غير موجودة."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
#, fuzzy
msgid "You are already a member of that group."
msgstr "أنت بالفعل عضو في هذه المجموعة"
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
#, fuzzy
msgid "You have been blocked from that group by the admin."
msgstr "لم تمنع هذا المستخدم."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s."
@@ -712,9 +760,11 @@ msgstr "لست عضوًا في هذه المجموعة"
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -752,7 +802,7 @@ msgid "Upload failed."
msgstr "ارفع ملفًا"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "توكن دخول غير صحيح محدد."
@@ -775,20 +825,25 @@ msgid "Request token already authorized."
msgstr "لا تملك تصريحًا."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -806,18 +861,22 @@ msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr ""
@@ -854,7 +913,6 @@ msgstr ""
#. TRANS: Fieldset legend.
#: actions/apioauthauthorize.php:455
-#, fuzzy
msgctxt "LEGEND"
msgid "Account"
msgstr "الحساب"
@@ -862,29 +920,31 @@ msgstr "الحساب"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "الاسم المستعار"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "كلمة السر"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -892,7 +952,6 @@ msgstr "ألغِ"
#. TRANS: Button text that when clicked will allow access to an account by an external application.
#: actions/apioauthauthorize.php:485
-#, fuzzy
msgctxt "BUTTON"
msgid "Allow"
msgstr "اسمح"
@@ -959,6 +1018,7 @@ msgstr "لا يمكنك حذف المستخدمين."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -978,39 +1038,52 @@ msgstr "لا يمكنك تكرار ملحوظتك الخاصة."
msgid "Already repeated that notice."
msgstr "كرر بالفعل هذه الملاحظة."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "لم يتم العثور على وسيلة API."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "نسق غير مدعوم."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "حُذِفت الحالة."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "لا حالة وُجدت بهذه الهوية."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "تعذّر حذف هذا الإشعار."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "احذف الإشعار"
@@ -1076,7 +1149,7 @@ msgstr "الإشعارات التي فضلها %1$s في %2$s!"
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "تعذر تحديث المجموعة."
@@ -1097,13 +1170,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "مسار %s الزمني العام"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr ""
@@ -1152,51 +1226,49 @@ msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "ابحث عن محتويات في الإشعارات"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "لا ملف بهذه الهوية."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
#, fuzzy
@@ -1204,151 +1276,220 @@ msgid "API method under construction."
msgstr "لم يتم العثور على وسيلة API."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "لم يُعثرعلى المستخدم."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "لا ملف كهذا."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "الإشعارات التي فضلها %1$s في %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "تعذّر إدراج اشتراك جديد."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "ابحث عن محتويات في الإشعارات"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "ابحث عن محتويات في الإشعارات"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "غير معروفة"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "أضف إلى المفضلات"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "لا ملف كهذا."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "أعضاء مجموعة %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "المجموعات التي %s عضو فيها"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "تعذّر إدراج اشتراك جديد."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "ابحث عن محتويات في الإشعارات"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "غير معروفة"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "جميع الأعضاء"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "أنت ممنوع من قِبل المدير."
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "لا ملف كهذا."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "تعذّر حذف المفضلة."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "لا مجموعة كهذه."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "جميع الأعضاء"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "لم يتم العثور على وسيلة API."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "لا ملف كهذا."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "لست مُشتركًا بأي أحد."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "تعذّر حفظ الاشتراك."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "لا ملف كهذا."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "لست مُشتركًا بأي أحد."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "تعذّر حفظ الاشتراك."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "الأشخاص المشتركون ب%s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "نوع ملف غير معروف"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "مُشترك أصلا!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1357,11 +1498,15 @@ msgstr "لا مرفق كهذا."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "لا اسم مستعار."
@@ -1378,7 +1523,7 @@ msgstr "حجم غير صالح."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "أفتار"
@@ -1391,42 +1536,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "بإمكانك رفع أفتارك الشخصي. أقصى حجم للملف هو %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "المستخدم بدون ملف مطابق."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "إعدادات الأفتار"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "الأصل"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "معاينة"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "احذف"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1444,39 +1599,81 @@ msgstr "مجموعات"
msgid "No file uploaded."
msgstr "لم يُرفع ملف."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
-msgstr ""
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
+msgstr "اختر منطقة مربعة من الصورة لتكون صورة أفتارك."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr ""
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "رُفع الأفتار."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "فشل تحديث الأفتار."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "حُذف الأفتار."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار الإشعارات."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "الخلفية"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
-msgstr "لقد منعت مسبقا هذا المستخدم."
+msgstr "لقد منعتَ هذا المستخدم مسبقًا."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "امنع المستخدم"
@@ -1487,6 +1684,8 @@ msgid ""
"unsubscribed from you, unable to subscribe to you in the future, and you "
"will not be notified of any @-replies from them."
msgstr ""
+"هل أنت متأكد من أنك تريد منع هذا المستخدم؟ إن قمتَ بذلك فسيُلغى اشتراكه معك، "
+"ولن يتمكن من الاشتراك لديك مستقبلًا، ولن تُبلغ بأي ردود منه."
#. TRANS: Button label on the user block form.
#. TRANS: Button label on the delete application form.
@@ -1496,15 +1695,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "لا"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "لا تمنع هذا المستخدم"
#. TRANS: Button label on the user block form.
@@ -1515,15 +1714,15 @@ msgstr "لا تمنع هذا المستخدم"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "نعم"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "امنع هذا المستخدم"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1531,31 +1730,6 @@ msgstr "امنع هذا المستخدم"
msgid "Failed to save block information."
msgstr "فشل حفظ معلومات المنع."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "لا مجموعة كهذه."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1627,23 +1801,6 @@ msgstr ""
msgid "That address has already been confirmed."
msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "تعذّر تحديث المستخدم."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1669,11 +1826,85 @@ msgid "Conversation"
msgstr "محادثة"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "الإشعارات"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار الإشعارات."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "لا يمكنك حذف المستخدمين."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "أنا متأكد."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "يجب أن تكتب \"%s\" كما هي في الصندوق."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "حُذف الأفتار."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "أنشئ حسابًا"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "أكّد"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "لا يمكنك حذف المستخدمين."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "لا يمكنك حذف المستخدمين."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1687,14 +1918,14 @@ msgstr "لم يوجد التطبيق."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "أنت لست مالك هذا التطبيق."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr ""
@@ -1714,12 +1945,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "لا تحذف هذا التطبيق"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "احذف هذا التطبيق"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1729,8 +1962,10 @@ msgid "You must be logged in to delete a group."
msgstr "يجب أن تلج لتغادر مجموعة."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
#, fuzzy
msgid "No nickname or ID."
msgstr "لا اسم مستعار."
@@ -1773,25 +2008,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "لا تحذف هذا الإشعار"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "احذف هذا المستخدم"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "لست والجًا."
@@ -1816,106 +2057,143 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "لا تحذف هذا الإشعار"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "احذف هذا الإشعار"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "لا يمكنك حذف المستخدمين."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "يمكنك حذف المستخدمين المحليين فقط."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "احذف المستخدم"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "احذف المستخدم"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "لا تحذف هذا الإشعار"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "احذف هذا المستخدم"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "التصميم"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "مسار شعار غير صالح."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "مسار شعار غير صالح."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "السمة غير متوفرة: %s"
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "غيّر الشعار"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "شعار الموقع"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "شعار الموقع"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "غيّر السمة"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "سمة الموقع"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "سمة الموقع."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "سمة مخصصة"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "تغيير صورة الخلفية"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "الخلفية"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1923,99 +2201,109 @@ msgid ""
msgstr "بإمكانك رفع صورة خلفية للموقع. أقصى حجم للملف هو %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "مكّن"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "عطّل"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "مكّن صورة الخلفية أو عطّلها."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
#, fuzzy
msgid "Tile background image"
msgstr "تغيير صورة الخلفية"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "تغيير الألوان"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "المحتوى"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "الشريط الجانبي"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "النص"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "وصلات"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "متقدم"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS مخصصة"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "استخدم المبدئيات"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "استعد التصميمات المبدئية"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "ارجع إلى المبدئي"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "أرسل"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "احفظ التصميم"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "هذا الشعار ليس مفضلًا!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "أضف إلى المفضلات"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "لا مستند باسم \"%s\""
#. TRANS: Title for "Edit application" form.
@@ -2030,7 +2318,7 @@ msgid "You must be logged in to edit an application."
msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "لا تطبيق كهذا."
@@ -2040,66 +2328,76 @@ msgid "Use this form to edit your application."
msgstr "استخدم هذا النموذج لتعدل تطبيقك."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "الاسم مطلوب."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "الاسم طويل جدا (الأقصى 255 حرفا)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
#, fuzzy
msgid "Name already in use. Try another one."
msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "الوصف مطلوب."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "المسار المصدر طويل جدًا."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "مسار المصدر ليس صحيحا."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "المنظمة مطلوبة."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "المنظمة طويلة جدا (الأقصى 255 حرفا)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "صفحة المنظمة الرئيسية مطلوبة."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
#, fuzzy
msgid "Callback is too long."
msgstr "المسار المصدر طويل جدًا."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
#, fuzzy
msgid "Callback URL is not valid."
msgstr "مسار المصدر ليس صحيحا."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "لم يمكن تحديث التطبيق."
@@ -2110,14 +2408,17 @@ msgid "Edit %s group"
msgstr "عدّل مجموعة %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "يجب أن تكون والجًا لتنشئ مجموعة."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "يجب أن تكون إداريا لتعدل المجموعة."
@@ -2128,63 +2429,65 @@ msgstr "استخدم هذا النموذج لتعديل المجموعة."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "كنية غير صالحة: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "تعذر تحديث المجموعة."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "تعذّر إنشاء الكنى."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "حُفظت الخيارات."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "إعدادات البريد الإلكتروني"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "أدر كيف تستلم البريد الإلكتروني من %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "عنوان البريد الإلكتروني"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "عنوان البريد الإلكتروني المُؤكد الحالي."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "أزل"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2195,44 +2498,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "عنوان البريد الإلكتروني، مثل \"UserName@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "أضف"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "البريد الإلكتروني الوارد"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "أريد أن أرسل الملاحظات عبر البريد الإلكتروني."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "أرسل بريدًا إلكترونيًا إلى هذا العنوان لترسل إشعارات جديدة."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "أنشئ عنوان بريد إلكتروني لترسل إليه؛ ألغِ القديم."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2240,330 +2543,393 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "جديد"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "تفضيلات البريد الإلكتروني"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "أرسل لي إشعارات بالاشتراكات الجديدة عبر البريد الإلكتروني."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "أرسل لي بريدًا إلكرتونيًا عندما يضيف أحدهم إشعاري مفضلة."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "أرسل لي بريدًا إلكترونيًا عندما يرسل لي أحد رسالة خاصة."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "أرسل لي بريدًا إلكترونيًا عندما يرسل لي أحد \"@-رد\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "اسمح لأصدقائي بتنبيهي ومراسلتي عبر البريد الإلكتروني."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "انشر هوية مصغّرة لعنوان بريدي الإلكتروني."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "حُفظت تفضيلات البريد الإلكرتوني."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "لا عنوان بريد إلكتروني."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
+#: actions/emailsettings.php:388
#, fuzzy
-msgid "Cannot normalize that email address"
+msgid "Cannot normalize that email address."
msgstr "عنوان البريد الإلكتروني المُؤكد الحالي."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "ليس عنوان بريد صالح."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "هذا هو عنوان بريدك الإكتروني سابقًا."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "تعذّر إدراج رمز التأكيد."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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 ""
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
#, fuzzy
msgid "No pending confirmation to cancel."
msgstr "أُلغي تأكيد المراسلة الفورية."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "هذا عنوان بريد إلكتروني خطأ."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "تعذّر حذف تأكيد البريد الإلكتروني."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "أُلغي تأكيد البريد الإلكتروني."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "هذا ليس عنوان بريدك الإلكتروني."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "أزيل عنوان البريد الإلكتروني."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "لا عنوان بريد إلكتروني وارد."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "تعذّر تحديث سجل المستخدم."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
#, fuzzy
msgid "Incoming email address removed."
msgstr "لا عنوان بريد إلكتروني وارد."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
#, fuzzy
msgid "New incoming email address added."
msgstr "لا عنوان بريد إلكتروني وارد."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "هذا الإشعار مفضلة مسبقًا!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "ألغِ تفضيل المفضلة"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "إشعارات محبوبة"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "إشعارات محبوبة، الصفحة %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "أشهر الإشعارات على الموقع حاليًا."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "إشعارات %s المُفضلة"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "الإشعارات التي فضلها %1$s في %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "مستخدمون مختارون"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "مستخدمون مختارون، صفحة %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "اختيار لبعض المستخدمين المتميزين على %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "لا رقم ملاحظة."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "لا ملاحظة."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "لا مرفقات."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "لا مرفقات مرفوعة."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "لم أتوقع هذا الرد!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "المستخدم الذي تستمع إليه غير موجود."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "تستطيع استخدام الاشتراك المحلي!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
#, fuzzy
msgid "That user has blocked you from subscribing."
msgstr "لقد منعك المستخدم."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "لا تملك تصريحًا."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "خطأ أثناء تحديث الملف الشخصي البعيد."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "لا ملف كهذا."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "تعذّرت قراءة الملف."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
#, fuzzy
msgid "Invalid role."
msgstr "حجم غير صالح."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "لا يمكنك سحب أدوار المستخدمين على هذا الموقع."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "لدى المستخدم هذا الدور من قبل."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "لا ملف شخصي مُحدّد."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "لا ملف شخصي بهذه الهوية."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "لا مجموعة مُحدّدة."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr ""
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
#, fuzzy
msgid "User is already blocked from group."
msgstr "المستخدم ليس ممنوعًا من المجموعة."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "المستخدم ليس عضوًا في المجموعة."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "امنع المستخدم من المجموعة"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2572,165 +2938,195 @@ msgid ""
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "لا تمنع هذا المستخدم من هذه المجموعة"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "امنع هذا المستخدم من هذه المجموعة"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "خطأ في قاعدة البيانات أثناء منع المستخدم من المجموعة."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "لا هوية."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "يجب أن تلج لتُعدّل المجموعات."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "تصميم المجموعة"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
#, fuzzy
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr "خصّص أسلوب عرض ملفك بصورة خلفية ومخطط ألوان من اختيارك."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "تعذّر تحديث تصميمك."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "تعذّر حفظ إعدادات تصميمك."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "حُفظت تفضيلات التصميم."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "شعار المجموعة"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "بإمكانك رفع صورة شعار مجموعتك. أقصى حجم للملف هو %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "ارفع"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
#, fuzzy
msgid "Crop"
msgstr "مجموعات"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
-msgstr ""
+msgstr "اختر منطقة مربعة من الصورة لتكون الشعار."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "حُدّث الشعار."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "فشل رفع الشعار."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "أعضاء مجموعة %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s أعضاء المجموعة, الصفحة %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "قائمة بمستخدمي هذه المجموعة."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "إداري"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
-msgstr ""
+msgstr "امنع"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
-msgstr ""
+msgstr "امنع هذا المستخدم"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "اجعل المستخدم إداريًا في المجموعة"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
-msgstr ""
+msgstr "اجعله إداريًا"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
-msgstr ""
+msgstr "اجعل هذا المستخدم إداريًا"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, fuzzy, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "الإشعارات التي فضلها %1$s في %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "مجموعات"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "المجموعات، صفحة %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"تتيح لك مجموعات %%%%site.name%%%% إيجاد أشخاص ذوي اهتمامات مشتركة والتحدث "
"معهم. تستطيع إرسال رسائل إلى جميع أعضاء المجموعة الآخرين بعد الانضمام إليها "
"عبر الصياغة \"!اسم_المجموعة\". ألا ترى مجموعة تعجبك؟ جرّب [البحث عن مجموعة](%%"
"%%action.groupsearch%%%%) أو [ابدأ مجموعتك!](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "أنشئ مجموعة جديدة"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2739,23 +3135,31 @@ msgstr ""
"ابحث عن مجموعات على %%site.name%% بدلالة الاسم أو الموقع أو الوصف. افصل "
"عبارات البحث بمسافات؛ ويجب أن تتكون تلك العبارات من 3 أحرف أو أكثر."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "بحث في المجموعات"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "لا نتائج."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2763,207 +3167,218 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr ""
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "المستخدم ليس ممنوعًا من المجموعة."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "خطأ أثناء منع الحجب."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "إعدادات المراسلة الفورية"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "المراسلة الفورية غير متوفرة."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "عنوان المراسلة الفورية"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "عنوان جابر أو محادثة غوغل المعتمد حاليًا."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "تفضيلات المحادثة الفورية"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
#, fuzzy
-msgid "Send me notices through Jabber/GTalk."
+msgid "Send me notices through Jabber/Google Talk."
msgstr "أرسل لي إشعارات بالاشتراكات الجديدة عبر البريد الإلكتروني."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
#, fuzzy
-msgid "Publish a MicroID for my Jabber/GTalk address."
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "انشر هوية مصغّرة لعنوان بريدي الإلكتروني."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "حُفِظت التفضيلات."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "لا هوية جابر."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
#, fuzzy
-msgid "Cannot normalize that Jabber ID"
+msgid "Cannot normalize that Jabber ID."
msgstr "ليست هوية جابر صالحة"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "ليست هوية جابر صالحة"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
#, fuzzy
msgid "That is already your Jabber ID."
msgstr "هذه ليست هويتك في جابر."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
#, fuzzy
msgid "Jabber ID already belongs to another user."
msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
"s for sending messages to you."
msgstr ""
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "هذا عنوان محادثة فورية خاطئ."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "تعذّر حذف تأكيد البريد المراسلة الفورية."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "أُلغي تأكيد المراسلة الفورية."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "هذه ليست هويتك في جابر."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "أزيل عنوان المراسلة الفورية هذا."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "صندوق %1$s الوارد - صفحة %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "صندوق %s الوارد"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "هذا صندوق بريدك الوارد، والذي يسرد رسائلك الخاصة الواردة."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "تم تعطيل الدعوات."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, fuzzy, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "يجب أن تلج لتُعدّل المجموعات."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "عنوان بريد إلكتروني غير صالح: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "أُرسلت الدعوة"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "دعوة مستخدمين جدد"
@@ -2971,7 +3386,7 @@ msgstr "دعوة مستخدمين جدد"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2984,7 +3399,7 @@ msgstr[5] "لست مشتركًا بأحد."
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2993,7 +3408,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3007,7 +3422,7 @@ msgstr[5] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] ""
@@ -3019,40 +3434,40 @@ msgstr[5] ""
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
msgstr ""
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr "استخدم هذا النموذج لدعوة أصدقائك وزملائك لاستخدام هذه الخدمة."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "عناوين البريد الإلكتروني"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
msgstr ""
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "رسالة شخصية"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr ""
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "أرسل"
@@ -3060,7 +3475,7 @@ msgstr "أرسل"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, fuzzy, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s."
@@ -3070,7 +3485,7 @@ msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s."
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3101,179 +3516,195 @@ msgid ""
"Sincerely, %2$s\n"
msgstr ""
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "يجب أن تلج لتنضم إلى مجموعة."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s انضم للمجموعة %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "يجب أن تلج لتغادر مجموعة."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "لست عضوا في تلك المجموعة."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s ترك المجموعة %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "خاص"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
-msgstr ""
+msgstr "جميع الحقوق محفوظة"
+
+#: actions/licenseadminpanel.php:240
+msgid "Creative Commons"
+msgstr "المشاع المبدع"
+
+#: actions/licenseadminpanel.php:245
+msgid "Type"
+msgstr "النوع"
#: actions/licenseadminpanel.php:247
-msgid "Creative Commons"
-msgstr ""
-
-#: actions/licenseadminpanel.php:252
-msgid "Type"
-msgstr ""
-
-#: actions/licenseadminpanel.php:254
msgid "Select license"
-msgstr ""
+msgstr "اختر رخصة"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "أرسل"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "والج بالفعل."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "اسم المستخدم أو كلمة السر غير صحيحان."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "لُج"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "لُج إلى الموقع"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "تذكّرني"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "لُج تلقائيًا في المستقبل؛ هذا الخيار ليس مُعدًا للحواسيب المشتركة!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "أنسيت كلمة السر؟"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
msgstr ""
"لأسباب أمنية، من فضلك أعد إدخال اسم مستخدمك وكلمة سرك قبل تغيير إعداداتك."
-#: actions/login.php:292
+#: actions/login.php:281
#, fuzzy
msgid "Login with your username and password."
msgstr "لُج باسم مستخدم وكلمة سر"
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3308,20 +3739,23 @@ msgid "New application"
msgstr "تطبيق جديد"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "يجب أن تكون مسجل الدخول لتسجل تطبيقا."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "استخدم هذا النموذج لتسجل تطبيقا جديدا."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
#, fuzzy
msgid "Source URL is required."
msgstr "مسار المصدر ليس صحيحا."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "لم يمكن إنشاء التطبيق."
@@ -3330,11 +3764,22 @@ msgstr "لم يمكن إنشاء التطبيق."
msgid "New group"
msgstr "مجموعة جديدة"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "لست عضوًا في هذه المجموعة"
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "استخدم هذا النموذج لإنشاء مجموعة جديدة."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "رسالة جديدة"
@@ -3359,7 +3804,7 @@ msgstr "لا مستلم حُدّد."
#: actions/newmessage.php:167 lib/command.php:505
msgid ""
"Don't send a message to yourself; just say it to yourself quietly instead."
-msgstr ""
+msgstr "لا ترسل رسالة إلى نفسك، قلها لنفسك في سرك بدلًا من ذلك."
#: actions/newmessage.php:184
msgid "Message sent"
@@ -3384,7 +3829,9 @@ msgstr "إشعار جديد"
msgid "Notice posted"
msgstr "أُرسل الإشعار"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3393,37 +3840,47 @@ msgstr ""
"ابحث عن إشعارات على %%site.name%% عبر محتوياتها. افصل عبارات البحث بمسافات؛ "
"ويجب أن تتكون هذه العبارات من 3 أحرف أو أكثر."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "بحث في النصوص"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "نتائج البحث ل\"%1$s\" على %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, 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:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr ""
-#: actions/noticesearchrss.php:98
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
#, fuzzy, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "الإشعارات التي فضلها %1$s في %2$s!"
#: actions/nudge.php:85
@@ -3462,31 +3919,31 @@ msgid "You have not registered any applications yet."
msgstr "يجب أن تكون مسجل الدخول لتسجل تطبيقا."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
#, fuzzy
msgid "Connected applications"
msgstr "احذف هذا التطبيق"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "لست مستخدما لهذا التطبيق."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "استخدم هذا النموذج لتعدل تطبيقك."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3494,20 +3951,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "لم يُعثرعلى المستخدم."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "لم يتم العثور على وسيلة API."
+
#: actions/oembed.php:80 actions/shownotice.php:100
#, fuzzy
msgid "Notice has no profile."
@@ -3518,6 +3985,16 @@ msgstr "ليس للمستخدم ملف شخصي."
msgid "%1$s's status on %2$s"
msgstr "حالة %1$s في يوم %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "لم يُعثر على المستخدم المستلم."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3531,16 +4008,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "ليس نسق بيانات مدعوم."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "بحث في الأشخاص"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "بحث الإشعارات"
@@ -3554,69 +4032,80 @@ msgid "Manage various other options."
msgstr "أدر خيارات أخرى عديدة."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (خدمة حرة)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "قصّر المسارات بـ"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "خدمة التقصير المطلوب استخدامها."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "اعرض تصاميم الملف الشخصي"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "أظهر أو أخفِ تصاميم الملفات الشخصية."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "لا هوية مستخدم محددة."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "لا محتوى دخول محدد."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "لا طلب استيثاق."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "توكن دخول غير صحيح محدد."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "توكن الدخول انتهى."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "صندوق %1$s الصادر - صفحة %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "صندوق %s الصادر"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "هذا صندوق بريدك الصادر، والذي يسرد الرسائل الخاصة التي أرسلتها."
@@ -3628,7 +4117,8 @@ msgstr "تغيير كلمة السر"
msgid "Change your password."
msgstr "غيّر كلمة سرك."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "تغيير كلمة السر"
@@ -3636,48 +4126,50 @@ msgstr "تغيير كلمة السر"
msgid "Old password"
msgstr "كلمة السر القديمة"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "كلمة السر الجديدة"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 أحرف أو أكثر"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "أكّد"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "نفس كلمة السر أعلاه"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "غيّر"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "يجب أن تكون كلمة السر 6 حروف أو أكثر."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "كلمتا السر غير متطابقتين."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "كلمة السر القديمة غير صحيحة"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "تعذّر حفظ كلمة السر الجديدة."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "حُفظت كلمة السر."
@@ -3896,7 +4388,7 @@ msgstr "مسار دليل المحليات"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "مرفقات"
@@ -3968,7 +4460,9 @@ msgstr ""
msgid "Save paths"
msgstr "احفظ المسارات"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3977,7 +4471,8 @@ msgstr ""
"ابحث عن أشخاص على %%site.name%% بدلالة الاسم أو الموقع أو الاهتمامات. افصل "
"عبارات البحث بمسافات؛ ويجب أن تتكون تلك العبارات من 3 أحرف أو أكثر."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "بحث في الأشخاص"
@@ -4001,44 +4496,45 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "إعدادات الملف الشخصي"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr "بإمكانك تحديث بيانات ملفك الشخصي ليعرف عنك الناس أكثر."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "معلومات الملف الشخصي"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "الاسم الكامل"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "الصفحة الرئيسية"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك الشخصي على موقع آخر"
@@ -4046,7 +4542,7 @@ msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك ا
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4058,79 +4554,86 @@ msgstr[4] "تكلم عن نفسك واهتمامتك في %d حرف"
msgstr[5] "تكلم عن نفسك واهتمامتك في %d حرف"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "صِف نفسك واهتماماتك"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "السيرة"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "الموقع"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "شارك مكاني الحالي عند إرسال إشعارات"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "الوسوم"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "اللغة"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "اللغة المفضلة"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "المنطقة الزمنية"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "ما المنطقة الزمنية التي تتواجد فيها عادة؟"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr "اشترك تلقائيًا بأي شخص يشترك بي (يفضل أن يستخدم لغير البشر)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4142,51 +4645,54 @@ msgstr[4] "الاسم طويل جدا (الأقصى %d حرفا)."
msgstr[5] "الاسم طويل جدا (الأقصى %d حرفا)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "لم تُختر المنطقة الزمنية."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "الاسم طويل جدا (الأقصى 255 حرفا)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "وسم غير صالح: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
+#: actions/profilesettings.php:347
#, fuzzy
-msgid "Couldn't update user for autosubscribe."
+msgid "Could not update user for autosubscribe."
msgstr "تعذّر تحديث سجل المستخدم."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "لم يمكن حفظ تفضيلات الموقع."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "تعذّر حفظ الملف الشخصي."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "تعذّر حفظ الوسوم."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "حُفظت الإعدادات."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "أنشئ حسابًا"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4258,6 +4764,12 @@ msgstr ""
"هنا %%site.name%%، خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-"
"blogging) المبنية على البرنامج الحر [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, php-format
+msgid "%s updates from everyone."
+msgstr ""
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4300,232 +4812,267 @@ msgstr ""
msgid "Tag cloud"
msgstr "سحابة الوسوم"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "أنت والج بالفعل!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "لا رمز استعادة كهذا."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "ليس رمز استعادة."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "رمز استعادة لمستخدم غير معروف."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "خطأ في رمز التأكيد."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "رمز التأكيد هذا قديم جدًا. من فضلك ابدأ من جديد."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
#, fuzzy
msgid "Could not update user with confirmed email address."
msgstr "عنوان البريد الإلكتروني المُؤكد الحالي."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "استعادة كلمة السر"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "الاسم المستعار أو البريد الإلكتروني"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "استرجع"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "استرجع"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "أعد ضبط كلمة السر"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "استعد كلمة السر"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "طُلبت استعادة كلمة السر"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "حُفظت كلمة السر."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "إجراء غير معروف"
-#: actions/recoverpassword.php:236
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
#, fuzzy
-msgid "6 or more characters, and don't forget it!"
+msgid "6 or more characters, and do not forget it!"
msgstr "6 أحرف أو أكثر"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "أعد الضبط"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "أدخل اسمًا مستعارًا أو عنوان بريد إلكتروني."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
#, fuzzy
msgid "No user with that email address or username."
msgstr "لا يوجد عنوان بريد إلكتروني مُسجّل لهذا المستخدم."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "لا يوجد عنوان بريد إلكتروني مُسجّل لهذا المستخدم."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "خطأ أثناء حفظ تأكيد العنوان."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
msgstr ""
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
#, fuzzy
msgid "Unexpected password reset."
msgstr "أعد ضبط كلمة السر"
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "يجب أن تكون كلمة السر 6 محارف أو أكثر."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
#, fuzzy
msgid "Password and confirmation do not match."
msgstr "كلمتا السر غير متطابقتين."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "خطأ أثناء ضبط المستخدم."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
-msgstr ""
+msgstr "حُفظت كلمة السر الجديدة بنجاح. أنت الآن والج."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "عذرًا، الأشخاص المدعوون وحدهم يستطيعون التسجيل."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "عذرا، رمز دعوة غير صالح."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "نجح التسجيل"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "سجّل"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "لا يُسمح بالتسجيل."
-#: actions/register.php:209
+#: actions/register.php:201
#, fuzzy
-msgid "You can't register if you don't agree to the license."
+msgid "You cannot register if you don't agree to the license."
msgstr "لا يمكنك تكرار ملاحظتك الشخصية."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "عنوان البريد الإلكتروني موجود مسبقًا."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "اسم مستخدم أو كلمة سر غير صالحة."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-#, fuzzy
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات"
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 حروف أو أكثر. مطلوب."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "نفس كلمة السر أعلاه. مطلوب."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "البريد الإلكتروني"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
-msgstr ""
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
+msgstr "لا يُستخدم إلا عند التحديثات، والتعميمات، ولاستعادة كلمة السر"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
-msgstr ""
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
+msgstr "اسم أطول. يُفضَّل استخدام اسمك الحقيقي"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك الشخصي على موقع آخر"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "جميع الحقوق محفوظة."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr ""
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4544,13 +5091,13 @@ msgid ""
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
msgstr ""
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4558,77 +5105,84 @@ msgid ""
"microblogging site](%%doc.openmublog%%), enter your profile URL below."
msgstr ""
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "اشتراك بعيد"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "اشترك بمستخدم بعيد"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "اسم المستخدم المستعار"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
msgstr ""
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "مسار الملف الشخصي"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "اشترك"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr ""
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
+msgstr "حجم غير صالح."
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "هذا ملف شخصي محلي! لُج لتشترك."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
-msgstr ""
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
+msgstr "تعذّر إدراج الرسالة."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار الإشعارات."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "لا ملاحظة محددة."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "لا يمكنك تكرار ملاحظتك الشخصية."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "أنت كررت هذه الملاحظة بالفعل."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "مكرر"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "مكرر!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "الردود على %s"
@@ -4674,11 +5228,102 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
+msgid "Replies to %1$s on %2$s."
msgstr "الردود على %1$s، الصفحة %2$d"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار الإشعارات."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "يجب أن تكون مسجل الدخول لتسجل تطبيقا."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "ارفع ملفًا"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "فشل في كتابة الملف إلى القرص."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "أوقفت إضافة رفع الملف."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "جميع الأعضاء"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "ارفع ملفًا"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "لا يمكنك سحب أدوار المستخدمين على هذا الموقع."
@@ -4687,7 +5332,7 @@ msgstr "لا يمكنك سحب أدوار المستخدمين على هذا ا
msgid "User doesn't have this role."
msgstr "ليس للمستخدم هذا الدور."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "ستاتس نت"
@@ -4732,128 +5377,139 @@ msgstr "مكّن تنقيح مُخرجات الجلسة."
msgid "Save site settings"
msgstr "اذف إعدادت الموقع"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
#, fuzzy
msgid "Application profile"
msgstr "معلومات التطبيق"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "أيقونة"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "الاسم"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "المنظمة"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "الوصف"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "إحصاءات"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
#, fuzzy
msgid "Application actions"
msgstr "معلومات التطبيق"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "احذف"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "معلومات التطبيق"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "اسمح بالمسار"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "أمتأكد من أنك تريد إعادة ضبط مفتاح المستهلك وكلمة سره؟"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "إشعارات %1$s المُفضلة، الصفحة %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
#, fuzzy
msgid "Could not retrieve favorite notices."
msgstr "تعذّر إنشاء مفضلة."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr ""
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr ""
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr ""
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, fuzzy, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4862,7 +5518,10 @@ msgstr ""
"%s لم يضف أي إشعارات إلى مفضلته إلى الآن. أرسل شيئًا شيقًا ليضيفه إلى "
"مفضلته. :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, fuzzy, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4872,7 +5531,8 @@ msgstr ""
"%s لم يضف أي إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action."
"register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "إنها إحدى وسائل مشاركة ما تحب."
@@ -4890,83 +5550,90 @@ msgid "%1$s group, page %2$d"
msgstr "مجموعة %1$s، الصفحة %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "ملف المجموعة الشخصي"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "مسار"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "ملاحظة"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "الكنى"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
#, fuzzy
msgid "Group actions"
msgstr "تصرفات المستخدم"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, fuzzy, php-format
msgid "FOAF for %s group"
msgstr "مجموعة %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "الأعضاء"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(لا شيء)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "جميع الأعضاء"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "أنشئت"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -4976,7 +5643,7 @@ msgstr "الأعضاء"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4994,7 +5661,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5007,30 +5674,30 @@ msgstr ""
"(http://status.net/). يتشارك أعضاؤها رسائل قصيرة عن حياتهم واهتماماتهم. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "الإداريون"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "لا رسالة كهذه."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "يحق للمُرسل والمستلم فقط قراءة هذه الرسالة."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, fuzzy, php-format
msgid "Message to %1$s on %2$s"
msgstr "الإشعارات التي فضلها %1$s في %2$s!"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, fuzzy, php-format
msgid "Message from %1$s on %2$s"
msgstr "نتائج البحث ل\"%1$s\" على %2$s"
@@ -5046,7 +5713,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s، الصفحة %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5232,7 +5899,7 @@ msgstr "اللغة المبدئية"
#: actions/siteadminpanel.php:263
msgid "Site language when autodetection from browser settings is not available"
-msgstr ""
+msgstr "لغة الموقع إذا لم يتوفر اكتشاف اللغة آليًا من إعدادات المتصفح"
#: actions/siteadminpanel.php:271
msgid "Limits"
@@ -5254,6 +5921,8 @@ msgstr "حد النص"
#: actions/siteadminpanel.php:278
msgid "How long users must wait (in seconds) to post the same thing again."
msgstr ""
+"الفترة (بالثواني) التي ينبغي أن ينتظرها المستخدمون قبل أن ينشروا الرسالة "
+"نفسها مجددًا"
#. TRANS: Page title for site-wide notice tab in admin panel.
#: actions/sitenoticeadminpanel.php:55
@@ -5288,151 +5957,154 @@ msgstr "نص إشعار عام للموقع (255 حرف كحد أقصى؛ يسم
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "احفظ إشعار الموقع"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "إعدادات الرسائل القصيرة"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "لا يمكنك استلام رسائل قصيرة عبر البريد الإلكرتوني من %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "الرسائل القصيرة غير متوفرة."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "عنوان الرسائل القصيرة"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
#, fuzzy
msgid "Current confirmed SMS-enabled phone number."
msgstr "عنوان البريد الإلكتروني المُؤكد الحالي."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
#, fuzzy
msgid "Awaiting confirmation on this phone number."
msgstr "إن رقم التأكيد هذا خاطئ."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "رمز التأكيد"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
-msgstr ""
+msgstr "أدخِل الرمز الذي تلقيته على هاتفك."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "أكّد"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "رقم هاتف SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "رقم الهاتف بدون شرطات أو مسافات مع رمز المنطقة"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "تفضيلات الرسائل القصيرة"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
msgstr ""
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "حُفظت تفضيلات الرسائل القصيرة."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "لا رقم هاتف."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
#, fuzzy
msgid "No carrier selected."
msgstr "حُذف الإشعار."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
#, fuzzy
msgid "That is already your phone number."
msgstr "هذا ليس رقم هاتفك."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
#, fuzzy
msgid "That phone number already belongs to another user."
msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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 ""
+"لقد أُرسل رمز تفعيل إلى رقم الهاتف الذي أضفتَه. راجع هاتفك لتحصل على الرمز "
+"والتعليمات لكيفية استخدامه."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "إن رقم التأكيد هذا خاطئ."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "أُلغي تأكيد الرسائل القصيرة."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "هذا ليس رقم هاتفك."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "تمت إزالة رقم هاتف الرسائل القصيرة."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
-msgstr ""
+msgstr "شركة الهاتف الخليوي"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
-#, fuzzy
+#: actions/smssettings.php:504
msgid "Select a carrier"
-msgstr "اختر وسمًا لترشيحه"
+msgstr "اختر شركة"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5440,8 +6112,9 @@ msgid ""
msgstr ""
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "لم تدخل رمزًا"
#. TRANS: Menu item for site administration
@@ -5518,15 +6191,19 @@ msgstr "لست مُشتركًا بأي أحد."
msgid "Could not save subscription."
msgstr "تعذّر حفظ الاشتراك."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "هذا الإجراء يقبل طلبات POST فقط."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "مُشترك"
@@ -5558,15 +6235,15 @@ msgid "These are the people who listen to %s's notices."
msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
-msgstr ""
+msgstr "ليس لديك مشتركون. جرِّب الاشتراك مع أشخاص تعرفهم وربما يردون الجميل."
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5576,7 +6253,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5607,7 +6284,7 @@ msgstr "هؤلاء الأشخاص الذي يستمع %s إليهم."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5621,23 +6298,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, fuzzy, php-format
msgid "%s is not listening to anyone."
msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "الردود على %s"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "جابر"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "رسائل قصيرة"
@@ -5670,12 +6348,15 @@ msgstr "لا مدخل هوية."
msgid "Tag %s"
msgstr "الوسوم"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "ملف المستخدم الشخصي"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "صورة"
@@ -5691,15 +6372,16 @@ msgid ""
msgstr ""
"سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة."
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "وسم غير صالح: \"%s\""
+
#: 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
#, fuzzy
msgid "Use this form to add tags to your subscribers or subscriptions."
@@ -5709,6 +6391,7 @@ msgstr "استخدم هذا النموذج لتعدل تطبيقك."
msgid "No such tag."
msgstr "لا وسم كهذا."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "لم تمنع هذا المستخدم."
@@ -5730,7 +6413,7 @@ msgstr "لا طلب استيثاق."
msgid "Unsubscribed"
msgstr "غير مشترك"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5762,12 +6445,11 @@ msgstr "رسالة ترحيب غير صالحة. أقصى طول هو 255 حرف
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "الملف الشخصي"
@@ -5779,7 +6461,7 @@ msgstr "حد السيرة"
#. TRANS: Tooltip in user admin panel for setting the character limit for the bio field.
#: actions/useradminpanel.php:222
msgid "Maximum length of a profile bio in characters."
-msgstr ""
+msgstr "الحد الأقصى لطول التعريف الشخصي في حساب المستخدم (بالأحرف)."
#. TRANS: Form legend in user admin panel.
#: actions/useradminpanel.php:231
@@ -5820,123 +6502,165 @@ msgstr "الدعوات مُفعلة"
#. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail.
#: actions/useradminpanel.php:265
msgid "Whether to allow users to invite new users."
-msgstr ""
+msgstr "اسمح للمستخدمين بدعوة مستخدمين جدد."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "احفظ إعدادات المستخدم"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
#, fuzzy
msgid "Authorize subscription"
msgstr "جميع الاشتراكات"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
+"يُرجى التحقق من هذه التفاصيل للتأكد من أنك تريد الاستماع لإشعارات هذا "
+"المستخدم. إذا لم تطلب للتو الاستماع لإشعارات شخص ما فانقر \"ارفض\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "الرخصة"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "اقبل"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "اشترك بهذا المستخدم"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "ارفض"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "ارفض هذا الاشتراك"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "لا طلب استيثاق!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
#, fuzzy
msgid "Subscription authorized"
msgstr "رُفض الاشتراك"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "رُفض الاشتراك"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, fuzzy, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+msgid "Listenee URI \"%s\" is too long."
+msgstr "المسار المصدر طويل جدًا."
+
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, php-format
+msgid "Listenee URI \"%s\" is a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, php-format
+msgid "Profile URL \"%s\" is for a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "مسار المصدر ليس صحيحا."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr ""
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
+msgstr "تعذر قراءة رابط الأفتار ‘%s’."
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr ""
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "تصميم الملف الشخصي"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr "خصّص أسلوب عرض ملفك بصورة خلفية ومخطط ألوان من اختيارك."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "استمتع بالنقانق!"
@@ -5966,7 +6690,7 @@ msgstr "جرّب [البحث عن مجموعات](%%action.groupsearch%%) وال
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, fuzzy, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "الإشعارات التي فضلها %1$s في %2$s!"
@@ -5996,6 +6720,9 @@ msgid ""
"Software Foundation, either version 3 of the License, or (at your option) "
"any later version. "
msgstr ""
+"StatusNet برمجية حرة، يمكنك إعادة توزيعها وتعديلها تحت شروط رخصة غنو أفيرو "
+"العمومية كما نشرتها مؤسسة البرمجيات الحرة، برخصتها الثالثة أو أي نسخة تليها "
+"(أيهما تشاء)."
#: actions/version.php:176
msgid ""
@@ -6017,7 +6744,7 @@ msgid "Plugins"
msgstr "الملحقات"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "النسخة"
@@ -6026,32 +6753,32 @@ msgid "Author(s)"
msgstr "المؤلف(ون)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "فضّل"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6068,7 +6795,7 @@ msgstr[5] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6081,7 +6808,7 @@ msgstr[5] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6093,7 +6820,7 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
#, fuzzy
msgid "Invalid filename."
msgstr "حجم غير صالح."
@@ -6152,7 +6879,7 @@ msgid "Could not create login token for %s"
msgstr "لم يمكن إنشاء توكن الولوج ل%s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6180,73 +6907,73 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth."
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "مشكلة في حفظ الإشعار. طويل جدًا."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "مشكلة في حفظ الإشعار. مستخدم غير معروف."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
#, fuzzy
msgid "You are banned from posting notices on this site."
msgstr "أنت ممنوع من إرسال رسائل مباشرة."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "مشكلة أثناء حفظ الإشعار."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
#, fuzzy
msgid "Problem saving group inbox."
msgstr "مشكلة أثناء حفظ الإشعار."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "تعذر تحديث المجموعة المحلية."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6254,14 +6981,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6301,7 +7028,7 @@ msgstr "غير مشترك!"
#. TRANS: Exception thrown when trying to unsubscribe a user from themselves.
#: classes/Subscription.php:183
msgid "Could not delete self-subscription."
-msgstr "تعذّر حفظ الاشتراك."
+msgstr "تعذّر حذف الاشتراك الذاتي."
#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server.
#: classes/Subscription.php:211
@@ -6333,35 +7060,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "أهلا بكم في %1$s يا @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "تعذّر إنشاء المجموعة."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "تعذّر إنشاء المجموعة."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "تعذّر ضبط عضوية المجموعة."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "تعذر تحديث المجموعة المحلية."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "لا يمكنك حذف المستخدمين."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6398,213 +7146,216 @@ msgid "Other"
msgstr "أخرى"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "صفحة غير مُعنونة"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
#, fuzzy
msgid "Primary site navigation"
msgstr "ضبط الموقع الأساسي"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "الملف الشخصي ومسار الأصدقاء الزمني"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "الصفحة الشخصية"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "غير بريدك الإلكتروني وكلمة سرّك وأفتارك وملفك الشخصي"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "الحساب"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "اتصل بالخدمات"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "اتصل"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "غيّر ضبط الموقع"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "إداري"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "ادعُ"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "اخرج من الموقع"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "اخرج"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "أنشئ حسابًا"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "سجّل"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "لُج إلى الموقع"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "لُج"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "ساعدني!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "مساعدة"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "ابحث عن أشخاص أو نصوص"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "ابحث"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "إشعار الموقع"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "المشاهدات المحلية"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "إشعار الصفحة"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
#, fuzzy
msgid "Secondary site navigation"
msgstr "ضبط الموقع الأساسي"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "مساعدة"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "عن"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "الأسئلة المكررة"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "الشروط"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "خصوصية"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "المصدر"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "اتصل"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "الجسر"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "رخصة برنامج StatusNet"
@@ -6612,7 +7363,7 @@ msgstr "رخصة برنامج StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, fuzzy, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6622,7 +7373,7 @@ msgstr ""
"broughtbyurl%%). "
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr ""
@@ -6631,7 +7382,7 @@ msgstr ""
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6643,51 +7394,51 @@ msgstr ""
"agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "رخصة محتوى الموقع"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
#, fuzzy
msgid "Pagination"
msgstr "تسجيل"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "بعد"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "قبل"
@@ -6696,10 +7447,80 @@ msgstr "قبل"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "لغة غير معروفة \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "صورة"
+msgid "Cannot force remote user to subscribe."
+msgstr "تعذّر تحديث سجل المستخدم."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "نوع ملف غير معروف"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "أنت بالفعل عضو في هذه المجموعة"
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "ابحث عن محتويات في الإشعارات"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "لا مستخدم كهذا."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6773,7 +7594,7 @@ msgid "User configuration"
msgstr "ضبط المستخدم"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "المستخدم"
@@ -6818,19 +7639,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6853,28 +7678,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "تعذّر إدراج الرسالة."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "خطأ في قاعدة البيانات أثناء حذف مستخدم تطبيق OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "أيقونة لهذا التطبيق"
@@ -6991,17 +7820,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "أزل"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "لا تحذف هذا الإشعار"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "المؤلف"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "المزود"
@@ -7033,6 +7868,11 @@ msgstr "تغيير كلمة السر غير مسموح به"
msgid "Block"
msgstr "امنع"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "امنع هذا المستخدم"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7151,7 +7991,7 @@ msgstr "الاسم الكامل: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "الموقع: %s"
@@ -7159,7 +7999,7 @@ msgstr "الموقع: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "الصفحة الرئيسية: %s"
@@ -7448,25 +8288,25 @@ msgstr ""
"tracking - لم يطبق بعد.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "لا رمز تأكيد."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "اذهب إلى المُثبّت."
@@ -7511,14 +8351,19 @@ msgstr "تطبيقات OAuth"
msgid "Database error"
msgstr "خطأ قاعدة بيانات"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "احذف هذا المستخدم"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "ارفع ملفًا"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "تستطيع رفع صورتك الشخصية. أقصى حجم للملف هو 2 م.ب."
@@ -7537,26 +8382,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "عطّل"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "أعد الضبط"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "تغيير الألوان"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "استخدم المبدئيات"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "استعد التصميمات المبدئية"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "ارجع إلى المبدئي"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "احفظ التصميم"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "تعذّر تحديث تصميمك."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "استعيدت مبدئيات التصميم."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "استخدم هذا النموذج لتعدل تطبيقك."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "ألغِ تفضيل هذا الإشعار"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "ألغِ تفضيل المفضلة"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "فضّل هذا الإشعار"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "فضّل"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "آرإسإس 1.0"
@@ -7573,6 +8466,19 @@ msgstr "أتوم"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "جميع الأعضاء"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7607,20 +8513,20 @@ msgstr "اذهب"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "مسار صفحة هذا التطبيق"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "صِف المجموعة أو الموضوع"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
@@ -7631,13 +8537,13 @@ msgstr[3] "صِف المجموعة أو الموضوع"
msgstr[4] "صِف المجموعة أو الموضوع"
msgstr[5] "صِف المجموعة أو الموضوع"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7746,43 +8652,44 @@ msgstr "وسوم في إشعارات مجموعة %s"
msgid "This page is not available in a media type you accept"
msgstr ""
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
#, fuzzy
msgid "Unsupported image file format."
msgstr "نسق غير مدعوم."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
#, fuzzy
msgid "Partial upload."
msgstr "لم يُرفع ملف."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr ""
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr ""
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
#, fuzzy
msgid "Lost our file."
msgstr "لا ملف كهذا."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "نوع ملف غير معروف"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7794,7 +8701,7 @@ msgstr[4] "ميجابايت"
msgstr[5] "ميجابايت"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7806,7 +8713,7 @@ msgstr[4] "كيلوبايت"
msgstr[5] "كيلوبايت"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7831,23 +8738,25 @@ msgstr "مصدر صندوق وارد غير معروف %d."
msgid "Leave"
msgstr "غادر"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "لُج باسم مستخدم وكلمة سر"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "سجّل حسابًا جديدًا"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "تأكيد عنوان البريد الإلكتروني"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7878,14 +8787,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7897,7 +8806,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7924,14 +8833,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "السيرة: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "عنوان بريد إلكتروني جديد للإرسال إلى %s"
@@ -7939,7 +8848,7 @@ msgstr "عنوان بريد إلكتروني جديد للإرسال إلى %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7954,34 +8863,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "حالة %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "تأكيد الرسالة القصيرة"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "لقد نبهك %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7999,7 +8908,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "رسالة خاصة جديدة من %s"
@@ -8008,7 +8917,7 @@ msgstr "رسالة خاصة جديدة من %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8029,7 +8938,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته"
@@ -8039,7 +8948,7 @@ msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8061,7 +8970,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8071,7 +8980,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "لقد أرسل %s (@%s) إشعارًا إليك"
@@ -8082,7 +8991,7 @@ msgstr "لقد أرسل %s (@%s) إشعارًا إليك"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8109,21 +9018,17 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
#, fuzzy
msgid "Only the user can read their own mailboxes."
msgstr "يستطيع المستخدمون الوالجون وحدهم تكرار الإشعارات."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr "من"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "تعذّر تحليل الرسالة."
@@ -8152,38 +9057,6 @@ msgstr "نوع رسالة غير مدعوم: %s"
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "فشل في كتابة الملف إلى القرص."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "أوقفت إضافة رفع الملف."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8204,7 +9077,7 @@ msgstr "لم يمكن تحديد نوع MIME للملف."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8213,7 +9086,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8247,19 +9120,28 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "أرسل"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "رسالة"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "من"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
#, fuzzy
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8279,11 +9161,11 @@ msgstr "أرسل إشعارًا"
msgid "What's up, %s?"
msgstr "ما الأخبار يا %s؟"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "أرفق"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "أرفق ملفًا"
@@ -8302,55 +9184,59 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "ش"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "ج"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "ر"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "غ"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "في"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "في السياق"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "مكرر بواسطة"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "رُد على هذا الإشعار"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "رُد"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "احذف هذا الإشعار"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "الإشعار مكرر"
@@ -8388,77 +9274,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "تعذّر إدراج اشتراك جديد."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "شخصية"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "الردود"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "الملف الشخصي"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "المفضلات"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "صندوق الوارد"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "رسائلك الواردة"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "صندوق الصادر"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "رسائلك المُرسلة"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "وسوم في إشعارات %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "غير معروفة"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "الاشتراكات"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "جميع الاشتراكات"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "المشتركون"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "جميع المشتركين"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "هوية المستخدم"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "عضو منذ"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "مجموعات"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "المُعدّل اليومي"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "كل المجموعات"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8505,7 +9427,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "امنع هذا المستخدم من هذه المجموعة"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "لم يتم العثور على وسيلة API."
@@ -8596,6 +9518,10 @@ msgstr "ادعُ"
msgid "Invite friends and colleagues to join you on %s"
msgstr "ادعُ أصدقائك وزملائك للانضمام إليك في %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "اشترك بهذا المستخدم"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8713,64 +9639,81 @@ msgstr "ألغِ الاشتراك"
msgid "User %1$s (%2$d) has no profile record."
msgstr "ليس للمستخدم ملف شخصي."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "عدّل الأفتار"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "تصرفات المستخدم"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "حذف المستخدم قيد التنفيذ..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "عدّل إعدادات الملف الشخصي"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "عدّل"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "أرسل رسالة مباشرة إلى هذا المستخدم"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "رسالة"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "راقب"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "دور المستخدم"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "إداري"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "مراقب"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "لست والجًا."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "قبل لحظات قليلة"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "قبل دقيقة تقريبًا"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8782,12 +9725,12 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "قبل ساعة تقريبًا"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8799,12 +9742,12 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "قبل يوم تقريبا"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8816,12 +9759,12 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "قبل شهر تقريبًا"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8833,18 +9776,13 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "قبل سنة تقريبًا"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s ليس لونًا صحيحًا!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s ليس لونًا صحيحًا!"
@@ -8869,36 +9807,18 @@ msgstr[4] "هذه طويلة جدًا. أطول حجم للإشعار %d حرف
msgstr[5] "هذه طويلة جدًا. أطول حجم للإشعار %d حرفًا."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "حجم غير صالح."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "لا هوية مستخدم محددة."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po
index 4f56fcd5de..7c8cbf473e 100644
--- a/locale/arz/LC_MESSAGES/statusnet.po
+++ b/locale/arz/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Egyptian Spoken Arabic (مصرى)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Dudi
# Author: Ghaly
@@ -11,19 +11,19 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:25+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:04+0000\n"
"Language-Team: Egyptian Spoken Arabic \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: arz\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -81,8 +81,9 @@ msgid "Save access settings"
msgstr "اذف إعدادت الموقع"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -92,13 +93,13 @@ msgstr "اذف إعدادت الموقع"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
#, fuzzy
msgctxt "BUTTON"
msgid "Save"
@@ -107,7 +108,7 @@ msgstr "أرسل"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "لا وسم كهذا."
@@ -117,6 +118,8 @@ msgstr "لا وسم كهذا."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -132,13 +135,23 @@ msgstr "لا وسم كهذا."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -146,15 +159,15 @@ msgstr "لا وسم كهذا."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "لا مستخدم كهذا."
@@ -168,9 +181,10 @@ msgstr "%1$s و الصحاب, صفحه %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s والأصدقاء"
@@ -279,7 +293,7 @@ msgstr "%1$s و الصحاب, صفحه %2$d"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -311,7 +325,21 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "تعذّر تحديث المستخدم."
@@ -321,18 +349,23 @@ msgstr "تعذّر تحديث المستخدم."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "ليس للمستخدم ملف شخصى."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "لم يمكن حفظ الملف."
@@ -342,8 +375,8 @@ msgstr "لم يمكن حفظ الملف."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -363,13 +396,14 @@ msgstr[5] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
#, fuzzy
msgid "Unable to save your design settings."
msgstr "تعذّر حذف إعدادات التصميم."
@@ -378,48 +412,59 @@ msgstr "تعذّر حذف إعدادات التصميم."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "تعذّر تحديث تصميمك."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "مسار %s الزمني"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "اشتراكات %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "المفضلات"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "أعضاء مجموعه %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "ما ينفعش تمنع نفسك!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "فشل منع المستخدم."
@@ -479,7 +524,7 @@ msgstr "لم يُعثر على المستخدم المستلم."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
#. TRANS: Client error displayed trying to direct message self (403).
@@ -503,8 +548,9 @@ msgid "This status is already a favorite."
msgstr "الحاله دى موجوده فعلا فى التفضيلات."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "تعذّر إنشاء مفضله."
@@ -514,7 +560,8 @@ msgid "That status is not a favorite."
msgstr "الحاله دى مش محطوطه فى التفضيلات."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "تعذّر حذف المفضله."
@@ -562,9 +609,9 @@ msgstr "تعذّر إيجاد المستخدم الهدف."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr ""
@@ -572,21 +619,22 @@ msgstr ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "ليس اسمًا مستعارًا صحيحًا."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا."
@@ -594,9 +642,9 @@ msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
@@ -604,14 +652,15 @@ msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -626,9 +675,9 @@ msgstr[5] "المنظمه طويله جدا (اكتر حاجه %d رمز)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)."
@@ -639,8 +688,8 @@ msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -661,18 +710,16 @@ msgstr "كنيه غير صالحة: \"%s\""
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr ""
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -683,30 +730,34 @@ msgstr ""
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "لم يوجد."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
#, fuzzy
msgid "You are already a member of that group."
msgstr "انت اصلا عضو فى الجروپ ده"
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
#, fuzzy
msgid "You have been blocked from that group by the admin."
msgstr "لم تمنع هذا المستخدم."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "ما نفعش يضم %1$s للجروپ %2$s."
@@ -719,9 +770,11 @@ msgstr "لست عضوا فى تلك المجموعه."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -759,7 +812,7 @@ msgid "Upload failed."
msgstr "ارفع ملفًا"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "امارة تسجيل الدخول اللى اتحطت مش موجوده."
@@ -782,20 +835,25 @@ msgid "Request token already authorized."
msgstr "لا تملك تصريحًا."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -813,18 +871,22 @@ msgstr "خطأ قاعده البيانات أثناء إدخال المستخد
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr ""
@@ -869,29 +931,31 @@ msgstr "الحساب"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "الاسم المستعار"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "كلمه السر"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
#, fuzzy
msgctxt "BUTTON"
@@ -967,6 +1031,7 @@ msgstr "لا يمكنك حذف المستخدمين."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -986,40 +1051,53 @@ msgstr "مش نافعه تتكرر الملاحظتك بتاعتك."
msgid "Already repeated that notice."
msgstr "الملاحظه اتكررت فعلا."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "الـ API method مش موجوده."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "نسق غير مدعوم."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "حُذِفت الحاله."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
#, fuzzy
msgid "No status with that ID found."
msgstr "لا ملف شخصى بهذه الهويه."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "تعذّر حذف هذا الإشعار."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "احذف الإشعار"
@@ -1085,7 +1163,7 @@ msgstr "نتايج التدوير لـ\"%1$s\" على %2$s"
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "تعذر تحديث المجموعه."
@@ -1106,13 +1184,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "مسار %s الزمنى العام"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr ""
@@ -1161,51 +1240,49 @@ msgstr "يحق للمُرسل والمستلم فقط قراءه هذه الرس
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "ابحث عن محتويات فى الإشعارات"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "لا ملف بهذه الهويه."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
#, fuzzy
@@ -1213,153 +1290,222 @@ msgid "API method under construction."
msgstr "الـ API method مش موجوده."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "الـ API method مش موجوده."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "لا ملف كهذا."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "تعذّر إدراج اشتراك جديد."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "ابحث عن محتويات فى الإشعارات"
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "مش معروف"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "أضف إلى المفضلات"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
#, fuzzy
msgid "No such profile."
msgstr "لا ملف كهذا."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "%1$s و الصحاب, صفحه %2$d"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+#, fuzzy
+msgid "Cannot add someone else's subscription."
+msgstr "تعذّر إدراج اشتراك جديد."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "ابحث عن محتويات فى الإشعارات"
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+#, fuzzy
+msgid "Can only fave notices."
+msgstr "ابحث عن محتويات فى الإشعارات"
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+#, fuzzy
+msgid "Unknown note."
+msgstr "مش معروف"
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+#, fuzzy
+msgid "Already a favorite."
+msgstr "أضف إلى المفضلات"
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "أعضاء مجموعه %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "المجموعات التى %s عضو فيها"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "تعذّر إدراج اشتراك جديد."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "ابحث عن محتويات فى الإشعارات"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "مش معروف"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "جميع الأعضاء"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "لا ملف كهذا."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "تعذّر حذف المفضله."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "لا مجموعه كهذه."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "جميع الأعضاء"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "الـ API method مش موجوده."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "لا ملف كهذا."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "لست مُشتركًا بأى أحد."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "تعذّر حفظ الاشتراك."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "لا ملف كهذا."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "لست مُشتركًا بأى أحد."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "تعذّر حفظ الاشتراك."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "الأشخاص المشتركون ب%s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "نوع ملف غير معروف"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "مُشترك أصلا!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1368,11 +1514,15 @@ msgstr "لا مرفق كهذا."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "لا اسم مستعار."
@@ -1389,7 +1539,7 @@ msgstr "حجم غير صالح."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "أفتار"
@@ -1402,42 +1552,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "يوزر من-غير پروفايل زيّه."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "إعدادات الأفتار"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "الأصلي"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "عاين"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "احذف"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1456,31 +1616,71 @@ msgstr "مجموعات"
msgid "No file uploaded."
msgstr "لا ملف شخصى مُحدّد."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
msgstr ""
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr ""
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "رُفع الأفتار."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "فشل تحديث الأفتار."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "حُذف الأفتار."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "يحق للمُرسل والمستلم فقط قراءه هذه الرساله."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "الخلفية"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1488,7 +1688,8 @@ msgstr "لقد منعت مسبقا هذا المستخدم."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "امنع المستخدم"
@@ -1508,15 +1709,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "ملاحظة"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "لا تمنع هذا المستخدم"
#. TRANS: Button label on the user block form.
@@ -1527,16 +1728,16 @@ msgstr "لا تمنع هذا المستخدم"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
#, fuzzy
msgctxt "BUTTON"
msgid "Yes"
msgstr "نعم"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "امنع هذا المستخدم"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1544,31 +1745,6 @@ msgstr "امنع هذا المستخدم"
msgid "Failed to save block information."
msgstr "فشل حفظ معلومات المنع."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "لا مجموعه كهذه."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1641,23 +1817,6 @@ msgstr ""
msgid "That address has already been confirmed."
msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "تعذّر تحديث المستخدم."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1683,11 +1842,85 @@ msgid "Conversation"
msgstr "محادثة"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "الإشعارات"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "يحق للمُرسل والمستلم فقط قراءه هذه الرساله."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "لا يمكنك حذف المستخدمين."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "حُذف الأفتار."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "أنشئ مجموعه جديدة"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "أكّد"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "لا يمكنك حذف المستخدمين."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "لا يمكنك حذف المستخدمين."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1702,14 +1935,14 @@ msgstr "لم يوجد رمز التأكيد."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "انت مش بتملك الapplication دى."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr ""
@@ -1730,13 +1963,13 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
#, fuzzy
-msgid "Do not delete this application"
+msgid "Do not delete this application."
msgstr "لا تحذف هذا الإشعار"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
#, fuzzy
-msgid "Delete this application"
+msgid "Delete this application."
msgstr "احذف هذا الإشعار"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1746,8 +1979,10 @@ msgid "You must be logged in to delete a group."
msgstr "يجب أن تكون والجًا لتنشئ مجموعه."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
#, fuzzy
msgid "No nickname or ID."
msgstr "لا اسم مستعار."
@@ -1790,25 +2025,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "لا تحذف هذا الإشعار"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "احذف هذا المستخدم"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "لست والجًا."
@@ -1833,107 +2074,144 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "لا تحذف هذا الإشعار"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "احذف هذا الإشعار"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "لا يمكنك حذف المستخدمين."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "يمكنك حذف المستخدمين المحليين فقط."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "احذف المستخدم"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "احذف المستخدم"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "لا تحذف هذا الإشعار"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "احذف هذا المستخدم"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "التصميم"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "مسار شعار غير صالح."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "مسار شعار غير صالح."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "المراسله الفوريه غير متوفره."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "غيّر الشعار"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "شعار الموقع"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "شعار الموقع"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "غيّر السمة"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "سمه الموقع"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "سمه الموقع."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
#, fuzzy
msgid "Custom theme"
msgstr "سمه الموقع"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "تغيير صوره الخلفية"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "الخلفية"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1941,99 +2219,109 @@ msgid ""
msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "مكّن"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "عطّل"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "مكّن صوره الخلفيه أو عطّلها."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
#, fuzzy
msgid "Tile background image"
msgstr "تغيير صوره الخلفية"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "تغيير الألوان"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "المحتوى"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "الشريط الجانبي"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "النص"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "وصلات"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr ""
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "استخدم المبدئيات"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "استعد التصميمات المبدئية"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "ارجع إلى المبدئي"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "أرسل"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "احفظ التصميم"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "هذا الشعار ليس مفضلًا!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "أضف إلى المفضلات"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "لا مرفق كهذا."
#. TRANS: Title for "Edit application" form.
@@ -2049,7 +2337,7 @@ msgid "You must be logged in to edit an application."
msgstr "لازم يكون متسجل دخولك علشان تعدّل application."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "ما فيش application زى كده."
@@ -2059,67 +2347,77 @@ msgid "Use this form to edit your application."
msgstr "استعمل الفورمه دى علشان تعدّل الapplication بتاعتك."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "الاسم مطلوب."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "الاسم طويل جدا (اكتر حاجه 255 رمز)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr ""
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "الوصف مطلوب."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
#, fuzzy
msgid "Source URL is too long."
msgstr "الSource URL مش مظبوط."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "الSource URL مش مظبوط."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
#, fuzzy
msgid "Organization is required."
msgstr "الوصف مطلوب."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "المنظمه طويله جدا (اكتر حاجه 255 رمز)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
#, fuzzy
msgid "Organization homepage is required."
msgstr "الوصف مطلوب."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
#, fuzzy
msgid "Callback URL is not valid."
msgstr "الSource URL مش مظبوط."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "ما نفعش تحديث الapplication."
@@ -2130,14 +2428,17 @@ msgid "Edit %s group"
msgstr "عدّل مجموعه %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "يجب أن تكون والجًا لتنشئ مجموعه."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "لازم تكون ادارى علشان تعدّل الجروپ."
@@ -2148,63 +2449,65 @@ msgstr "استخدم هذا النموذج لتعديل المجموعه."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "كنيه غير صالحة: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "تعذر تحديث المجموعه."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "تعذّر إنشاء الكنى."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "حُفظت الخيارات."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "تظبيطات الايميل"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "أدر كيف تستلم البريد الإلكترونى من %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "عنوان الايميل"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "عنوان البريد الإلكترونى المُؤكد الحالى."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "استرجع"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2215,15 +2518,15 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "عنوان البريد الإلكترونى، مثل \"UserName@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
#, fuzzy
msgctxt "BUTTON"
msgid "Add"
@@ -2231,29 +2534,29 @@ msgstr "أضف"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "البريد الإلكترونى الوارد"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "أريد أن أرسل الملاحظات عبر البريد الإلكترونى."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "أرسل بريدًا إلكترونيًا إلى هذا العنوان لترسل إشعارات جديده."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "أنشئ عنوان بريد إلكترونى لترسل إليه؛ ألغِ القديم."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2261,341 +2564,403 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
#, fuzzy
msgctxt "BUTTON"
msgid "New"
msgstr "جديد"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "عناوين البريد الإلكتروني"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "أرسل لى إشعارات بالاشتراكات الجديده عبر البريد الإلكترونى."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أحدهم إشعارى مفضله."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
#, fuzzy
msgid "Send me email when someone sends me a private message."
msgstr "أرسل لى بريدًا إلكترونيًا عندما يرسل لى أحدهم \"@-رد\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "أرسل لى بريدًا إلكترونيًا عندما يرسل لى أحدهم \"@-رد\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
#, fuzzy
msgid "Publish a MicroID for my email address."
msgstr "هذا ليس عنوان بريدك الإلكترونى."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
#, fuzzy
msgid "Email preferences saved."
msgstr "حُفِظت التفضيلات."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "لا عنوان بريد إلكترونى."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
+#: actions/emailsettings.php:388
#, fuzzy
-msgid "Cannot normalize that email address"
+msgid "Cannot normalize that email address."
msgstr "عنوان البريد الإلكترونى المُؤكد الحالى."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "ليس عنوان بريد صالح."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "هذا هو عنوان بريدك الإكترونى سابقًا."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "تعذّر إدراج رمز التأكيد."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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 ""
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
#, fuzzy
msgid "No pending confirmation to cancel."
msgstr "لا رمز تأكيد."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
#, fuzzy
msgid "That is the wrong email address."
msgstr "هذا عنوان محادثه فوريه خاطئ."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "تعذّر حذف تأكيد البريد الإلكترونى."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "لا رمز تأكيد."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "هذا ليس عنوان بريدك الإلكترونى."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "لا عنوان بريد إلكترونى."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
#, fuzzy
msgid "No incoming email address."
msgstr "لا عنوان بريد إلكترونى."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
#, fuzzy
-msgid "Couldn't update user record."
+msgid "Could not update user record."
msgstr "تعذّر تحديث المستخدم."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
#, fuzzy
msgid "Incoming email address removed."
msgstr "لا عنوان بريد إلكترونى."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
#, fuzzy
msgid "New incoming email address added."
msgstr "لا عنوان بريد إلكترونى."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "هذا الإشعار مفضله مسبقًا!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "ألغِ تفضيل المفضلة"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "إشعارات مشهورة"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "إشعارات مشهوره، الصفحه %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "أشهر الإشعارات على الموقع حاليًا."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "إشعارات %s المُفضلة"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, fuzzy, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "نتايج التدوير لـ\"%1$s\" على %2$s"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "مستخدمون مختارون"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "مستخدمون مختارون، صفحه %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "اختيار لبعض المستخدمين المتميزين على %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "ما فيش ملاحظة ID."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "ما فيش ملاحظه."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "لا مرفقات."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "ما فيش فايلات اتعمللها upload."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "لم أتوقع هذا الرد!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "المستخدم الذى تستمع إليه غير موجود."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
#, fuzzy
msgid "You can use the local subscription!"
msgstr "تعذّر حفظ الاشتراك."
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
#, fuzzy
msgid "That user has blocked you from subscribing."
msgstr "لقد منعك المستخدم."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "لا تملك تصريحًا."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
#, fuzzy
msgid "Error updating remote profile."
msgstr "خطأ أثناء تحديث الملف الشخصى البعيد"
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "لا ملف كهذا."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "تعذّرت قراءه الملف."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
#, fuzzy
msgid "Invalid role."
msgstr "حجم غير صالح."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
#, fuzzy
msgid "You cannot grant user roles on this site."
msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
#, fuzzy
msgid "User already has this role."
msgstr "المستخدم مسكت من قبل."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "لا ملف شخصى مُحدّد."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "لا ملف شخصى بهذه الهويه."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "لا مجموعه مُحدّده."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr ""
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
#, fuzzy
msgid "User is already blocked from group."
msgstr "المستخدم ليس ممنوعًا من المجموعه."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "المستخدم ليس عضوًا فى المجموعه."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "امنع المستخدم من المجموعة"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2604,185 +2969,223 @@ msgid ""
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "لا تمنع هذا المستخدم من هذه المجموعة"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "امنع هذا المستخدم من هذه المجموعة"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "خطأ فى قاعده البيانات أثناء منع المستخدم من المجموعه."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "لا هويه."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "يجب أن تلج لتُعدّل المجموعات."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "تصميم المجموعة"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "تعذّر تحديث تصميمك."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "تعذّر حذف إعدادات التصميم."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
#, fuzzy
msgid "Design preferences saved."
msgstr "حُفِظت التفضيلات."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "شعار المجموعة"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, fuzzy, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "ارفع"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
#, fuzzy
msgid "Crop"
msgstr "مجموعات"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr ""
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "حُدّث الشعار."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "فشل رفع الشعار."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "أعضاء مجموعه %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s اعضاء الجروپ, صفحه %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "قائمه بمستخدمى هذه المجموعه."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "إداري"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
#, fuzzy
msgid "Make user an admin of the group"
msgstr "لازم تكون ادارى علشان تعدّل الجروپ."
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr ""
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "مجموعات"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "المجموعات، صفحه %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "أنشئ مجموعه جديدة"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, 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
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "بحث فى المجموعات"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "لا نتائج."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2790,210 +3193,220 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr ""
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "المستخدم ليس ممنوعًا من المجموعه."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "خطأ أثناء منع الحجب."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "تظبيطات بعت الرسايل الفوريه"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "المراسله الفوريه غير متوفره."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "عنوان الرساله الفوريه"
-#: actions/imsettings.php:113
+#: actions/imsettings.php:109
#, fuzzy
-msgid "Current confirmed Jabber/GTalk address."
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "عنوان البريد الإلكترونى المُؤكد الحالى."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "حُفِظت التفضيلات."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
#, fuzzy
-msgid "Send me notices through Jabber/GTalk."
+msgid "Send me notices through Jabber/Google Talk."
msgstr "أرسل لى إشعارات بالاشتراكات الجديده عبر البريد الإلكترونى."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr ""
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr "هذا ليس عنوان بريدك الإلكترونى."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "حُفِظت التفضيلات."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "لا هويه جابر."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
#, fuzzy
-msgid "Cannot normalize that Jabber ID"
+msgid "Cannot normalize that Jabber ID."
msgstr "ليست هويه جابر صالحة"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "ليست هويه جابر صالحة"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
#, fuzzy
msgid "That is already your Jabber ID."
msgstr "هذه ليست هويتك فى جابر."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
#, fuzzy
msgid "Jabber ID already belongs to another user."
msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
"s for sending messages to you."
msgstr ""
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "هذا عنوان محادثه فوريه خاطئ."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
#, fuzzy
-msgid "Couldn't delete IM confirmation."
+msgid "Could not delete IM confirmation."
msgstr "تعذّر حذف تأكيد البريد الإلكترونى."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "لا رمز تأكيد."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "هذه ليست هويتك فى جابر."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
#, fuzzy
msgid "The IM address was removed."
msgstr "أزيل هذا العنوان."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr ""
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr ""
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
#, fuzzy
msgid "Invites have been disabled."
msgstr "الدعوات مُفعلة"
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, fuzzy, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "يجب أن تلج لتُعدّل المجموعات."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "عنوان بريد إلكترونى غير صالح: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "أُرسلت الدعوة"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "دعوه مستخدمين جدد"
@@ -3001,7 +3414,7 @@ msgstr "دعوه مستخدمين جدد"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3014,7 +3427,7 @@ msgstr[5] "لست مشتركًا بأحد."
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3023,7 +3436,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3037,7 +3450,7 @@ msgstr[5] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] ""
@@ -3049,40 +3462,40 @@ msgstr[5] ""
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
msgstr ""
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "عناوين البريد الإلكتروني"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
msgstr ""
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "رساله شخصية"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr ""
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
#, fuzzy
msgctxt "BUTTON"
msgid "Send"
@@ -3091,7 +3504,7 @@ msgstr "أرسل"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr ""
@@ -3101,7 +3514,7 @@ msgstr ""
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3132,180 +3545,196 @@ msgid ""
"Sincerely, %2$s\n"
msgstr ""
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
#, fuzzy
msgid "You must be logged in to join a group."
msgstr "يجب أن تلج لتُعدّل المجموعات."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s دخل جروپ %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
#, fuzzy
msgid "You must be logged in to leave a group."
msgstr "يجب أن تكون والجًا لتنشئ مجموعه."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "لست عضوا فى تلك المجموعه."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s ساب جروپ %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "رساله ترحيب غير صالحه. أقصى طول هو 255 حرف."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "خاص"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "أرسل"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "والج بالفعل."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "اسم المستخدم أو كلمه السر غير صحيحان."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "لُج"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "لُج إلى الموقع"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "تذكّرني"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "أنسيت كلمه السر؟"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
msgstr ""
-#: actions/login.php:292
+#: actions/login.php:281
#, fuzzy
msgid "Login with your username and password."
msgstr "اسم المستخدم أو كلمه السر غير صحيحان."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3341,20 +3770,23 @@ msgid "New application"
msgstr "ما فيش application زى كده."
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "لازم تكون مسجل دخوللك علشان تسجل application."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "استعمل الفورمه دى علشان تسجل application جديد."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
#, fuzzy
msgid "Source URL is required."
msgstr "الSource URL مش مظبوط."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "مش ممكن إنشاء الapplication."
@@ -3363,11 +3795,22 @@ msgstr "مش ممكن إنشاء الapplication."
msgid "New group"
msgstr "مجموعه جديدة"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "لست عضوا فى تلك المجموعه."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "استخدم هذا النموذج لإنشاء مجموعه جديده."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "رساله جديدة"
@@ -3418,45 +3861,57 @@ msgstr "إشعار جديد"
msgid "Notice posted"
msgstr "أُرسل الإشعار"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, 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
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "بحث فى النصوص"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "نتايج التدوير لـ\"%1$s\" على %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, 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:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr ""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
-msgstr ""
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
+msgstr "الإشعارات الموسومه ب%s"
#: actions/nudge.php:85
msgid ""
@@ -3494,31 +3949,31 @@ msgid "You have not registered any applications yet."
msgstr "لازم تكون مسجل دخوللك علشان تسجل application."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
#, fuzzy
msgid "Connected applications"
msgstr "مش ممكن إنشاء الapplication."
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "انت مش يوزر للapplication دى."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "استعمل الفورمه دى علشان تعدّل الapplication بتاعتك."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3526,20 +3981,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "الـ API method مش موجوده."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "الـ API method مش موجوده."
+
#: actions/oembed.php:80 actions/shownotice.php:100
#, fuzzy
msgid "Notice has no profile."
@@ -3550,6 +4015,16 @@ msgstr "ليس للمستخدم ملف شخصى."
msgid "%1$s's status on %2$s"
msgstr "%1$s ساب جروپ %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "لم يُعثر على المستخدم المستلم."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3563,16 +4038,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr " مش نظام بيانات مدعوم."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "تدوير فى الأشخاص"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "بحث الإشعارات"
@@ -3586,69 +4062,80 @@ msgid "Manage various other options."
msgstr "أدر خيارات أخرى عديده."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (خدمه حرة)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "قصّر المسارات بـ"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "خدمه التقصير المطلوب استخدامها."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "اعرض تصاميم الملف الشخصي"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "أظهر أو أخفِ تصاميم الملفات الشخصيه."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "ما فيش ID متحدد لليوزر."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "ما فيش امارة دخول متحدده."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "ما فيش طلب تسجيل دخول مطلوب."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "امارة تسجيل الدخول اللى اتحطت مش موجوده."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "تاريخ صلاحية الاماره خلص."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr ""
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, fuzzy, php-format
msgid "Outbox for %s"
msgstr "صندوق الصادر"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
@@ -3660,7 +4147,8 @@ msgstr "غيّر كلمه السر"
msgid "Change your password."
msgstr "غيّر كلمه سرك."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "تغيير كلمه السر"
@@ -3668,49 +4156,50 @@ msgstr "تغيير كلمه السر"
msgid "Old password"
msgstr "كلمه السر القديمة"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "كلمه سر جديدة"
-#: actions/passwordsettings.php:109
+#: actions/passwordsettings.php:109 actions/register.php:423
#, fuzzy
-msgid "6 or more characters"
+msgid "6 or more characters."
msgstr "6 حروف أو أكثر. مطلوب."
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "أكّد"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "نفس كلمه السر أعلاه"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "غيّر"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "يجب أن تكون كلمه السر 6 حروف أو أكثر."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "كلمتا السر غير متطابقتين."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "كلمه السر القديمه غير صحيحة"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "تعذّر حفظ كلمه السر الجديده."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "حُفظت كلمه السر."
@@ -3929,7 +4418,7 @@ msgstr "مسار دليل المحليات"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "مرفقات"
@@ -4001,14 +4490,17 @@ msgstr ""
msgid "Save paths"
msgstr "احفظ المسارات"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, 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
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "بحث فى الأشخاص"
@@ -4032,50 +4524,51 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "إعدادات الملف الشخصي"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "معلومات الملف الشخصي"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "الاسم الكامل"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "الصفحه الرئيسية"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr ""
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4087,79 +4580,84 @@ msgstr[4] "صِف نفسك واهتماماتك"
msgstr[5] "صِف نفسك واهتماماتك"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "صِف نفسك واهتماماتك"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "السيرة"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "الموقع"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr ""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "الوسوم"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "اللغة"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "اللغه المفضلة"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "المنطقه الزمنية"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "ما المنطقه الزمنيه التى تتواجد فيها عادة؟"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr "أشرك المستخدمين الجدد بهذا المستخدم تلقائيًا."
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4171,51 +4669,54 @@ msgstr[4] "الاسم طويل جدا (اكتر حاجه %d رمز)."
msgstr[5] "الاسم طويل جدا (اكتر حاجه %d رمز)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "لم تُختر المنطقه الزمنيه."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "الاسم طويل جدا (اكتر حاجه 255 رمز)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "وسم غير صالح: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
+#: actions/profilesettings.php:347
#, fuzzy
-msgid "Couldn't update user for autosubscribe."
+msgid "Could not update user for autosubscribe."
msgstr "تعذّر تحديث المستخدم."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "لم يمكن حفظ تفضيلات الموقع."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "تعذّر حفظ الملف الشخصى."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "تعذّر حفظ الوسوم."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "حُفظت الإعدادات."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "أنشئ مجموعه جديدة"
+
#: actions/public.php:83
#, fuzzy, php-format
msgid "Beyond the page limit (%s)."
@@ -4287,6 +4788,12 @@ msgstr ""
"هنا %%site.name%%، خدمه [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-"
"blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, php-format
+msgid "%s updates from everyone."
+msgstr ""
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4329,232 +4836,265 @@ msgstr ""
msgid "Tag cloud"
msgstr "سحابه الوسوم"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "أنت والج بالفعل!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "لا رمز استعاده كهذا."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "ليس رمز استعاده."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "رمز استعاده لمستخدم غير معروف."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "خطأ فى رمز التأكيد."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "رمز التأكيد هذا قديم جدًا. من فضلك ابدأ من جديد."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
#, fuzzy
msgid "Could not update user with confirmed email address."
msgstr "عنوان البريد الإلكترونى المُؤكد الحالى."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "استعاده كلمه السر"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "الاسم المستعار أو البريد الإلكتروني"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "استرجع"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "استرجع"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "أعد ضبط كلمه السر"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "استعد كلمه السر"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "طُلبت استعاده كلمه السر"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "حُفظت كلمه السر."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "إجراء غير معروف"
-#: actions/recoverpassword.php:236
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
#, fuzzy
-msgid "6 or more characters, and don't forget it!"
+msgid "6 or more characters, and do not forget it!"
msgstr "6 حروف أو أكثر. مطلوب."
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "أعد الضبط"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "أدخل اسمًا مستعارًا أو عنوان بريد إلكترونى."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
#, fuzzy
msgid "No user with that email address or username."
msgstr "عنوان البريد الإلكترونى للاتصال بموقعك"
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
#, fuzzy
msgid "No registered email address for that user."
msgstr "عنوان البريد الإلكترونى للاتصال بموقعك"
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "خطأ أثناء حفظ تأكيد العنوان."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
msgstr ""
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
#, fuzzy
msgid "Unexpected password reset."
msgstr "أعد ضبط كلمه السر"
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "يجب أن تكون كلمه السر 6 محارف أو أكثر."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
#, fuzzy
msgid "Password and confirmation do not match."
msgstr "كلمتا السر غير متطابقتين."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "خطأ أثناء ضبط المستخدم."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr ""
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "عذرًا، الأشخاص المدعوون وحدهم يستطيعون التسجيل."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "عذرا، رمز دعوه غير صالح."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "نجح التسجيل"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "سجّل"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "لا يُسمح بالتسجيل."
-#: actions/register.php:209
+#: actions/register.php:201
#, fuzzy
-msgid "You can't register if you don't agree to the license."
+msgid "You cannot register if you don't agree to the license."
msgstr "ما ينفعش تكرر الملاحظه بتاعتك."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "عنوان البريد الإلكترونى موجود مسبقًا."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "اسم مستخدم أو كلمه سر غير صالحه."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 حروف أو أكثر. مطلوب."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "نفس كلمه السر أعلاه. مطلوب."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "البريد الإلكتروني"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
msgstr ""
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
msgstr ""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr ""
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4573,13 +5113,13 @@ msgid ""
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
msgstr ""
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4587,77 +5127,84 @@ msgid ""
"microblogging site](%%doc.openmublog%%), enter your profile URL below."
msgstr ""
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "اشتراك بعيد"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "اشترك بمستخدم بعيد"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "اسم المستخدم المستعار"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
msgstr ""
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "مسار الملف الشخصي"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "اشترك"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr ""
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
+msgstr "حجم غير صالح."
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
-msgstr ""
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
+msgstr "لقد منعك المستخدم."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
-msgstr ""
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
+msgstr "تعذّر إدراج الرساله."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr ""
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "ما فيش ملاحظه متحدده."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "ما ينفعش تكرر الملاحظه بتاعتك."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "انت عيدت الملاحظه دى فعلا."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "مكرر"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "مكرر!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "الردود على %s"
@@ -4703,11 +5250,102 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
+msgid "Replies to %1$s on %2$s."
msgstr "أهلا بكم فى %1$s يا @%2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "يحق للمُرسل والمستلم فقط قراءه هذه الرساله."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "لازم تكون مسجل دخوللك علشان تسجل application."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "ارفع ملفًا"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "فشل فى كتابه الملف إلى القرص."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "جميع الأعضاء"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "ارفع ملفًا"
+
#: actions/revokerole.php:75
#, fuzzy
msgid "You cannot revoke user roles on this site."
@@ -4718,7 +5356,7 @@ msgstr "لا يمكنك إسكات المستخدمين على هذا الموق
msgid "User doesn't have this role."
msgstr "يوزر من-غير پروفايل زيّه."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4763,129 +5401,140 @@ msgstr "مكّن تنقيح مُخرجات الجلسه."
msgid "Save site settings"
msgstr "اذف إعدادت الموقع"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "لازم تكون مسجل دخولك علشان تشوف اى application."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr ""
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr ""
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "الاسم"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "المنظمه"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "الوصف"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "إحصاءات"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
#, fuzzy
msgid "Application actions"
msgstr "OAuth applications"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "احذف"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
#, fuzzy
msgid "Application info"
msgstr "OAuth applications"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "اسمح للURL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "إشعارات %s المُفضلة"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
#, fuzzy
msgid "Could not retrieve favorite notices."
msgstr "تعذّر إنشاء مفضله."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr ""
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr ""
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr ""
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, fuzzy, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4894,7 +5543,10 @@ msgstr ""
"%s لم يضف أى إشعارات إلى مفضلته إلى الآن. أرسل شيئًا شيقًا ليضيفه إلى "
"مفضلته. :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, fuzzy, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4904,7 +5556,8 @@ msgstr ""
"%s لم يضف أى إشعارات إلى مفضلته إلى الآن. لمّ لا [تسجل حسابًا](%%%%action."
"register%%%%) وترسل شيئًا شيقًا ليضيفه إلى مفضلته. :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "إنها إحدى وسائل مشاركه ما تحب."
@@ -4922,83 +5575,90 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s اعضاء الجروپ, صفحه %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "ملف المجموعه الشخصي"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "مسار"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "ملاحظة"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "الكنى"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
#, fuzzy
msgid "Group actions"
msgstr "تصرفات المستخدم"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, fuzzy, php-format
msgid "FOAF for %s group"
msgstr "مجموعه %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "الأعضاء"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(لا شيء)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "جميع الأعضاء"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "أنشئ"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5008,7 +5668,7 @@ msgstr "الأعضاء"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, fuzzy, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5025,7 +5685,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, fuzzy, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5037,30 +5697,30 @@ msgstr ""
"blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/)."
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "الإداريون"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "لا رساله كهذه."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "يحق للمُرسل والمستلم فقط قراءه هذه الرساله."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, fuzzy, php-format
msgid "Message to %1$s on %2$s"
msgstr "أهلا بكم فى %1$s يا @%2$s!"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, fuzzy, php-format
msgid "Message from %1$s on %2$s"
msgstr "نتايج التدوير لـ\"%1$s\" على %2$s"
@@ -5076,7 +5736,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s و الصحاب, صفحه %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5322,156 +5982,156 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
#, fuzzy
-msgid "Save site notice"
+msgid "Save site notice."
msgstr "إشعار الموقع"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "تظبيطات الـSMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "لا يمكنك استلام رسائل قصيره عبر البريد الإلكرتونى من %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "الرسائل القصيره غير متوفره."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
#, fuzzy
msgid "SMS address"
msgstr "عنوان الرساله الفوريه"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
#, fuzzy
msgid "Current confirmed SMS-enabled phone number."
msgstr "عنوان البريد الإلكترونى المُؤكد الحالى."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
#, fuzzy
msgid "Awaiting confirmation on this phone number."
msgstr "هذا ليس رقم هاتفك."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "رمز التأكيد"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr ""
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
#, fuzzy
msgctxt "BUTTON"
msgid "Confirm"
msgstr "أكّد"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "نمرة تليفون الـSMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr ""
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "حُفِظت التفضيلات."
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
msgstr ""
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
#, fuzzy
msgid "SMS preferences saved."
msgstr "حُفِظت التفضيلات."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "لا رقم هاتف."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
#, fuzzy
msgid "No carrier selected."
msgstr "حُذف الإشعار."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
#, fuzzy
msgid "That is already your phone number."
msgstr "هذا ليس رقم هاتفك."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
#, fuzzy
msgid "That phone number already belongs to another user."
msgstr "هذا البريد الإلكترونى ملك مستخدم آخر بالفعل."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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 ""
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
#, fuzzy
msgid "That is the wrong confirmation number."
msgstr "هذا ليس رقم هاتفك."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "لا رمز تأكيد."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "هذا ليس رقم هاتفك."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
#, fuzzy
msgid "The SMS phone number was removed."
msgstr "نمرة تليفون الـSMS"
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr ""
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
#, fuzzy
msgid "Select a carrier"
msgstr "اختر وسمًا لترشيحه"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5479,9 +6139,9 @@ msgid ""
msgstr ""
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
+#: actions/smssettings.php:535
#, fuzzy
-msgid "No code entered"
+msgid "No code entered."
msgstr "لا محتوى!"
#. TRANS: Menu item for site administration
@@ -5556,15 +6216,19 @@ msgstr "لست مُشتركًا بأى أحد."
msgid "Could not save subscription."
msgstr "تعذّر حفظ الاشتراك."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "مُشترك"
@@ -5596,7 +6260,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5604,7 +6268,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5614,7 +6278,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5645,7 +6309,7 @@ msgstr "هؤلاء الأشخاص الذى يستمع %s إليهم."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5659,23 +6323,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, fuzzy, php-format
msgid "%s is not listening to anyone."
msgstr "لست مُشتركًا بأى أحد."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "الردود على %s"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "جابر"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "رسائل قصيرة"
@@ -5708,12 +6373,15 @@ msgstr "لا مدخل هويه."
msgid "Tag %s"
msgstr "الوسوم"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "ملف المستخدم الشخصي"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "صورة"
@@ -5727,15 +6395,16 @@ msgid ""
"separated"
msgstr ""
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "وسم غير صالح: \"%s\""
+
#: 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
#, fuzzy
msgid "Use this form to add tags to your subscribers or subscriptions."
@@ -5745,6 +6414,7 @@ msgstr "استعمل الفورمه دى علشان تعدّل الapplication
msgid "No such tag."
msgstr "لا وسم كهذا."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "لم تمنع هذا المستخدم."
@@ -5767,7 +6437,7 @@ msgstr "ما فيش طلب تسجيل دخول مطلوب."
msgid "Unsubscribed"
msgstr "ألغِ الاشتراك"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5800,12 +6470,11 @@ msgstr "رساله ترحيب غير صالحه. أقصى طول هو 255 حرف
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "الملف الشخصي"
@@ -5862,119 +6531,158 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "اذف إعدادت الموقع"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
#, fuzzy
msgid "Authorize subscription"
msgstr "جميع الاشتراكات"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "الرخصة"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "اقبل"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "اشترك بهذا المستخدم"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "ارفض"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "ارفض هذا الاشتراك"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "لا طلب استيثاق!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
#, fuzzy
msgid "Subscription authorized"
msgstr "رُفض الاشتراك"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "رُفض الاشتراك"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, fuzzy, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+msgid "Listenee URI \"%s\" is too long."
msgstr "الSource URL مش مظبوط."
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+msgid "Listenee URI \"%s\" is a local user."
msgstr ""
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Profile URL \"%s\" is for a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "الSource URL مش مظبوط."
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, php-format
+msgid "Cannot read avatar URL \"%s\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr ""
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "تصميم الملف الشخصي"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "استمتع بالنقانق!"
@@ -6004,7 +6712,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, fuzzy, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "نتايج التدوير لـ\"%1$s\" على %2$s"
@@ -6054,7 +6762,7 @@ msgid "Plugins"
msgstr ""
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "النسخه"
@@ -6063,32 +6771,32 @@ msgid "Author(s)"
msgstr "المؤلف/ين"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "فضّل"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أحدهم إشعارى مفضله."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6105,7 +6813,7 @@ msgstr[5] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6118,7 +6826,7 @@ msgstr[5] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6130,7 +6838,7 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
#, fuzzy
msgid "Invalid filename."
msgstr "حجم غير صالح."
@@ -6190,7 +6898,7 @@ msgid "Could not create login token for %s"
msgstr "ما نفعش يتعمل امارة تسجيل دخول لـ %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6218,73 +6926,73 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "خطأ فى إدراج الأفتار"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "مشكله فى حفظ الإشعار. طويل جدًا."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "مشكله فى حفظ الإشعار. مستخدم غير معروف."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
#, fuzzy
msgid "You are banned from posting notices on this site."
msgstr "أنت ممنوع من إرسال رسائل مباشره."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "مشكله أثناء حفظ الإشعار."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
#, fuzzy
msgid "Problem saving group inbox."
msgstr "مشكله أثناء حفظ الإشعار."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "تعذّر حفظ الاشتراك."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "آر تى @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6292,14 +7000,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6370,36 +7078,57 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "أهلا بكم فى %1$s يا @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "تعذّر إنشاء المجموعه."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "تعذّر إنشاء المجموعه."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "تعذّر ضبط عضويه المجموعه."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
#, fuzzy
msgid "Could not save local group info."
msgstr "تعذّر حفظ الاشتراك."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "لا يمكنك حذف المستخدمين."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6436,155 +7165,158 @@ msgid "Other"
msgstr "أخرى"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "صفحه غير مُعنونة"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
#, fuzzy
msgid "Primary site navigation"
msgstr "ضبط الموقع الأساسي"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
#, fuzzy
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "الملف الشخصى ومسار الأصدقاء الزمني"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
#, fuzzy
msgctxt "MENU"
msgid "Personal"
msgstr "شخصية"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
#, fuzzy
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "غير كلمه سرّك"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "الحساب"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
#, fuzzy
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "كونيكشونات (Connections)"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "اتصل"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "ضبط الموقع الأساسي"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
#, fuzzy
msgctxt "MENU"
msgid "Admin"
msgstr "إداري"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr ""
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
#, fuzzy
msgctxt "MENU"
msgid "Invite"
msgstr "ادعُ"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "سمه الموقع."
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "الشعار"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "أنشئ مجموعه جديدة"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
#, fuzzy
msgctxt "MENU"
msgid "Register"
msgstr "سجّل"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
#, fuzzy
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "لُج إلى الموقع"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
#, fuzzy
msgctxt "MENU"
msgid "Login"
msgstr "لُج"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "مساعدة"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
#, fuzzy
msgctxt "MENU"
msgid "Help"
msgstr "مساعدة"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
#, fuzzy
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "ابحث عن أشخاص أو نص"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
#, fuzzy
msgctxt "MENU"
msgid "Search"
@@ -6592,70 +7324,70 @@ msgstr "ابحث"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "إشعار الموقع"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "المشاهدات المحلية"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "إشعار الصفحة"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
#, fuzzy
msgid "Secondary site navigation"
msgstr "ضبط الموقع الأساسي"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "مساعدة"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "عن"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "الأسئله المكررة"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "الشروط"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "خصوصية"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "المصدر"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "اتصل"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
#, fuzzy
msgid "Badge"
msgstr "نبّه"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
#, fuzzy
msgid "StatusNet software license"
msgstr "رخصه محتوى الموقع"
@@ -6664,7 +7396,7 @@ msgstr "رخصه محتوى الموقع"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, fuzzy, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6674,7 +7406,7 @@ msgstr ""
"broughtbyurl%%). "
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr ""
@@ -6683,7 +7415,7 @@ msgstr ""
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6695,51 +7427,51 @@ msgstr ""
"agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "رخصه محتوى الموقع"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
#, fuzzy
msgid "Pagination"
msgstr "المنظمه"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "بعد"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "قبل"
@@ -6748,10 +7480,80 @@ msgstr "قبل"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "لغه مش معروفه \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "صورة"
+msgid "Cannot force remote user to subscribe."
+msgstr "تعذّر تحديث المستخدم."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "نوع ملف غير معروف"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "انت اصلا عضو فى الجروپ ده"
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "ابحث عن محتويات فى الإشعارات"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "لا مستخدم كهذا."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6828,7 +7630,7 @@ msgid "User configuration"
msgstr "ضبط المسارات"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "المستخدم"
@@ -6876,19 +7678,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6911,29 +7717,33 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "تعذّر إدراج الرساله."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
#, fuzzy
msgid "Database error inserting OAuth application user."
msgstr "خطأ قاعده البيانات أثناء إدخال المستخدم OAuth app"
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "خطأ قاعده البيانات أثناء إدخال المستخدم OAuth app"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
#, fuzzy
msgid "Icon for this application"
msgstr "ما فيش application زى كده."
@@ -7051,17 +7861,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "استرجع"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "لا تحذف هذا الإشعار"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "المؤلف"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "المزود"
@@ -7093,6 +7909,11 @@ msgstr "تغيير الپاسوورد مش مسموح"
msgid "Block"
msgstr "امنع"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "امنع هذا المستخدم"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7210,7 +8031,7 @@ msgstr "الاسم الكامل: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "الموقع: %s"
@@ -7218,7 +8039,7 @@ msgstr "الموقع: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "الصفحه الرئيسية: %s"
@@ -7473,25 +8294,25 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "لا رمز تأكيد."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "اذهب إلى المُثبّت."
@@ -7536,14 +8357,19 @@ msgstr "OAuth applications"
msgid "Database error"
msgstr "خطأ قاعده بيانات"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "احذف هذا المستخدم"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "ارفع ملفًا"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "تستطيع رفع صورتك الشخصيه. أقصى حجم للملف هو 2 م.ب."
@@ -7562,26 +8388,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "عطّل"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "أعد الضبط"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "تغيير الألوان"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "استخدم المبدئيات"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "استعد التصميمات المبدئية"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "ارجع إلى المبدئي"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "احفظ التصميم"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "تعذّر تحديث تصميمك."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "استعيدت مبدئيات التصميم."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "استعمل الفورمه دى علشان تعدّل الapplication بتاعتك."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "ألغِ تفضيل هذا الإشعار"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "ألغِ تفضيل المفضلة"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "فضّل هذا الإشعار"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "فضّل"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "آرإسإس 1.0"
@@ -7598,6 +8472,19 @@ msgstr "أتوم"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "جميع الأعضاء"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7632,21 +8519,21 @@ msgstr "اذهب"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "انت مش بتملك الapplication دى."
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
#, fuzzy
msgid "Describe the group or topic"
msgstr "اوصف الapplication بتاعتك"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
@@ -7657,12 +8544,12 @@ msgstr[3] "اوصف الapplication بتاعتك"
msgstr[4] "اوصف الapplication بتاعتك"
msgstr[5] "اوصف الapplication بتاعتك"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7771,43 +8658,44 @@ msgstr "عدّل خصائص مجموعه %s"
msgid "This page is not available in a media type you accept"
msgstr ""
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
#, fuzzy
msgid "Unsupported image file format."
msgstr "نسق غير مدعوم."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
#, fuzzy
msgid "Partial upload."
msgstr "رُفع الأفتار."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr ""
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr ""
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
#, fuzzy
msgid "Lost our file."
msgstr "لا ملف كهذا."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "نوع ملف غير معروف"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7819,7 +8707,7 @@ msgstr[4] "ميجابايت"
msgstr[5] "ميجابايت"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7831,7 +8719,7 @@ msgstr[4] "كيلوبايت"
msgstr[5] "كيلوبايت"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7856,24 +8744,26 @@ msgstr "مصدر الـinbox مش معروف %d."
msgid "Leave"
msgstr "غادر"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
#, fuzzy
msgid "Login with a username and password"
msgstr "اسم مستخدم أو كلمه سر غير صالحه."
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr ""
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "تأكيد عنوان البريد الإلكتروني"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7892,14 +8782,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, fuzzy, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7911,7 +8801,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7928,14 +8818,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "عن نفسك: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, fuzzy, php-format
msgid "New email address for posting to %s"
msgstr "أنشئ عنوان بريد إلكترونى لترسل إليه؛ ألغِ القديم."
@@ -7943,7 +8833,7 @@ msgstr "أنشئ عنوان بريد إلكترونى لترسل إليه؛ أل
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7958,35 +8848,35 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "حاله %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
#, fuzzy
msgid "SMS confirmation"
msgstr "لا رمز تأكيد."
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
+msgid "You have been nudged by %s"
msgstr ""
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8004,7 +8894,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "رساله خاصه جديده من %s"
@@ -8013,7 +8903,7 @@ msgstr "رساله خاصه جديده من %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8034,7 +8924,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أحدهم إشعارى مفضله."
@@ -8044,7 +8934,7 @@ msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أح
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8066,7 +8956,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8076,7 +8966,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr ""
@@ -8087,7 +8977,7 @@ msgstr ""
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8114,21 +9004,17 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
#, fuzzy
msgid "Only the user can read their own mailboxes."
msgstr "يحق للمُرسل والمستلم فقط قراءه هذه الرساله."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr "من"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "تعذّر تحليل الرساله."
@@ -8156,38 +9042,6 @@ msgstr "نوع رساله مش مدعوم: %s"
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "فشل فى كتابه الملف إلى القرص."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8208,7 +9062,7 @@ msgstr "مش نافع يتحدد نوع الـMIME بتاع الفايل."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8217,7 +9071,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8252,18 +9106,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "أرسل"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "رسالة"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "من"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8283,11 +9146,11 @@ msgstr "أرسل إشعارًا"
msgid "What's up, %s?"
msgstr "ما الأخبار يا %s؟"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "أرفق"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "أرفق ملفًا"
@@ -8306,55 +9169,59 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "ش"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "ج"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "ر"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "غ"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "في"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "فى السياق"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "متكرر من"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "رُد على هذا الإشعار"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "رُد"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "احذف هذا الإشعار"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "الإشعار مكرر"
@@ -8392,77 +9259,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "تعذّر إدراج اشتراك جديد."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "شخصية"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "الردود"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "الملف الشخصي"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "المفضلات"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "صندوق الوارد"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "رسائلك الواردة"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "صندوق الصادر"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "رسائلك المُرسلة"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, fuzzy, php-format
msgid "Tags in %s's notices"
msgstr "ليس للمستخدم إشعار أخير"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "مش معروف"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "الاشتراكات"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "جميع الاشتراكات"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "المشتركون"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "جميع المشتركين"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "هويه المستخدم"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "عضو منذ"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "مجموعات"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "كل المجموعات"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8509,7 +9412,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "امنع هذا المستخدم من هذه المجموعة"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "الـ API method مش موجوده."
@@ -8601,6 +9504,10 @@ msgstr "ادعُ"
msgid "Invite friends and colleagues to join you on %s"
msgstr ""
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "اشترك بهذا المستخدم"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8718,66 +9625,83 @@ msgstr "ألغِ الاشتراك"
msgid "User %1$s (%2$d) has no profile record."
msgstr "ليس للمستخدم ملف شخصى."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "عدّل الأفتار"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "تصرفات المستخدم"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "عدّل إعدادات الملف الشخصي"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "عدّل"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "أرسل رساله مباشره إلى هذا المستخدم"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "رسالة"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr ""
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
#, fuzzy
msgid "User role"
msgstr "ملف المستخدم الشخصي"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
#, fuzzy
msgctxt "role"
msgid "Administrator"
msgstr "الإداريون"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr ""
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "لست والجًا."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "قبل لحظات قليلة"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "قبل دقيقه تقريبًا"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8789,12 +9713,12 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "قبل ساعه تقريبًا"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8806,12 +9730,12 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "قبل يوم تقريبا"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8823,12 +9747,12 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "قبل شهر تقريبًا"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8840,18 +9764,13 @@ msgstr[4] ""
msgstr[5] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "قبل سنه تقريبًا"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s ليس لونًا صحيحًا!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s ليس لونًا صحيحًا!"
@@ -8876,36 +9795,18 @@ msgstr[4] "هذا الملف كبير جدًا. إن أقصى حجم للملف
msgstr[5] "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "حجم غير صالح."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "ما فيش ID متحدد لليوزر."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po
index bb1f0c3e0f..426ad4e95b 100644
--- a/locale/bg/LC_MESSAGES/statusnet.po
+++ b/locale/bg/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Bulgarian (Български)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: DCLXVI
# Author: Turin
@@ -10,17 +10,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:26+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:09+0000\n"
"Language-Team: Bulgarian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: bg\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -75,8 +75,9 @@ msgid "Save access settings"
msgstr "Запазване настройките за достъп"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -86,13 +87,13 @@ msgstr "Запазване настройките за достъп"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Запазване"
@@ -100,7 +101,7 @@ msgstr "Запазване"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Няма такака страница."
@@ -110,6 +111,8 @@ msgstr "Няма такака страница."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -125,13 +128,23 @@ msgstr "Няма такака страница."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -139,15 +152,15 @@ msgstr "Няма такака страница."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Няма такъв потребител"
@@ -161,9 +174,10 @@ msgstr "%1$s и приятели, страница %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s и приятели"
@@ -270,7 +284,7 @@ msgstr "Бележки от %1$s и приятели в %2$s."
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -302,7 +316,21 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Грешка при обновяване на потребителя."
@@ -312,18 +340,23 @@ msgstr "Грешка при обновяване на потребителя."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Потребителят няма профил."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Грешка при запазване на профила."
@@ -333,8 +366,8 @@ msgstr "Грешка при запазване на профила."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -350,13 +383,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
#, fuzzy
msgid "Unable to save your design settings."
msgstr "Грешка при записване настройките за Twitter"
@@ -365,49 +399,60 @@ msgstr "Грешка при записване настройките за Twitt
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
#, fuzzy
msgid "Could not update your design."
msgstr "Грешка при обновяване на потребителя."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Поток на %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Абонаменти на %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "Любими"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "Членове на групата %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Не можете да блокирате себе си!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Грешка при блокиране на потребителя."
@@ -463,7 +508,8 @@ msgstr "Получателят не е открит"
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Не може да изпращате преки съобщения до хора, които не са в списъка ви с "
"приятели."
@@ -491,8 +537,9 @@ msgid "This status is already a favorite."
msgstr "Тази бележка вече е отбелязана като любима."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Грешка при отбелязване като любима."
@@ -502,7 +549,8 @@ msgid "That status is not a favorite."
msgstr "Тази бележка не е отбелязана като любима."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Грешка при изтриване на любима бележка."
@@ -548,9 +596,9 @@ msgstr "Целевият потребител не беше открит."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Опитайте друг псевдоним, този вече е зает."
@@ -558,21 +606,22 @@ msgstr "Опитайте друг псевдоним, този вече е за
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Неправилен псевдоним."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Адресът на личната страница не е правилен URL."
@@ -580,9 +629,9 @@ msgstr "Адресът на личната страница не е правил
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "Пълното име е твърде дълго (макс. 255 знака)"
@@ -590,14 +639,15 @@ msgstr "Пълното име е твърде дълго (макс. 255 знак
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -608,9 +658,9 @@ msgstr[1] "Описанието е твърде дълго (до %d символ
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "Името на местоположението е твърде дълго (макс. 255 знака)."
@@ -621,8 +671,8 @@ msgstr "Името на местоположението е твърде дъл
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -639,18 +689,16 @@ msgstr "Неправилен псевдоним: \"%s\""
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Псевдонимът \"%s\" вече е зает. Опитайте друг."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -661,29 +709,33 @@ msgstr ""
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Групата не е открита."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Вече членувате в тази група."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
#, fuzzy
msgid "You have been blocked from that group by the admin."
msgstr "Не сте блокирали този потребител."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Грешка при обновяване на групата."
@@ -695,9 +747,11 @@ msgstr "Не членувате в тази група."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -735,7 +789,7 @@ msgid "Upload failed."
msgstr "Качване на файл"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "Не е указана бележка."
@@ -758,20 +812,25 @@ msgid "Request token already authorized."
msgstr "Не сте абонирани за никого."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Имаше проблем със сесията ви в сайта. Моля, опитайте отново!"
@@ -789,18 +848,22 @@ msgstr "Грешка в базата от данни — отговор при
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Неочаквано изпращане на форма."
@@ -845,29 +908,31 @@ msgstr "Сметка"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Псевдоним"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Парола"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -940,6 +1005,7 @@ msgstr "Не може да изтривате бележки на друг по
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -959,39 +1025,52 @@ msgstr "Не можете да повтаряте собствени бележ
msgid "Already repeated that notice."
msgstr "Вече сте повторили тази бележка."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Не е открит методът в API."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Неподдържан формат."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Бележката е изтрита."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Не е открита бележка с такъв идентификатор."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Грешка при изтриване на бележката."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Изтриване на бележката"
@@ -1049,7 +1128,7 @@ msgstr "%1$s реплики на съобщения от %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Грешка при обновяване на групата."
@@ -1070,13 +1149,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s реплики на съобщения от %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Общ поток на %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr ""
@@ -1125,202 +1205,269 @@ msgstr "Само потребителят може да отваря собст
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Търсене в съдържанието на бележките"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Не е открита бележка с такъв идентификатор."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Методът в API все още се разработва."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Не е открит методът в API."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Няма такъв профил."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Бележки от %1$s и приятели в %2$s."
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Грешка при добавяне на нов абонамент."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Търсене в съдържанието на бележките"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Търсене в съдържанието на бележките"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Непознато"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Добавяне към любимите"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Няма такъв профил."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "Членове на групата %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Групи, в които участва %s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Грешка при добавяне на нов абонамент."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Търсене в съдържанието на бележките"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Непознато"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Всички членове"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Няма такъв файл."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Грешка при изтриване на любима бележка."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Няма такава група"
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Всички членове"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Не е открит методът в API."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Няма такъв профил."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Не сте абонирани за този профил"
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Грешка при добавяне на нов абонамент."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Няма такъв профил."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Не сте абонирани за този профил"
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Грешка при добавяне на нов абонамент."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Абонирани за %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Неподдържан вид файл"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Не сте абонирани!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1329,11 +1476,15 @@ msgstr "Няма прикачени файлове."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Няма псевдоним."
@@ -1350,7 +1501,7 @@ msgstr "Неправилен размер."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Аватар"
@@ -1364,42 +1515,52 @@ msgstr ""
"Можете да качите личен аватар тук. Максималната големина на файла е %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Потребителят няма профил."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Настройки за аватар"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Оригинал"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Преглед"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Изтриване"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1417,31 +1578,72 @@ msgstr "Изрязване"
msgid "No file uploaded."
msgstr "Няма качен файл."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Изберете квадратна област от изображението за аватар"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr ""
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Аватарът е обновен."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Неуспешно обновяване на аватара."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Аватарът е изтрит."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Само влезли потребители могат да повтарят бележки."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Фон"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1449,7 +1651,8 @@ msgstr "Вече сте блокирали този потребител."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Блокиране на потребителя"
@@ -1469,15 +1672,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Не"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Да не се блокира този потребител"
#. TRANS: Button label on the user block form.
@@ -1488,15 +1691,15 @@ msgstr "Да не се блокира този потребител"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Да"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Блокиране на потребителя"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1504,31 +1707,6 @@ msgstr "Блокиране на потребителя"
msgid "Failed to save block information."
msgstr "Грешка при записване данните за блокирането."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Няма такава група"
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1600,23 +1778,6 @@ msgstr "Неразпознат вид адрес %s"
msgid "That address has already been confirmed."
msgstr "Този адрес е вече потвърден."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Грешка при обновяване на потребителя."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1642,11 +1803,85 @@ msgid "Conversation"
msgstr "Разговор"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Бележки"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Само влезли потребители могат да повтарят бележки."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Не можете да изтривате потребители."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Аватарът е изтрит."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Създаване на нова сметка"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Потвърждаване"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Не можете да изтривате потребители."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Не можете да изтривате потребители."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1660,14 +1895,14 @@ msgstr "Приложението не е открито."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Не сте собственик на това приложение."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Имаше проблем със сесията ви в сайта."
@@ -1687,12 +1922,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Да не се изтрива приложението"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Изтриване на това приложение"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1702,8 +1939,10 @@ msgid "You must be logged in to delete a group."
msgstr "За напуснете група, трябва да сте влезли."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
#, fuzzy
msgid "No nickname or ID."
msgstr "Няма псевдоним."
@@ -1746,25 +1985,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "Да не се изтрива бележката"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "Изтриване на този потребител"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Не сте влезли в системата."
@@ -1789,111 +2034,148 @@ msgstr "Наистина ли искате да изтриете тази бел
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Да не се изтрива бележката"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Изтриване на бележката"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Не можете да изтривате потребители."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Може да изтривате само локални потребители."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Изтриване на потребител"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Изтриване на потребител"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Да не се изтрива бележката"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Изтриване на този потребител"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
#, fuzzy
msgid "Design"
msgstr "Версия"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
#, fuzzy
msgid "Invalid logo URL."
msgstr "Неправилен размер."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "Неправилен размер."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, fuzzy, php-format
msgid "Theme not available: %s."
msgstr "Страницата не е достъпна във вида медия, който приемате"
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Смяна на логото"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Лого на сайта"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "Лого на сайта"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
#, fuzzy
msgid "Change theme"
msgstr "Промяна"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Път до сайта"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
#, fuzzy
msgid "Theme for the site."
msgstr "Излизане от сайта"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
#, fuzzy
msgid "Custom theme"
msgstr "Нова бележка"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Смяна на изображението за фон"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Фон"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1903,101 +2185,108 @@ msgstr ""
"2MB."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Вкл."
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Изкл."
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
#, fuzzy
msgid "Turn background image on or off."
msgstr "Смяна на изображението за фон"
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
#, fuzzy
msgid "Tile background image"
msgstr "Смяна на изображението за фон"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Смяна на цветовете"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Съдържание"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Страничен панел"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Текст"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Лиценз"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr ""
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr ""
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
-msgstr ""
-
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
-msgstr ""
-
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Запазване"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
#, fuzzy
-msgid "Save design"
+msgid "Restore default designs."
+msgstr "Грешка при записване настройките за Twitter"
+
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr ""
+
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Запазване настройките на сайта"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Тази бележка не е отбелязана като любима!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Добавяне към любимите"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Няма такава бележка."
#. TRANS: Title for "Edit application" form.
@@ -2013,7 +2302,7 @@ msgid "You must be logged in to edit an application."
msgstr "За да редактирате приложение, трябва да сте влезли."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Няма такова приложение."
@@ -2024,67 +2313,77 @@ msgid "Use this form to edit your application."
msgstr "Използвайте тази бланка за създаване на нова група."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Името е задължително."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "Пълното име е твърде дълго (макс. 255 знака)"
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
#, fuzzy
msgid "Name already in use. Try another one."
msgstr "Опитайте друг псевдоним, този вече е зает."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Описанието е задължително."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Изходният адрес е твърде дълъг."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
#, fuzzy
msgid "Source URL is not valid."
msgstr "Адресът на личната страница не е правилен URL."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
#, fuzzy
msgid "Organization is required."
msgstr "Описанието е задължително."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "Името на организацията е твърде дълго (макс. 255 знака)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
#, fuzzy
msgid "Organization homepage is required."
msgstr "Описанието е задължително."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
#, fuzzy
msgid "Could not update application."
msgstr "Грешка при обновяване на групата."
@@ -2096,14 +2395,17 @@ msgid "Edit %s group"
msgstr "Редактиране на групата %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "За да създавате група, трябва да сте влезли."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "За да редактирате група, трябва да сте влезли."
@@ -2115,64 +2417,66 @@ msgstr "Използвайте тази бланка за създаване н
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Неправилен псевдоним: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Грешка при обновяване на групата."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
#, fuzzy
msgid "Could not create aliases."
msgstr "Грешка при отбелязване като любима."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Настройките са запазени."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Настройки на е-поща"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Управление на пощата, идваща от %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Адрес на е-поща"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Текущ потвърден адрес на е-поща."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Премахване"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2185,44 +2489,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Адрес на е-поща, като \"UserName@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Добавяне"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Входяща поща"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Искам да изпращам бележки по пощата."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Изпратете писмо до този адрес за публикуване като бележка."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2230,89 +2534,91 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
#, fuzzy
msgctxt "BUTTON"
msgid "New"
msgstr "Ново"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Настройки на е-поща"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Изпращане на уведомления за нови абонаменти по пощата."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Изпращане на писмо при отбелязване на моя бележка като любима."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Изпращане на писмо при ново лично съобщение."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
#, fuzzy
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Изпращане на писмо при ново лично съобщение."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Публикуване на MicroID за адреса на е-пощата."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Настройките на е-поща са запазени."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Не е въведена е-поща."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Грешка при нормализиране адреса на е-пощата"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Неправилен адрес на е-поща."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Това и сега е адресът на е-пощата ви."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Тази е-поща вече се използва от друг потребител."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Не може да се вмъкне код за потвърждение."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2322,243 +2628,305 @@ msgstr ""
"му."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Няма потвърждения, очакващи да бъдат отказани."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
#, fuzzy
msgid "That is the wrong email address."
msgstr "Грешен IM адрес."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Грешка при изтриване потвърждението по е-поща."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Няма потвърждения, очакващи да бъдат отказани."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Това не е вашият адрес на е-поща."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Входящият адрес на е-поща е премахнат."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Няма входящ адрес на е-поща."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Грешка при обновяване записа на потребител."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Входящият адрес на е-поща е премахнат."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Добавен е нов входящ адрес на е-поща."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Тази бележка вече е отбелязана като любима!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Добавяне към любимите"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Популярни бележки"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Популярни бележки, страница %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Най-популярните бележки в момента в сайта."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Любими бележки на %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, fuzzy, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Бележки от %1$s в %2$s."
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Избрани потребители"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Избрани потребители, страница %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
+msgid "A selection of some great users on %s."
msgstr ""
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Липсва ID на бележка."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Липсва бележка."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Няма прикачени файлове."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Няма прикачени файлове."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Неочакван отговор."
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
#, fuzzy
msgid "User being listened to does not exist."
msgstr "Потребителят, когото проследявате, не съществува. "
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Можете да ползвате локален абонамент!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Потребителят е забранил да се абонирате за него."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Не сте абонирани за никого."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
#, fuzzy
msgid "Could not convert request token to access token."
msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
#, fuzzy
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Непозната версия на протокола OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
#, fuzzy
msgid "Error updating remote profile."
msgstr "Грешка при обновяване на отдалечен профил"
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Няма такъв файл."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Грешка при четене на файла."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
#, fuzzy
msgid "Invalid role."
msgstr "Неправилен размер."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Не можете да заглушавате потребители на този сайт."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
#, fuzzy
msgid "User already has this role."
msgstr "Потребителят вече е заглушен."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Не е указан профил."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Не е открит профил с такъв идентификатор."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Не е указана група."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Само администратор може да блокира членове от групата."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Потребителят вече е блокиран за групата."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Потребителят не членува в групата."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Разблокиране на потребителя от групата"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2567,165 +2935,194 @@ msgid ""
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Да не се блокира този потребител"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Разблокиране на потребителя от групата"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
#, fuzzy
msgid "Database error blocking user from group."
msgstr "Разблокиране на потребителя от групата"
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Липсва ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "За да редактирате група, трябва да сте влезли."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
#, fuzzy
msgid "Group design"
msgstr "Групи"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
#, fuzzy
-msgid "Couldn't update your design."
-msgstr "Грешка при обновяване на потребителя."
+msgid "Unable to update your design settings."
+msgstr "Грешка при записване настройките за Twitter"
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Настройките на е-поща са запазени."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Лого на групата"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr ""
"Можете да качите личен аватар тук. Максималната големина на файла е %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Качване"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Изрязване"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
#, fuzzy
msgid "Pick a square area of the image to be the logo."
msgstr "Изберете квадратна област от изображението за аватар"
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Лотого е обновено."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Неуспешно обновяване на логото."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Членове на групата %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Абонати на %1$s, страница %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Списък с потребителите в тази група."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Настройки"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Блокиране"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Блокиране на този потребител"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
#, fuzzy
msgid "Make user an admin of the group"
msgstr "За да редактирате групата, трябва да сте й администратор."
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, fuzzy, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Бележки от %1$s в %2$s."
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Групи"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Групи, страница %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Създаване на нова група"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, fuzzy, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2734,23 +3131,31 @@ msgstr ""
"Търсене на хора в %%site.name%% по техните име, място или интереси. "
"Отделяйте фразите за "
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Търсене на групи"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Няма резултати."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2758,137 +3163,147 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
#, fuzzy
msgid "Only an admin can unblock group members."
msgstr "Само администратор може да блокира членове от групата."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Потребителят вече е блокиран за групата."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Грешка при повтаряне на бележката."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Настройки за SMS"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%"
"%). Въведете адреса си в настройките по-долу."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
#, fuzzy
msgid "IM is not available."
msgstr "Страницата не е достъпна във вида медия, който приемате"
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Адрес на е-поща"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Текущ потвърден Jabber/GTalk адрес."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Oчаква се потвърждение на този адрес. Проверете акаунта си в Jabber/GTalk за "
"съобщение с инструкции. (Добавихте ли %s в списъка си там?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber или GTalk адрес, като \"UserName@example.org\". Първо се уверете, че "
"сте добавили %s в списъка си с приятели в IM или GTalk клиента си."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Настройки на е-поща"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Изпращане на бележките по Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Публикуване промяната на състоянието ми в Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr "Изпращане по Jabber/GTalk на отговори от хора, "
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Публикуване на MicroID за адреса в Jabber/GTalk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Настройките са запазени."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Няма Jabber ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Грешка при нормализация на този Jabber ID"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Неправилен Jabber ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Това вече е вашият Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Този Jabber ID принадлежи на друг потребител."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2897,74 +3312,79 @@ msgstr ""
"На месинджъра ви е изпратен код за потвърждение. За да получавате съобщения "
"от %s, трябва да го одобрите."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Грешен IM адрес."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
#, fuzzy
-msgid "Couldn't delete IM confirmation."
+msgid "Could not delete IM confirmation."
msgstr "Грешка при изтриване потвърждението по е-поща."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Няма код за потвърждение."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Това не е вашият Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Входящият адрес на е-поща е премахнат."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "%1$s, страница %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Входяща кутия за %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "Това е входящата ви кутия с лични съобщения от други потребители."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Поканите са изключени."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "За да редактирате група, трябва да сте влезли."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Неправилен адрес на е-поща: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Поканите са изпратени."
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Покани за нови потребители"
@@ -2972,7 +3392,7 @@ msgstr "Покани за нови потребители"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2981,7 +3401,7 @@ msgstr[1] "Вече сте абонирани за следните потреб
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2990,7 +3410,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3001,7 +3421,7 @@ msgstr[1] "Тези хора са потребители тук и автома
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3010,7 +3430,7 @@ msgstr[1] "Изпратени са покани до следните хора:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3019,7 +3439,7 @@ msgstr ""
"увеличаването на общността тук!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3027,27 +3447,28 @@ msgstr ""
"услугата на сайта."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Адреси на е-поща"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Адреси на приятели, които каните (по един на ред)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Лично съобщение"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Може да добавите и лично съобщение към поканата."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
#, fuzzy
msgctxt "BUTTON"
msgid "Send"
@@ -3056,7 +3477,7 @@ msgstr "Прати"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s ви кани да ползвате заедно %2$s"
@@ -3066,7 +3487,7 @@ msgstr "%1$s ви кани да ползвате заедно %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3123,168 +3544,184 @@ msgstr ""
"\n"
"Искрено ваши, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "За да се присъедините към група, трябва да сте влезли."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s напусна групата %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "За напуснете група, трябва да сте влезли."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Не членувате в тази група."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s напусна групата %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Лиценз"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Името на местоположението е твърде дълго (макс. 255 знака)."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Частен"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Всички права запазени"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Запазване"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Вече сте влезли."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Грешно име или парола."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
#, fuzzy
msgid "Error setting user. You are probably not authorized."
msgstr "Забранено."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Вход"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Вход в сайта"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Запомни ме"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "Автоматично влизане занапред. Да не се ползва на общи компютри!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Загубена или забравена парола"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3292,12 +3729,12 @@ msgstr ""
"За по-голяма сигурност, моля въведете отново потребителското си име и парола "
"при промяна на настройките."
-#: actions/login.php:292
+#: actions/login.php:281
#, fuzzy
msgid "Login with your username and password."
msgstr "Вход с име и парола"
-#: actions/login.php:295
+#: actions/login.php:284
#, fuzzy, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3337,21 +3774,24 @@ msgid "New application"
msgstr "Ново приложение"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "За да редактирате приложение, трябва да сте влезли."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
#, fuzzy
msgid "Use this form to register a new application."
msgstr "Използвайте тази бланка за създаване на нова група."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
#, fuzzy
msgid "Source URL is required."
msgstr "Името е задължително."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
#, fuzzy
msgid "Could not create application."
msgstr "Грешка при отбелязване като любима."
@@ -3361,11 +3801,22 @@ msgstr "Грешка при отбелязване като любима."
msgid "New group"
msgstr "Нова група"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Не членувате в тази група."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Използвайте тази бланка за създаване на нова група."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Ново съобщение"
@@ -3417,7 +3868,9 @@ msgstr "Нова бележка"
msgid "Notice posted"
msgstr "Бележката е публикувана"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3426,37 +3879,47 @@ msgstr ""
"Търсене на бележки в %%site.name%% по съдържанието им. Отделяйте фразите за "
"търсене (трябва да са по-дълги от 3 символа) с интервали."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Търсене на текст"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Съобщение от %1$s в %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, 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:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Бележки, съдържащи \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Бележки, съдържащи търсеното \"%1$s\" в %2$s!"
#: actions/nudge.php:85
@@ -3495,31 +3958,31 @@ msgid "You have not registered any applications yet."
msgstr "Не сте собственик на това приложение."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
#, fuzzy
msgid "Connected applications"
msgstr "Изтриване на приложението"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Не сте собственик на това приложение."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Използвайте тази бланка за създаване на нова група."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3527,20 +3990,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Не е открит методът в API."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Не е открит методът в API."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Потребителят няма профил."
@@ -3550,6 +4023,16 @@ msgstr "Потребителят няма профил."
msgid "%1$s's status on %2$s"
msgstr "Бележка на %1$s от %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Получателят не е открит"
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3563,16 +4046,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Неподдържан формат на данните"
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Търсене на хора"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Търсене на бележки"
@@ -3586,71 +4070,82 @@ msgid "Manage various other options."
msgstr "Управление на различни други настройки."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (безплатна услуга)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Съкращаване на адресите с"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Услуга за автоматично съкращаване, която да се ползва."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Редактиране на профила"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr ""
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Услугата за съкращаване е твърде дълга (може да е до 50 знака)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
#, fuzzy
msgid "No user ID specified."
msgstr "Не е указана група."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
#, fuzzy
msgid "No login token specified."
msgstr "Не е указана бележка."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Няма заявка за одобрение."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Не е указана бележка."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Вход в сайта"
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "%1$s, страница %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Изходяща кутия за %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "Това е изходящата ви кутия с лични съобщения до други потребители."
@@ -3662,7 +4157,8 @@ msgstr "Смяна на паролата"
msgid "Change your password."
msgstr "Смяна на паролата."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
#, fuzzy
msgid "Password change"
msgstr "Паролата е записана."
@@ -3671,48 +4167,50 @@ msgstr "Паролата е записана."
msgid "Old password"
msgstr "Стара парола"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Нова парола"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 или повече знака"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Потвърждаване"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Също като паролата по-горе"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Промяна"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Паролата трябва да е 6 или повече знака."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Паролите не съвпадат."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Грешна стара парола"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Грешка при запазване на потребител — невалидност."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Грешка при запазване на новата парола."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Паролата е записана."
@@ -3926,7 +4424,7 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
#, fuzzy
msgid "Attachments"
msgstr "Няма прикачени файлове."
@@ -3999,7 +4497,9 @@ msgstr ""
msgid "Save paths"
msgstr "Запазване на пътищата"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4008,7 +4508,8 @@ msgstr ""
"Търсене на хора в %%site.name%% по техните име, място или интереси. "
"Отделяйте фразите за "
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Търсене на хора"
@@ -4032,44 +4533,45 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Настройки на профила"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr "Можете да обновите личния си профил, за да знаят хората повече за вас."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Данни на профила"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Пълно име"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Лична страница"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "Адрес на личната ви страница, блог или профил в друг сайт"
@@ -4077,7 +4579,7 @@ msgstr "Адрес на личната ви страница, блог или п
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4085,72 +4587,78 @@ msgstr[0] "Опишете себе си и интересите си в до %d
msgstr[1] "Опишете себе си и интересите си в до %d букви"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Опишете себе си и интересите си"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "За мен"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Местоположение"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Къде се намирате (град, община, държава и т.н.)"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Етикети"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Език"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Предпочитан език"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Часови пояс"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "В кой часови пояс сте обикновено?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Автоматично абониране за всеки, който се абонира за мен (подходящо за "
"ботове)."
@@ -4158,7 +4666,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4166,52 +4674,54 @@ msgstr[0] "Биографията е твърде дълга (до %d симво
msgstr[1] "Биографията е твърде дълга (до %d символа)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Не е избран часови пояс"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Името на езика е твърде дълго (може да е до 50 знака)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Неправилен етикет: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
+#: actions/profilesettings.php:347
#, fuzzy
-msgid "Couldn't update user for autosubscribe."
+msgid "Could not update user for autosubscribe."
msgstr "Грешка при обновяване записа на потребител."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
+#: actions/profilesettings.php:405
#, fuzzy
-msgid "Couldn't save location prefs."
+msgid "Could not save location prefs."
msgstr "Грешка при запазване етикетите."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Грешка при запазване на профила."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "Грешка при запазване етикетите."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Грешка при запазване на етикетите."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Настройките са запазени."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Създаване на нова сметка"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4276,6 +4786,12 @@ msgid ""
"tool."
msgstr ""
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, php-format
+msgid "%s updates from everyone."
+msgstr ""
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4319,35 +4835,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Смяна на цветовете"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Вече сте влезли!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Няма такъв код за възстановяване."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Това не е код за възстановяване."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Код за възстановяване на непознат потребител."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Грешка в кода за потвърждение."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Кодът за потвърждение е твърде стар. Започнете процеса отново."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Грешка при обновяване на потребител с потвърден email адрес."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
#, fuzzy
msgid ""
"If you have forgotten or lost your password, you can get a new one sent to "
@@ -4356,67 +4880,100 @@ msgstr ""
"На е-пощата, с която сте регистрирани са изпратени инструкции за "
"възстановяване на паролата."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Възстановяване на парола"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Псевдоним или е-поща"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Псевдонимът ви на този сървър или е-пощата, с която сте регистрирани."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Възстановяване"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Възстановяване"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Нова парола"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Възстановяване на паролата"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Поискано е възстановяване на парола"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Паролата е записана."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Непознато действие"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 или повече знака. И не ги забравяйте!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Обновяване"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Въведете псевдоним или е-поща."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Няма потребител с такава е-поща или потребителско име."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Няма указана е-поща за този потребител."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Грешка при запазване на потвърждение за адрес"
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4424,128 +4981,123 @@ msgstr ""
"На е-пощата, с която сте регистрирани са изпратени инструкции за "
"възстановяване на паролата."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Неочаквано подновяване на паролата."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Паролата трябва да е от поне 6 знака."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Паролата и потвърждението й не съвпадат."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Грешка в настройките на потребителя."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Новата парола е запазена. Влязохте успешно."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr ""
-#: actions/register.php:99
+#: actions/register.php:94
#, fuzzy
msgid "Sorry, invalid invitation code."
msgstr "Грешка в кода за потвърждение."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Записването е успешно."
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Регистриране"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Записването не е позволено."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Не можете да се регистрате, ако не сте съгласни с лиценза."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Адресът на е-поща вече се използва."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Неправилно име или парола."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"От 1 до 64 малки букви или цифри, без пунктоация и интервали. Задължително "
-"поле."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 или повече знака. Задължително поле."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Същото като паролата по-горе. Задължително поле."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Е-поща"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Използва се само за промени, обяви или възстановяване на паролата"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "По-дълго име, за предпочитане \"истинското\" ви име."
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "Адрес на личната ви страница, блог или профил в друг сайт"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Къде се намирате (град, община, държава и т.н.)"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Всички права запазени."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, fuzzy, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4578,7 +5130,7 @@ msgstr ""
"Благодарим, че се включихте в сайта и дано ползването на услугата ви носи "
"само приятни мигове!"
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4586,7 +5138,7 @@ msgstr ""
"(Трябва да получите веднага електронно писмо с указания за потвърждаване "
"адреса на е-пощата ви.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4598,79 +5150,87 @@ msgstr ""
"[подобна услуга за микроблогване](%%doc.openmublog%%), въведете адреса на "
"профила си в нея по-долу."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Отдалечен абонамент"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Абониране за отдалечен потребител"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Потребителски псевдоним"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Псевдоним на потребител, когото искате да следите"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Адрес на профила"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Абониране"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Неправилен адрес на профил (грешен формат)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Неправилен адрес на профил (няма документ YADIS или XRDS е неправилен)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Това е локален профил! Влезте, за да се абонирате."
-#: actions/remotesubscribe.php:183
+#: actions/remotesubscribe.php:182
#, fuzzy
-msgid "Couldn’t get a request token."
+msgid "Could not get a request token."
msgstr "Не е получен token за одобрение."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Само влезли потребители могат да повтарят бележки."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Не е указана бележка."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Не можете да повтаряте собствена бележка."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Вече сте повторили тази бележка."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Повторено"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Повторено!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Отговори на %s"
@@ -4716,11 +5276,102 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Отговори до %1$s в %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Само влезли потребители могат да повтарят бележки."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Не сте собственик на това приложение."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Качване на файл"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Липсва временна папка."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Грешка при записване файла на диска."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Системна грешка при качване на файл."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Всички членове"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Качване на файл"
+
#: actions/revokerole.php:75
#, fuzzy
msgid "You cannot revoke user roles on this site."
@@ -4731,7 +5382,7 @@ msgstr "Не можете да заглушавате потребители н
msgid "User doesn't have this role."
msgstr "Потребител без съответстващ профил"
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4773,135 +5424,149 @@ msgstr ""
msgid "Save site settings"
msgstr "Запазване настройките на сайта"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "За прегледате приложение, трябва да сте влезли."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Профил на приложението"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Икона"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Име"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Организация"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Описание"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Статистики"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
#, fuzzy
msgid "Application actions"
msgstr "Данни за приложението"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Изтриване"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Данни за приложението"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
#, fuzzy
msgid "Authorize URL"
msgstr "Автор"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Наистина ли искате да изтриете тази бележка?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Любими бележки на %1$s, страница %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Грешка при изтегляне на любимите бележки"
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Емисия с приятелите на %s"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Емисия с приятелите на %s"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Емисия с приятелите на %s"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4909,7 +5574,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Така можете да споделите какво харесвате."
@@ -4927,83 +5593,90 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s, страница %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Профил на групата"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Бележка"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Псевдоними"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
#, fuzzy
msgid "Group actions"
msgstr "Потребителски действия"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Емисия с бележки на %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Емисия с бележки на %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Емисия с бележки на %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Изходяща кутия за %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Членове"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Без)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Всички членове"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Създадена на"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5013,7 +5686,7 @@ msgstr "Членове"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5026,7 +5699,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5036,30 +5709,30 @@ msgid ""
msgstr ""
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Администратори"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Няма такова съобщение"
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Само подателят и получателят могат да четат това съобщение."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Съобщение до %1$s в %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Съобщение от %1$s в %2$s"
@@ -5075,7 +5748,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, страница %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5311,76 +5984,78 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Запазване настройките на сайта"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Настройки за SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Може да получавате на е-пощата си SMS-съобщения от %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
#, fuzzy
msgid "SMS is not available."
msgstr "Страницата не е достъпна във вида медия, който приемате"
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Адрес на е-поща"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Текущ потвърден телефонен номер за SMS-и."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Очаква се потвърждение за този телефонен номер."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Код за потвърждение"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Въведете кода, който получихте по телефона."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
#, fuzzy
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Потвърждаване"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Телефонен номер за SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Телефонен номер — с код, без пунктоация и без интервали."
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Настройки на е-поща"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5389,33 +6064,33 @@ msgstr ""
"такси от оператора."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
#, fuzzy
msgid "SMS preferences saved."
msgstr "Настройките са запазени."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Не е въведен телефонен номер."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Не е избран оператор."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Това и сега е номерът на телефона ви."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Този телефонен номер вече се използва от друг потребител."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5425,40 +6100,40 @@ msgstr ""
"му."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Този код за потвърждение е грешен."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Потвърждение за SMS"
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Това не е вашият телефонен номер."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
#, fuzzy
msgid "The SMS phone number was removed."
msgstr "Телефонен номер за SMS"
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Мобилен оператор"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Изберете оператор"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5468,8 +6143,9 @@ msgstr ""
"не фигурира тук, пишете ни на адрес %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Не е въведен код."
#. TRANS: Menu item for site administration
@@ -5543,16 +6219,20 @@ msgstr "Не сте абонирани за този профил"
msgid "Could not save subscription."
msgstr "Грешка при добавяне на нов абонамент."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Не сте абонирани за този профил"
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
#, fuzzy
msgid "Subscribed"
msgstr "Абониране"
@@ -5585,7 +6265,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Това са хората, които четат бележките на %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5593,7 +6273,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5603,7 +6283,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5634,7 +6314,7 @@ msgstr "Хора, чийто бележки %s чете."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5648,23 +6328,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s не получава ничии бележки."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Емисия с бележки на %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5697,12 +6378,15 @@ msgstr "Липсват аргументи return-to."
msgid "Tag %s"
msgstr "Етикети"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Потребителски профил"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Снимка"
@@ -5717,15 +6401,16 @@ msgid ""
"separated"
msgstr ""
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Неправилен етикет: \"%s\""
+
#: 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 ""
@@ -5734,6 +6419,7 @@ msgstr ""
msgid "No such tag."
msgstr "Няма такъв етикет."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Не сте блокирали този потребител."
@@ -5755,7 +6441,7 @@ msgstr "Не е открит профил с такъв идентификато
msgid "Unsubscribed"
msgstr "Отписване"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5786,12 +6472,11 @@ msgstr ""
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Профил"
@@ -5854,56 +6539,70 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Запазване настройките на сайта"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Одобряване на абонамента"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
#, 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”."
+"click \"Reject\"."
msgstr ""
"Проверете тези детайли и се уверете, че искате да се абонирате за бележките "
"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Лиценз"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Приемане"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Абониране за този потребител"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Охвърляне"
-#: actions/userauthorization.php:220
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
#, fuzzy
-msgid "Reject this subscription"
+msgid "Reject this subscription."
msgstr "Абонаменти на %s"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Няма заявка за одобрение."
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Абонаментът е одобрен"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
#, fuzzy
msgid ""
"The subscription has been authorized, but no callback URL was passed. Check "
@@ -5913,11 +6612,12 @@ msgstr ""
"Абонаментът е одобрен, но не е зададен callback URL. За да завършите "
"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Абонаментът е отказан"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
#, fuzzy
msgid ""
"The subscription has been rejected, but no callback URL was passed. Check "
@@ -5927,55 +6627,78 @@ msgstr ""
"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно "
"абонамента, проверете инструкциите на сайта."
-#: actions/userauthorization.php:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr ""
-
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
+msgid "Listenee URI \"%s\" is too long."
+msgstr "Изходният адрес е твърде дълъг."
+
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, php-format
+msgid "Listenee URI \"%s\" is a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, php-format
+msgid "Profile URL \"%s\" is for a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "Адресът на личната страница не е правилен URL."
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Грешка при четене адреса на аватара '%s'"
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Грешен вид изображение за '%s'"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
#, fuzzy
msgid "Profile design"
msgstr "Настройки на профила"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -6005,7 +6728,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Бележки от %1$s в %2$s."
@@ -6054,7 +6777,7 @@ msgid "Plugins"
msgstr "Приставки"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Версия"
@@ -6063,32 +6786,32 @@ msgid "Author(s)"
msgstr "Автор(и)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Любимо"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) отбеляза бележката ви като любима"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6101,7 +6824,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6110,7 +6833,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6118,7 +6841,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
#, fuzzy
msgid "Invalid filename."
msgstr "Неправилен размер."
@@ -6181,7 +6904,7 @@ msgid "Could not create login token for %s"
msgstr "Грешка при отбелязване като любима."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6209,24 +6932,24 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Грешка при вмъкване на аватар"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Проблем при записване на бележката."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Грешка при записване на бележката. Непознат потребител."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6234,7 +6957,7 @@ msgstr ""
"отново след няколко минути."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
#, fuzzy
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
@@ -6244,43 +6967,43 @@ msgstr ""
"отново след няколко минути."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Забранено ви е да публикувате бележки в този сайт."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Проблем при записване на бележката."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
#, fuzzy
msgid "Problem saving group inbox."
msgstr "Проблем при записване на бележката."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Грешка при запазване на етикетите."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6288,14 +7011,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6369,35 +7092,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Добре дошли в %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Грешка при създаване на групата."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Грешка при създаване на групата."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Грешка при създаване на групата."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Грешка при запазване на етикетите."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Не можете да изтривате потребители."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6435,217 +7179,220 @@ msgid "Other"
msgstr "Друго"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Неозаглавена страница"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
#, fuzzy
msgid "Primary site navigation"
msgstr "Основна настройка на сайта"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr ""
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Лично"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Промяна на поща, аватар, парола, профил"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Сметка"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Свързване към услуги"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Свързване"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Промяна настройките на сайта"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
#, fuzzy
msgctxt "MENU"
msgid "Admin"
msgstr "Настройки"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Поканете приятели и колеги да се присъединят към вас в %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
#, fuzzy
msgctxt "MENU"
msgid "Invite"
msgstr "Покани"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Излизане от сайта"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Изход"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Създаване на нова сметка"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Регистриране"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Влизане в сайта"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Вход"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
#, fuzzy
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Помощ"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Помощ"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Търсене за хора или бележки"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Търсене"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
#, fuzzy
msgid "Site notice"
msgstr "Нова бележка"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr ""
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
#, fuzzy
msgid "Page notice"
msgstr "Нова бележка"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Основна настройка на сайта"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Помощ"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Относно"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "Въпроси"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Условия"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Поверителност"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Изходен код"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Контакт"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Табелка"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Лиценз на програмата StatusNet"
@@ -6653,7 +7400,7 @@ msgstr "Лиценз на програмата StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, fuzzy, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6663,7 +7410,7 @@ msgstr ""
"broughtby%%](%%site.broughtbyurl%%). "
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** е услуга за микроблогване."
@@ -6672,7 +7419,7 @@ msgstr "**%%site.name%%** е услуга за микроблогване."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6684,50 +7431,50 @@ msgstr ""
"licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Лиценз на съдържанието"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Страниране"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "След"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Преди"
@@ -6736,10 +7483,80 @@ msgstr "Преди"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Непознат език \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Снимка"
+msgid "Cannot force remote user to subscribe."
+msgstr "Уточнете името на потребителя, за когото се абонирате."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Неподдържан вид файл"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Вече членувате в тази група."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Търсене в съдържанието на бележките"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Няма такъв потребител"
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6817,7 +7634,7 @@ msgid "User configuration"
msgstr "Настройка на пътищата"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Потребител"
@@ -6864,19 +7681,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6899,29 +7720,33 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Грешка при вмъкване на съобщението."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
#, fuzzy
msgid "Database error inserting OAuth application user."
msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
#, fuzzy
msgid "Icon for this application"
msgstr "Да не се изтрива приложението"
@@ -7037,17 +7862,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Премахване"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Да не се изтрива бележката"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Автор"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Доставчик"
@@ -7079,6 +7910,11 @@ msgstr "Паролата е записана."
msgid "Block"
msgstr "Блокиране"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Блокиране на потребителя"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7195,7 +8031,7 @@ msgstr "Пълно име: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Местоположение: %s"
@@ -7203,7 +8039,7 @@ msgstr "Местоположение: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Домашна страница: %s"
@@ -7442,26 +8278,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Не е открит файл с настройки. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Изпратени са покани до следните хора:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
#, fuzzy
msgid "Go to the installer."
msgstr "Влизане в сайта"
@@ -7507,14 +8343,19 @@ msgstr "Изтриване на приложението"
msgid "Database error"
msgstr "Грешка в базата от данни"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Изтриване на този потребител"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Качване на файл"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7535,26 +8376,76 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Изкл."
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Смяна на цветовете"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Обновяване"
+msgid "Save design"
+msgstr "Запазване настройките на сайта"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "Грешка при обновяване на потребителя."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr ""
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Използвайте тази бланка за създаване на нова група."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Отбелязване като любимо"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Добавяне към любимите"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Отбелязване като любимо"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Любимо"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7571,6 +8462,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Всички членове"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7605,34 +8509,34 @@ msgstr ""
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "Адрес на страница, блог или профил в друг сайт на групата"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Опишете групата или темата"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Опишете групата или темата в до %d букви"
msgstr[1] "Опишете групата или темата в до %d букви"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Къде се намира групата — град, община, държава и т.н. (ако е приложимо)"
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7737,40 +8641,41 @@ msgstr "Етикети в бележките към групата %s"
msgid "This page is not available in a media type you accept"
msgstr "Страницата не е достъпна във вида медия, който приемате"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Форматът на файла с изображението не се поддържа."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, fuzzy, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Може да качите лого за групата ви."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Частично качване на файла."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Системна грешка при качване на файл."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Файлът не е изображение или е повреден."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Няма такъв файл."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Неподдържан вид файл"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7778,7 +8683,7 @@ msgstr[0] "MB"
msgstr[1] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7786,7 +8691,7 @@ msgstr[0] "kB"
msgstr[1] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7807,23 +8712,25 @@ msgstr "Непознат език \"%s\"."
msgid "Leave"
msgstr "Напускане"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Вход с име и парола"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Създаване на нова сметка"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Потвърждаване адреса на е-поща"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7842,14 +8749,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s вече получава бележките ви в %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7861,7 +8768,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7888,14 +8795,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Биография: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Нов адрес на е-поща за публикщуване в %s"
@@ -7903,7 +8810,7 @@ msgstr "Нов адрес на е-поща за публикщуване в %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7918,34 +8825,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Състояние на %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Потвърждение за SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, fuzzy, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "Очаква се потвърждение за този телефонен номер."
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "Побутнати сте от %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7963,7 +8870,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Ново лично съобщение от %s"
@@ -7972,7 +8879,7 @@ msgstr "Ново лично съобщение от %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7993,7 +8900,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) отбеляза бележката ви като любима"
@@ -8003,7 +8910,7 @@ msgstr "%s (@%s) отбеляза бележката ви като любима"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8025,7 +8932,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8035,7 +8942,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) отбеляза бележката ви като любима"
@@ -8046,7 +8953,7 @@ msgstr "%s (@%s) отбеляза бележката ви като любима"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8073,20 +8980,16 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Само потребителят може да отваря собствената си кутия."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr "от"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Грешка при обработка на съобщението"
@@ -8113,38 +9016,6 @@ msgstr "Форматът на файла с изображението не се
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Липсва временна папка."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Грешка при записване файла на диска."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8165,7 +9036,7 @@ msgstr "Грешка при изтриване на любима бележка.
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8174,7 +9045,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8209,20 +9080,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Прати"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Съобщение"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "от"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Псевдонимът може да съдържа само малки букви, числа и никакво разстояние "
"между тях."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8238,11 +9118,11 @@ msgstr "Изпращане на бележка"
msgid "What's up, %s?"
msgstr "Какво става, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Прикрепяне"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Прикрепяне на файл"
@@ -8261,56 +9141,60 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "С"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "Ю"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "И"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "З"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
#, fuzzy
msgid "at"
msgstr "Път"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "в контекст"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Повторено от"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Отговаряне на тази бележка"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Отговор"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Изтриване на бележката"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Бележката е повторена."
@@ -8347,78 +9231,114 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "Грешка при добавяне на нов абонамент."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Лично"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Отговори"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Профил"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Любими"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Входящи"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Получените от вас съобщения"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Изходящи"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Изпратените от вас съобщения"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Етикети в бележките на %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Непознато"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Абонаменти"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Всички абонаменти"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Абонати"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Всички абонати"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
#, fuzzy
msgid "User ID"
msgstr "Потребител"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Участник от"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Групи"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Всички групи"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8465,7 +9385,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Списък с потребителите в тази група."
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Не е открит методът в API."
@@ -8558,6 +9478,10 @@ msgstr "Покани"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Поканете приятели и колеги да се присъединят към вас в %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Абониране за този потребител"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8672,65 +9596,82 @@ msgstr "Отписване"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Потребителят няма профил."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Редактиране на аватара"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Потребителски действия"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Редактиране на профила"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Редактиране"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Изпращате на пряко съобщение до този потребител."
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Съобщение"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
#, fuzzy
msgid "Moderate"
msgstr "Модератор"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Потребителска роля"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Администратор"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Модератор"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Не сте влезли в системата."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "преди няколко секунди"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "преди около минута"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8738,12 +9679,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "преди около час"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8751,12 +9692,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "преди около ден"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8764,12 +9705,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "преди около месец"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8777,18 +9718,13 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "преди около година"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s не е допустим цвят!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s не е допустим цвят! Използвайте 3 или 6 шестнадесетични знака."
@@ -8813,32 +9749,18 @@ msgstr[1] ""
"$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Неправилен размер."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Не е указана група."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po
index 7a98ba56b9..430e05af94 100644
--- a/locale/br/LC_MESSAGES/statusnet.po
+++ b/locale/br/LC_MESSAGES/statusnet.po
@@ -1,6 +1,7 @@
# Translation of StatusNet - Core to Breton (Brezhoneg)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
+# Author: Fohanno
# Author: Fulup
# Author: Gwendal
# Author: Y-M D
@@ -11,17 +12,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:27+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:13+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -77,8 +78,9 @@ msgid "Save access settings"
msgstr "Enrollañ an arventennoù moned"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -88,13 +90,13 @@ msgstr "Enrollañ an arventennoù moned"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Enrollañ"
@@ -102,7 +104,7 @@ msgstr "Enrollañ"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "N'eus ket eus ar bajenn-se."
@@ -112,6 +114,8 @@ msgstr "N'eus ket eus ar bajenn-se."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -127,13 +131,23 @@ msgstr "N'eus ket eus ar bajenn-se."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -141,15 +155,15 @@ msgstr "N'eus ket eus ar bajenn-se."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "N'eus ket eus an implijer-se."
@@ -163,9 +177,10 @@ msgstr "%1$s hag e vignoned, pajenn %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s hag e vignoned"
@@ -205,6 +220,8 @@ msgid ""
"Try subscribing to more people, [join a group](%%action.groups%%) or post "
"something yourself."
msgstr ""
+"Klaskit koumanantiñ da vuioc'h a dud, [lakaat hoc'h anv en ur strollad] (%%"
+"action.groups%%) pe postañ un dra bennak hoc'h-unan."
#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@".
#. TRANS: This message contains Markdown links. Keep "](" together.
@@ -276,7 +293,7 @@ msgstr "Hizivadennoù %1$s ha mignoned e %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -308,9 +325,23 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
-msgstr "Diposubl eo hizivaat an implijer."
+msgstr "Dibosupl hizivaat an implijer."
#. TRANS: Client error displayed if a user profile could not be found.
#. TRANS: Client error displayed when a user has no profile.
@@ -318,20 +349,25 @@ msgstr "Diposubl eo hizivaat an implijer."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "An implijer-mañ n'eus profil ebet dezhañ."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
-msgstr "Diposubl eo enrollañ ar profil."
+msgstr "Dibosupl eo enrollañ ar profil."
#. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
#. TRANS: %s is the number of bytes of the CONTENT_LENGTH.
@@ -339,8 +375,8 @@ msgstr "Diposubl eo enrollañ ar profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -356,13 +392,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Dibosupl eo enrollañ an arventennoù empentiñ."
@@ -370,48 +407,59 @@ msgstr "Dibosupl eo enrollañ an arventennoù empentiñ."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
-msgstr "Diposubl eo hizivat ho design."
+msgstr "Dibosupl eo hizivaat ho design."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
-msgstr ""
+msgstr "Pennañ"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Oberezhioù %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Koumanantoù %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Pennrolloù"
+msgstr "%s Pennrolloù"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
msgstr "Izili ar strollad %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "N'hallit ket en em stankañ hoc'h-unan !"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "N'eus ket bet tu da stankañ an implijer."
@@ -454,11 +502,11 @@ msgstr "Kemenadenn hep testenn !"
#. TRANS: Form validation error displayed when message content is too long.
#. TRANS: %d is the maximum number of characters for a message.
#: actions/apidirectmessagenew.php:127 actions/newmessage.php:152
-#, fuzzy, php-format
+#, php-format
msgid "That's too long. Maximum message size is %d character."
msgid_plural "That's too long. Maximum message size is %d characters."
-msgstr[0] "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn."
-msgstr[1] "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn."
+msgstr[0] "Re hir eo. %d arouezenn a c'hall bezañ er gemennadenn d'ar muiañ."
+msgstr[1] "Re hir eo. %d arouezenn a c'hall bezañ er gemennadenn d'ar muiañ."
#. TRANS: Client error displayed if a recipient user could not be found (403).
#: actions/apidirectmessagenew.php:139
@@ -467,19 +515,19 @@ msgstr "N'eo ket bet kavet ar resever."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Ne c'helloc'h ket kas kemennadennoù personel d'an implijerien n'int ket ho "
"mignoned."
#. TRANS: Client error displayed trying to direct message self (403).
#: actions/apidirectmessagenew.php:154
-#, fuzzy
msgid ""
"Do not send a message to yourself; just say it to yourself quietly instead."
msgstr ""
"Na gasit ket a gemennadenn deoc'h c'hwi ho unan ; lavarit an traoù-se en ho "
-"penn kentoc'h."
+"penn kentoc'h..."
#. TRANS: Client error displayed when requesting a status with a non-existing ID.
#. TRANS: Client error displayed when trying to remove a favourite with an invalid ID.
@@ -495,8 +543,9 @@ msgid "This status is already a favorite."
msgstr "Ur pennroll eo dija ar c'hemenn-mañ."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Diposupl eo krouiñ ar pennroll-mañ."
@@ -506,7 +555,8 @@ msgid "That status is not a favorite."
msgstr "N'eo ket ar statud-mañ ur pennroll."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Diposupl eo dilemel ar pennroll-mañ."
@@ -520,7 +570,7 @@ msgstr "Dibosupl eo heuliañ an implijer : n'eo ket bet kavet ar profil."
#: actions/apifriendshipscreate.php:120
#, php-format
msgid "Could not follow user: %s is already on your list."
-msgstr "Diposubl eo heuliañ an implijer : war ho listenn emañ %s dija."
+msgstr "Dibosupl eo heuliañ an implijer : war ho listenn emañ %s dija."
#. TRANS: Client error displayed when trying to unfollow a user that cannot be found.
#: actions/apifriendshipsdestroy.php:109
@@ -535,27 +585,26 @@ msgstr "Ne c'hallit ket chom hep ho heuliañ hoc'h-unan."
#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
#: actions/apifriendshipsexists.php:88
-#, fuzzy
msgid "Two valid IDs or nick names must be supplied."
msgstr "Rankout a reoc'h reiñ daou id pe lesanv."
#. TRANS: Client error displayed when a source user could not be determined showing friendship.
#: actions/apifriendshipsshow.php:131
msgid "Could not determine source user."
-msgstr "Diposubl eo termeniñ an implijer mammenn."
+msgstr "Dibosupl eo termeniñ an implijer mammenn."
#. TRANS: Client error displayed when a target user could not be determined showing friendship.
#: actions/apifriendshipsshow.php:140
msgid "Could not find target user."
-msgstr "Diposubl eo kavout an implijer pal."
+msgstr "Dibosupl eo kavout an implijer pal."
#. TRANS: Client error trying to create a group with a nickname this is already in use.
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Implijet eo dija al lesanv-se. Klaskit unan all."
@@ -563,21 +612,22 @@ msgstr "Implijet eo dija al lesanv-se. Klaskit unan all."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "N'eo ket ul lesanv mat."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh."
@@ -585,25 +635,25 @@ msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
-#, fuzzy
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Re hir eo an anv klok (255 arouezenn d'ar muiañ)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
-#, fuzzy, php-format
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
+#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
msgstr[0] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)."
@@ -613,10 +663,9 @@ msgstr[1] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
-#, fuzzy
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)."
@@ -626,9 +675,9 @@ msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
-#, fuzzy, php-format
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
+#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
msgstr[0] "Re a aliasoù ! %d d'ar muiañ."
@@ -644,18 +693,16 @@ msgstr "Alias fall : \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Implijet e vez an alias \"%s\" dija. Klaskit gant unan all."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv."
@@ -666,31 +713,35 @@ msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "N'eo ket bet kavet ar strollad."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Un ezel eus ar strollad-mañ eo dija."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Stanket oc'h bet eus ar strollad-mañ gant ur merour."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
-msgstr "Diposubl eo stagañ an implijer %1$s d'ar strollad %2$s."
+msgstr "Dibosupl eo stagañ an implijer %1$s d'ar strollad %2$s."
#. TRANS: Server error displayed when trying to leave a group the user is not a member of.
#: actions/apigroupleave.php:115
@@ -699,13 +750,15 @@ msgstr "N'oc'h ket ezel eus ar strollad-mañ."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
-msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %2$s."
+msgstr "Dibosupl eo dilemel an implijer %1$s deus ar strollad %2$s."
#. TRANS: Used as title in check for group membership. %s is a user name.
#: actions/apigrouplist.php:94
@@ -738,10 +791,9 @@ msgid "Upload failed."
msgstr "Enporzhiadenn c'hwitet."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
-#, fuzzy
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
-msgstr "Fichenn direizh."
+msgstr "Jedouer pe gwirier reked direizh."
#. TRANS: Client error given when no oauth_token was passed to the OAuth API.
#: actions/apioauthauthorize.php:107
@@ -750,31 +802,34 @@ msgstr "Arventenn oauth_token nann-roet."
#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129
-#, fuzzy
msgid "Invalid request token."
-msgstr "Fichenn direizh."
+msgstr "Jedouer reked direizh."
#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
#: actions/apioauthauthorize.php:121
-#, fuzzy
msgid "Request token already authorized."
-msgstr "N'oc'h ket aotreet."
+msgstr "Aotreet eo bet ar jedouer reked dija."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h. Mar plij adklaskit."
@@ -786,24 +841,29 @@ msgstr "Lesanv / ger tremen direizh !"
#. TRANS: Server error displayed when a database action fails.
#: actions/apioauthauthorize.php:217
-#, fuzzy
msgid "Database error inserting oauth_token_association."
-msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar"
+msgstr ""
+"Fazi diaz roadennoù p'eo bet ensoc'het ar jedouer kenstrollañ implijer "
+"arload OAuth"
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Kinnig ar furmskrid dic'hortoz."
@@ -847,29 +907,31 @@ msgstr "Kont"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Lesanv"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Ger-tremen"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -909,6 +971,8 @@ msgid ""
"Please return to the application and enter the following security code to "
"complete the process."
msgstr ""
+"Distroit d'an arload, mar plij, hag ebarzhit ar c'hod surentez amañ dindan "
+"evit echuiñ an argerzh."
#. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth.
#. TRANS: %s is the authorised application name.
@@ -925,6 +989,8 @@ msgid ""
"Please return to %s and enter the following security code to complete the "
"process."
msgstr ""
+"Distroit d'an arload %s, mar plij, hag ebarzhit ar c'hod surentez amañ "
+"dindan evit echuiñ an argerzh."
#. TRANS: Client error displayed trying to delete a status not using POST or DELETE.
#. TRANS: POST and DELETE should not be translated.
@@ -939,6 +1005,7 @@ msgstr "Ne c'helloc'h ket dilemel statud un implijer all."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -958,47 +1025,58 @@ msgstr "Ne c'helloc'h ket adlavar ho alioù."
msgid "Already repeated that notice."
msgstr "Kemenn bet adkemeret dija."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
-#, fuzzy
msgid "HTTP method not supported."
-msgstr "N'eo ket bet kavet an hentenn API !"
+msgstr "N'eo ket skoret an hentenn HTTP."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
-msgstr "Diembreget eo ar furmad-se."
+msgid "Unsupported format: %s."
+msgstr "Diembreget eo ar furmad : %s"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Statud diverket."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "N'eo ket bet kavet a statud evit an ID-mañ"
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
-msgstr ""
+msgstr "Ne c'hallit dilemel nemet dre implijout ar furmad Atom."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "Dibosupl eo dilemel ar c'hemenn-mañ."
-#: actions/apistatusesshow.php:243
-#, fuzzy, php-format
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
+#, php-format
msgid "Deleted notice %d"
-msgstr "Dilemel un ali"
+msgstr "Kemenn dilamet %d"
#. TRANS: Client error displayed when the parameter "status" is missing.
#: actions/apistatusesupdate.php:221
msgid "Client must provide a 'status' parameter with a value."
-msgstr ""
+msgstr "Ret eo d'an arval pourchas un arventenn « statut » gant un talvoud."
#. TRANS: Client error displayed when the parameter "status" is missing.
#. TRANS: %d is the maximum number of character for a notice.
@@ -1042,13 +1120,13 @@ msgstr "%1$s / Pennroll %2$s"
#. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name,
#. TRANS: %3$s is a user nickname.
#: actions/apitimelinefavorites.php:120
-#, fuzzy, php-format
+#, php-format
msgid "%1$s updates favorited by %2$s / %3$s."
-msgstr "%1$s statud pennroll da %2$s / %2$s."
+msgstr "%1$s kemennadenn garetañ gant %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Diposubl eo hizivaat ar strollad."
@@ -1069,13 +1147,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s statud pennroll da %2$s / %2$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Oberezhioù publik %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s statud an holl !"
@@ -1115,211 +1194,269 @@ msgstr "Hizivadennoù merket gant %1$s e %2$s !"
#. TRANS: Client error displayed trying to add a notice to another user's timeline.
#: actions/apitimelineuser.php:297
-#, fuzzy
msgid "Only the user can add to their own timeline."
-msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù."
+msgstr ""
+"N'eus nemet an implijer a c'hall ouzhpennañ traoù d'e lanvad dezhañ e-unan."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Klask alioù en danvez"
+msgstr "N'eus danvez ebet evit ar gemennadenn%d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr ""
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Hentenn API war sevel."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
-#, fuzzy
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
-msgstr "N'eo ket bet kavet an hentenn API !"
+msgstr "N'eo ket bet kavet an implijer."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "N'eus ket eus ar profil-se."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Hizivadennoù %1$s ha mignoned e %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "Dibosupl eo ouzhpennañ koumanant un den all."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Dibosupl eo dilemel ar c'houmanant."
+msgid "Can only handle favorite activities."
+msgstr "Klask alioù en danvez"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Klask alioù en danvez"
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
msgid "Unknown note."
-msgstr "Dianav"
+msgstr "Notenn dianav."
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
msgid "Already a favorite."
-msgstr "Ouzhpennañ d'ar pennrolloù"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "N'eus ket eus ar profil-se."
+msgstr "Er pennroll dija."
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "Izili ar strollad %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Ezel eo %s eus ar strolladoù"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Dibosupl eo dilemel ar c'houmanant."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
-
-#: actions/atompubmembershipfeed.php:256
+#: actions/atompubmembershipfeed.php:242
#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Klask alioù en danvez"
+
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Dianav"
+msgstr "Strollad dianav."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "An holl izili"
+msgstr "Ezel eo dija."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Stanket gant ar merour."
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Restr ezvezant."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "Diposupl eo dilemel ar pennroll-mañ."
+msgid "Cannot delete someone else's favorite."
+msgstr "Diposupl eo dilemel pennroll un den all."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "N'eus ket eus ar strollad-se."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "An holl izili"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "N'eo ket bet kavet an hentenn API !"
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "N'eo ket ezel."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "N'eus ket eus ar profil-se."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "N'oc'h ket koumanantet d'ar profil-se."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Dibosupl eo dilemel ar c'houmanant."
-#: actions/atompubsubscriptionfeed.php:150
-#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "Koumanantet da %s"
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
+#, php-format
+msgid "No such profile id: %d."
+msgstr "N'eus ket eus ar profil : %d."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Ar profil %1$d n'eo ket koumanantet d'ar profil %2$d."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr "Dibosupl eo dilemel koumanant un den all."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "Koumananterien %s"
+
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "Profil dianav %s."
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Dizanv eo seurt ar restr"
+msgid "Already subscribed to %s."
+msgstr "Koumanantet dija !"
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1329,11 +1466,15 @@ msgstr "N'eo ket bet kavet ar restr stag."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Lesanv ebet."
@@ -1350,7 +1491,7 @@ msgstr "Ment direizh."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1361,43 +1502,54 @@ msgstr "Avatar"
#, php-format
msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr ""
+"Gallout a rit kargañ hoc'h avatar personel. Ment vrasañ ar restr zo %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Implijer hep profil klotus."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Arventennoù an avatar"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Orin"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Rakwelet"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Dilemel"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Enporzhiañ"
@@ -1413,31 +1565,71 @@ msgstr "Adframmañ"
msgid "No file uploaded."
msgstr "N'eus bet enporzhiet restr ebet."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Diuzit ur zonenn gant ur stumm karrez evit tremeniñ ho avatar"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Kollet eo bet roadennoù."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Hizivaet eo bet an avatar."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Ur gudenn 'zo bet e-pad hizivadenn an avatar."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Dilammet eo bet an Avatar."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Saveteiñ ar gont"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr "N'eus nemet an implijerien kevreet hag a c'hell saveteiñ o c'hont."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "Ne c'hallit ket saveteiñ ho kont."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Eilenn savete"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+#, fuzzy
+msgid "Backup your account."
+msgstr "Saveteiñ ho kont"
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1445,7 +1637,8 @@ msgstr "Stanket ho peus dija an implijer-mañ."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Stankañ an implijer-mañ"
@@ -1465,15 +1658,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Ket"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Arabat stankañ an implijer-mañ"
#. TRANS: Button label on the user block form.
@@ -1484,46 +1677,21 @@ msgstr "Arabat stankañ an implijer-mañ"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Ya"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Stankañ an implijer-mañ"
#. TRANS: Server error displayed when blocking a user fails.
#: actions/block.php:189
msgid "Failed to save block information."
-msgstr "Diposubl eo enrollañ an titouroù stankañ."
-
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "N'eus ket eus ar strollad-se."
+msgstr "Dibosupl eo enrollañ an titouroù stankañ."
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
@@ -1595,29 +1763,11 @@ msgstr "Doare chomlec'h dianav %s."
msgid "That address has already been confirmed."
msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Diposubl eo hizivaat an implijer."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
-#, fuzzy
msgid "Could not delete address confirmation."
-msgstr "Diposubl eo dilemel ar postel kadarnadur."
+msgstr "Dibosupl dilemel ar gadarnadenn chomlec'h."
#. TRANS: Title for the contact address confirmation action.
#: actions/confirmaddress.php:150
@@ -1637,11 +1787,80 @@ msgid "Conversation"
msgstr "Kaozeadenn"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Ali"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr "N'eus nemet an implijerien kevreet a c'hell dilemel o c'hont."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "N'hallit ket dilemel ho kont."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Sur on."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, fuzzy, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "Ret eo deoc'h skrivañ \"%s\" dres er voest."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "Dilamet eo bet ar gont."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Dilemel ar gont"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Kadarnaat"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Ebarzhit \"%s\" evit kadarnaat e fell deoc'h dilemel ho kont."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Dilemel ho kont da vat"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1655,14 +1874,14 @@ msgstr "N'eo ket bet kavet ar poellad"
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "N'oc'h ket perc'henn ar poellad-se."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Ur gudenn 'zo bet gant ho jedaouer dalc'h."
@@ -1682,38 +1901,40 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Arabat eo dilemel ar poellad-mañ"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Dilemel ar poelad-se"
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
-#, fuzzy
msgid "You must be logged in to delete a group."
-msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat ur strollad"
+msgstr "Ret eo deoc'h bezañ kevreet evit dilemel ur strollad."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Lesanv pe ID ebet."
#. TRANS: Client error when trying to delete a group without having the rights to delete it.
#: actions/deletegroup.php:107
-#, fuzzy
msgid "You are not allowed to delete this group."
-msgstr "N'oc'h ket ezel eus ar strollad-mañ."
+msgstr "N'oc'h ket aotreet da zilemel ar gont-mañ."
#. TRANS: Server error displayed if a group could not be deleted.
#. TRANS: %s is the name of the group that could not be deleted.
#: actions/deletegroup.php:150
-#, fuzzy, php-format
+#, php-format
msgid "Could not delete group %s."
-msgstr "Diposubl eo hizivaat ar strollad."
+msgstr "Dibosubl eo dilemel ar strollad %s."
#. TRANS: Message given after deleting a group.
#. TRANS: %s is the deleted group's name.
@@ -1739,25 +1960,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
-msgstr "Arabat dilemel ar c'hemenn-mañ"
+msgid "Do not delete this group."
+msgstr "Arabat dilemel ar strollad-mañ"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
-msgstr "Diverkañ an implijer-mañ"
+msgid "Delete this group."
+msgstr "Dilemel ar strollad-mañ"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Nann-kevreet."
@@ -1778,109 +2005,144 @@ msgstr "Dilemel un ali"
#. TRANS: Message for the delete notice form.
#: actions/deletenotice.php:152
msgid "Are you sure you want to delete this notice?"
-msgstr "Ha sur oc'h ho peus c'hoant dilemel ar c'hemenn-mañ ?"
+msgstr "Ha sur oc'h hoc'h eus c'hoant da zilemel ar c'hemenn-mañ ?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Arabat dilemel ar c'hemenn-mañ"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Dilemel ar c'hemenn-mañ"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "N'hallit ket diverkañ implijerien."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Ne c'helloc'h nemet dilemel an implijerien lec'hel."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
+msgid "Delete user"
+msgstr "Dilemel an implijer"
+
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
msgid "Delete user"
msgstr "Diverkañ an implijer"
-#: actions/deleteuser.php:136
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Arabat dilemel an implijer-mañ"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Diverkañ an implijer-mañ"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Design"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "URL fall evit al logo."
-#: actions/designadminpanel.php:340
-#, fuzzy
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
-msgstr "URL fall evit al logo."
+msgstr "Chomlec'h URL fall evit al logo SSL."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "N'eus ket eus ar gaoz-se : %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Cheñch al logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logo al lec'hienn"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "Logo SSL"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Lakaat un dodenn all"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Dodenn al lec'hienn"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Dodenn evit al lec'hienn."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Dodenn personelaet"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Kemmañ ar skeudenn foñs"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Background"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1888,98 +2150,108 @@ msgid ""
msgstr ""
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Gweredekaet"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Diweredekaet"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Adober gant ar skeudenn drekleur"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Kemmañ al livioù"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Endalc'h"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Barenn kostez"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Testenn"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Liammoù"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Araokaet"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS personelaet"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Implijout an talvoudoù dre ziouer"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Adlakaat an neuz dre ziouer."
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Adlakaat an arventennoù dre ziouer"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Enrollañ"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Enrollañ an design"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "N'eo ket ar c'hemenn-mañ ur pennroll !"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Ouzhpennañ d'ar pennrolloù"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "N'eo ket bet kavet ar restr \"%s\""
#. TRANS: Title for "Edit application" form.
@@ -1994,7 +2266,7 @@ msgid "You must be logged in to edit an application."
msgstr "Ret eo bezañ kevreet evit kemmañ ur poellad."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "N'eus ket eus an arload-mañ."
@@ -2004,65 +2276,75 @@ msgid "Use this form to edit your application."
msgstr "Implijit ar furmskrid-mañ evit kemmañ ho poellad."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Ret eo lakaat un anv."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "Re hir eo an anv (255 arouezenn d'ar muiañ)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Implijet eo dija an anv-mañ. Klaskit unan all."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Ezhomm 'zo un deskrivadur."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Mammenn URL re hir."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "N'eo ket mat an URL mammenn."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Ezhomm 'zo eus an aozadur."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "Re hir eo an aozadur (255 arouezenn d'ar muiañ)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Ret eo kaout pajenn degemer an aozadur."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Rez hir eo ar c'hounadur (Callback)."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "N'eo ket mat an URL kounadur (Callback)."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
-msgstr "Diposubl eo hizivaat ar poellad"
+msgstr "Dibosupl eo hizivaat ar poellad"
#. TRANS: Title for form to edit a group. %s is a group nickname.
#: actions/editgroup.php:55
@@ -2071,14 +2353,17 @@ msgid "Edit %s group"
msgstr "Kemmañ ar strollad %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Rankout a reer bezañ merour evit kemmañ ar strollad."
@@ -2089,63 +2374,65 @@ msgstr "Leunit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Alias fall : \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
-msgstr "Diposubl eo hizivaat ar strollad."
+msgstr "Dibosupl eo hizivaat ar strollad."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
-msgstr "Diposubl eo krouiñ an aliasoù."
+msgstr "Dibosupl eo krouiñ an aliasoù."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Enrollet eo bet ho dibarzhioù."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Arventennoù ar postel"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Merañ ar posteloù a fell deoc'h resevout a-berzh %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Chomlec'h postel"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Chomlec'h postel gwiriekaet er mare-mañ."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Dilemel"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2156,46 +2443,46 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Chomlec'h postel, evel \"AnvImplijer@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Ouzhpennañ"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Postel o tont"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "C'hoant am eus kas va alioù dre bostel."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
#, fuzzy
msgid "Send email to this address to post new notices."
msgstr "Chomlec'h postel nevez evit embann e %s"
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
#, fuzzy
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Chomlec'h postel nevez evit embann e %s"
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2203,184 +2490,200 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nevez"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Penndibaboù ar posteloù"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
#, fuzzy
msgid "Send me notices of new subscriptions through email."
msgstr "Kas din an alioù dre Jabber/GTalk."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Kas din ur postel pa gas unan bennak ur gemennadenn bersonel din."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Kas din ur postel pa gas unan bennak ur \"@-respont\" din."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Embann ur MicroID evit ma chomlec'h postel."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Enrollet eo bet an arventennoù postel."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Chomlec'h postel ebet."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
+#: actions/emailsettings.php:388
#, fuzzy
-msgid "Cannot normalize that email address"
+msgid "Cannot normalize that email address."
msgstr "Diposubl eo implijout an ID Jabber-mañ"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "N'eo ket ur chomlec'h postel reizh."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Ho postel eo dija."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
-#, fuzzy
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
-msgstr "D'un implijer all eo an niverenn-mañ dija."
+msgstr "D'un implijer all eo ar chomlec'h postel-mañ."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Dibosupl eo ensoc'hañ ar c'hod gwiriekaat."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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 ""
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Kadarnadenn ebet da vezañ nullet."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "N'eo ket mat ar chomlec'h postelerezh prim."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
-msgstr "Diposubl eo dilemel ar postel kadarnadur."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
+msgstr "Dibosupl dilemel ar postel kadarnaat."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Nullet eo bet kadarnadenn ar postel."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "N'eo ket ho postel."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Dilamet eo bet ar chomlec'h postel."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Chomlec'h postel ebet o tont."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
-msgstr "Dibosupl eo hizivaat doser an implijer."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
+msgstr "Dibosupl hizivaat teuliad an implijer."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Diverket eo bet ar chomlec'h postel o tont tre."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Ouzhpennet ez eus bet ur chomlec'h postel nevez o tont tre"
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Ouzhpennet eo bet ar c'hemenn-mañ d'ho pennrolloù dija !"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Tennañ ar pennroll"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Alioù poblek"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Alioù poblek, pajenn %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "An alioù ar brudetañ el lec'hienn er mare-mañ."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, fuzzy, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2389,146 +2692,190 @@ msgstr ""
"Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini "
"gentañ da embann un dra !"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Alioù pennrollet eus %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Hizivadennoù brientek gant %1$s war %2$s !"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
#, fuzzy
msgid "Featured users"
msgstr "Diverkañ an implijer"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, fuzzy, php-format
msgid "Featured users, page %d"
msgstr "Strollad, pajenn %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Un dibab eus implijerien vat e %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "ID ali ebet."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Ali ebet."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "N'eus restr stag ebet."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
#, fuzzy
msgid "No uploaded attachments."
msgstr "N'eus restr stag ebet."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Ne oa ket gortozet ar respont-mañ !"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr ""
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
#, fuzzy
msgid "You can use the local subscription!"
msgstr "Dibosupl eo dilemel ar c'houmanant."
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "An implijer-se en deus ho stanket evit en enskrivañ."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "N'oc'h ket aotreet."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
#, fuzzy
msgid "Could not convert request token to access token."
msgstr "Dibosupl eo kaout ur jedaouer reked."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Fazi en ur hizivaat ar profil a-bell."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Restr ezvezant."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Diposupl eo lenn ar restr."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Roll direizh."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "An implijer-mañ en deus dija ar roll-mañ."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "N'eo bet resisaet profil ebet"
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "N'eus profil ebet gant an ID-mañ."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "N'eo bet resisaet strollad ebet"
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "N'eus neme ur merour a c'hell stankañ izili ur strollad."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "An implijer-mañ a zo stanket dija eus ar strollad."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "N'eo ket an implijer-mañ ezel eus ur strollad."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Stankañ an implijer-mañ eus ar strollad"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2537,162 +2884,190 @@ msgid ""
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
-msgstr "Arabat stankañ an implijer-mañ eus ar strollad."
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
+msgstr "Arabat stankañ an implijer-mañ er strollad-mañ."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
-msgstr "Stankañ an implijer-mañ eus ar strollad-se"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "Stankañ an implijer-mañ er strollad-mañ."
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
#, fuzzy
msgid "Database error blocking user from group."
msgstr "Distankañ implijer ar strollad"
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "ID ebet"
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
#, fuzzy
msgid "You must be logged in to edit a group."
msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Design ar strollad"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Diposubl eo hizivaat ho design."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Dibosupl eo enrollañ an arventennoù empentiñ."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Enrollet eo bet an arventennoù design."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo ar strollad"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr ""
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Enporzhiañ"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Adframmañ"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
#, fuzzy
msgid "Pick a square area of the image to be the logo."
msgstr "Diuzit ur zonenn gant ur stumm karrez evit tremeniñ ho avatar"
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo hizivaet."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "N'eo ket bet kaset da benn an hizivadenn."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Izili ar strollad %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Izili ar strollad %1$s, pajenn %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Roll an implijerien enrollet er strollad-mañ."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Merañ"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Stankañ"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Stankañ an implijer-mañ"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Lakaat an implijer da vezañ ur merour eus ar strollad"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Lakaat ur merour"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Lakaat an implijer-mañ da verour"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Hizivadenn izili %1$s e %2$s !"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Strolladoù"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Strollad, pajenn %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Krouiñ ur strollad nevez"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, fuzzy, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2702,25 +3077,33 @@ msgstr ""
"Dispartiañ termenoù ar c'hlask gant esaouennoù. Ret eo e vefe da nebeutañ 3 "
"arouezenn."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Klask strolladoù"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Disoc'h ebet."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Ma ne gavoc'h ket ar strollad emaoc'h o klask, neuze e c'helloc'h [krouiñ "
"anezhañ](%%action.newgroup%%)."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, fuzzy, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2730,204 +3113,217 @@ msgstr ""
"gentañ da embann un dra !"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "N'eus nemet ur merour a c'hell distankañ izili ur strollad."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "N'eo ket stanket an implijer-mañ eus ar strollad."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Ur fazi a zo bet e-pad nulladenn ar stankadenn."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Arventennoù ar bostelerezh prim"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "Dizimplijadus eo ar bostelerezh prim"
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Chomlec'h postelerezh prim"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Chomlec'h Jabber/GTalk kadarnaet er mare-mañ."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Penndibaboù ar bostelerezh prim"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Kas din an alioù dre Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
#, fuzzy
-msgid "Post a notice when my Jabber/GTalk status changes."
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Embann ur MicroID evit ma chomlec'h Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
#, fuzzy
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr "Kas din an alioù dre Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Embann ur MicroID evit ma chomlec'h Jabber/GTalk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Penndibaboù enrollet"
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "ID Jabber ebet."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
-msgstr "Diposubl eo implijout an ID Jabber-mañ"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
+msgstr "Dibosupl eo implijout an ID Jabber-mañ"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "N'eo ket un ID Jabber reizh."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Ho ID Jabber eo dija"
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Implijet eo an Jabber ID-mañ gant un implijer all."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
"s for sending messages to you."
msgstr ""
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "N'eo ket mat ar chomlec'h postelerezh prim."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
#, fuzzy
-msgid "Couldn't delete IM confirmation."
+msgid "Could not delete IM confirmation."
msgstr "Diposubl eo dilemel ar postel kadarnadur."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Nullet eo bet kadarnadenn ar bostelerezh prim."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "N'eo ket ho ID Jabber."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Dilamet eo bet ar chomlec'h IM."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Boest degemer %1$s - pajenn %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Bost resevout %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Diweredekaat eo bet ar bedadennoù."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Rankout a reoc'h bezañ luget evit pediñ implijerien all e %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Fall eo ar postel : %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Pedadennoù kaset"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Pediñ implijerien nevez"
@@ -2935,7 +3331,7 @@ msgstr "Pediñ implijerien nevez"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2944,7 +3340,7 @@ msgstr[1] "Koumanantet oc'h dija d'an implijerien-mañ :"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2953,7 +3349,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -2968,7 +3364,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -2977,41 +3373,42 @@ msgstr[1] "Pedadennoù bet kaset d'an implijerien da-heul :"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
msgstr ""
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
#, fuzzy
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s"
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Chomlec'hioù postel"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Chomlec'hioù an implijerien da bediñ (unan dre linenn)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Kemennadenn bersonel"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Ouzhpennañ ur gemennadenn bersonel d'ar bedadenn (diret)."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Kas"
@@ -3019,7 +3416,7 @@ msgstr "Kas"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s a bed ac'hanoc'h d'en em enskrivañ war %2$s"
@@ -3029,7 +3426,7 @@ msgstr "%1$s a bed ac'hanoc'h d'en em enskrivañ war %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3060,171 +3457,187 @@ msgid ""
"Sincerely, %2$s\n"
msgstr ""
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Rankout a reoc'h bezañ luget evit mont en ur strollad."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
-msgstr "%1$s a zo bet er strollad %2$s"
+msgstr "%1$s en deus emezelet er strollad %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat ur strollad"
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "N'oc'h ket un ezel eus ar strollad-mañ."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s en deus kuitaet ar strollad %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Aotre-implijout"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Aotre-implijout al lec'hienn StatusNet-mañ"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Diuzadenn aotre-implijout direizh"
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Direizh eo URL an aotre-implijout"
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Direizh eo URL skeudenn an aotre-implijout"
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "Goullo pe reizh e rank bezañ URL an aotre-implijout"
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "Goullo pe reizh e rank bezañ URL skeudenn an aotre-implijout"
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Diuzadenn un aotre-implijout"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Prevez"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Pep gwir miret strizh."
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Seurt"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Dibab un aotre-implijout"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Munudoù an aotre-implijout"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Perc'henn"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Anv perc'henn danvez la lec'hienn (ma c'heller lakaat e pleustr)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Titl an aotre-implijout"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Titl an aotre-implijout"
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL an aotre-implijout"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL lec'h ma c'heller kaout titouroù diwar-benn an aotre-implijout."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL skeudenn an aotre-implijout"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL ur skeudenn da ziskouez gant an aotre-implijout."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Enrollañ"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Enrollañ arventennoù an aotre-implijout"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Kevreet oc'h dija."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Anv implijer pe ger-tremen direizh."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
"Ur fazi 'zo bet e-pad hizivadenn an implijer. Moarvat n'oc'h ket aotreet "
"evit en ober."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Kevreañ"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Kevreañ d'al lec'hienn"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Kaout soñj"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Digeriñ va dalc'h war-eeun ar wechoù o tont ; arabat en ober war "
"urzhiataeroù rannet pe publik !"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Ha kollet ho peus ho ker-tremen ?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3232,11 +3645,11 @@ msgstr ""
"Evit abegoù a surentezh, mar plij adlakait hoc'h anv implijer hag ho ker-"
"tremen a-benn enrollañ ho penndibaboù."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Kevreit gant ho anv implijer hag ho ker-tremen."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3261,7 +3674,7 @@ msgstr "Diposubl eo lakaat %1$s da merour ar strollad %2$s."
#: actions/makeadmin.php:146
#, php-format
msgid "Can't make %1$s an admin for group %2$s."
-msgstr "Diposubl eo lakaat %1$s da merour ar strollad %2$s."
+msgstr "Dibosupl eo lakaat %1$s da merour ar strollad %2$s."
#: actions/microsummary.php:69
msgid "No current status."
@@ -3273,19 +3686,22 @@ msgid "New application"
msgstr "Arload nevez"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Ret eo deoc'h bezañ luget evit enrollañ ur poellad."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Implijit ar furmskrid-mañ evit enskrivañ ur poellad nevez."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Ezhomm 'zo eus ar vammenn URL."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "N'eo ket posubl krouiñ ar poellad."
@@ -3294,11 +3710,23 @@ msgstr "N'eo ket posubl krouiñ ar poellad."
msgid "New group"
msgstr "Strollad nevez"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "N'oc'h ket ezel eus ar strollad-mañ."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Implijit ar furmskrid-mañ a-benn krouiñ ur strollad nevez."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Kemennadenn nevez"
@@ -3350,7 +3778,9 @@ msgstr "Ali nevez"
msgid "Notice posted"
msgstr "Ali embannet"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, fuzzy, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3360,23 +3790,30 @@ msgstr ""
"Dispartiañ termenoù ar c'hlask gant esaouennoù. Ret eo e vefe da nebeutañ 3 "
"arouezenn."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Klask testennoù"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Disoc'hoù ar c'hlask evit \"%1$s\" e %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, fuzzy, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3385,14 +3822,17 @@ msgstr ""
"Perak ne [groufec'h ket ur gont](%%action.register%%) ha bezañ an hini "
"gentañ da embann un dra !"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Hizivadenn gant \"%s\""
-#: actions/noticesearchrss.php:98
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
#, fuzzy, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Hizivadennoù merket gant %1$s e %2$s !"
#: actions/nudge.php:85
@@ -3431,30 +3871,30 @@ msgid "You have not registered any applications yet."
msgstr "N'ho peus enrollet poellad ebet evit poent."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Poeladoù kevreet."
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "N'oc'h ket un implijer eus ar poellad-mañ."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Dibosupl eo nullañ moned ar poellad : "
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3462,20 +3902,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "N'ho peus aotreet poellad ebet da implijout ho kont."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "N'eo ket bet kavet an implijer."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "N'eo ket bet kavet an hentenn API !"
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "N'en deus ket an ali a profil."
@@ -3485,6 +3935,16 @@ msgstr "N'en deus ket an ali a profil."
msgid "%1$s's status on %2$s"
msgstr "Statud %1$s war %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "N'eo ket bet kavet ar resever."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3498,17 +3958,18 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
#, fuzzy
msgid "Not a supported data format."
msgstr "Diembreget eo ar furmad-se."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Klask tud"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Klask alioù"
@@ -3522,74 +3983,85 @@ msgid "Manage various other options."
msgstr "Dibarzhioù all da gefluniañ."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
-msgstr " (servij digoust)"
+msgstr " (servij digoust)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr ""
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr ""
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
#, fuzzy
msgid "View profile designs"
msgstr "Design ar profil"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Diskouez pe kuzhat designoù ar profil."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Re hir eo ar yezh (255 arouezenn d'ar muiañ)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "N'eus bet diferet ID implijer ebet."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
#, fuzzy
msgid "No login token specified."
msgstr "N'eus bet diferet ali ebet."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
#, fuzzy
msgid "No login token requested."
msgstr "N'eus profil ID ebet er reked."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
#, fuzzy
msgid "Invalid login token specified."
msgstr "Fichenn direizh."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
#, fuzzy
msgid "Login token expired."
msgstr "Kevreañ d'al lec'hienn"
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Boest kas %1$s - pajenn %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Boest kas %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
@@ -3601,7 +4073,8 @@ msgstr "Cheñch ger-tremen"
msgid "Change your password."
msgstr "Cheñch ger-tremen."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Kemmañ ger-tremen"
@@ -3609,48 +4082,50 @@ msgstr "Kemmañ ger-tremen"
msgid "Old password"
msgstr "Ger-tremen kozh"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Ger-tremen nevez"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 arouezenn pe muioc'h"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Kadarnaat"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Memestra eget ar ger tremen a-us"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Kemmañ"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Rankout a ra ar ger-tremen bezañ gant 6 arouezenn d'an nebeutañ."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Ne glot ket ar gerioù-tremen."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Ger-termen kozh direizh"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Ur fazi 'zo bet e-pad enolladenn an implijer ; diwiriek."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Dibosupl eo enrollañ ar ger-tremen nevez."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Ger-tremen enrollet."
@@ -3864,7 +4339,7 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Pezhioù stag"
@@ -3936,7 +4411,9 @@ msgstr ""
msgid "Save paths"
msgstr "Enrollañ an hentadoù."
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3946,7 +4423,8 @@ msgstr ""
"Dispartiañ termenoù ar c'hlask gant esaouennoù. Ret eo e vefe da nebeutañ 3 "
"arouezenn."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Klask tud"
@@ -3972,12 +4450,12 @@ msgstr ""
"lec'hienn \"%2$s\"."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Arventennoù ar profil"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -3985,33 +4463,34 @@ msgstr ""
"diwar ho penn."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Titouroù ar profil"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Anv klok"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Pajenn degemer"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL ho pajenn degemer, ho blog, pe ho profil en ul lec'hienn all"
@@ -4019,7 +4498,7 @@ msgstr "URL ho pajenn degemer, ho blog, pe ho profil en ul lec'hienn all"
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4027,74 +4506,81 @@ msgstr[0] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn"
msgstr[1] "Deskrivit ac'hanoc'h hag ho interestoù, gant %d arouezenn"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Deskrivit hoc'h-unan hag ar pezh a zedenn ac'hanoc'h"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Buhezskrid"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Lec'hiadur"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Rannañ va lec'hiadur pa bostan un ali."
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Balizennoù"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Merkoù evidoc'h oc'h unan (lizherennoù, sifroù, -, ., ha _), dispartiet gant "
"virgulennoù pe esaouennoù"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Yezh"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Yezh d'ober ganti da gentañ"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Takad eur"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Pehini eo gwerzhid-eur boaz ?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"En em enskrivañ ez emgefre d'an holl re hag en em goumanant din (erbedet "
"evit an implijerien nann-denel)"
@@ -4102,7 +4588,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4110,50 +4596,54 @@ msgstr[0] "Re hir eo ar bio (%d arouezenn d'ar muiañ)."
msgstr[1] "Re hir eo ar bio (%d arouezenn d'ar muiañ)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "N'eo bet dibabet gwerzhid-eur ebet."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Re hir eo ar yezh (255 arouezenn d'ar muiañ)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Balizenn direizh : \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Dibosupl eo hizivaat ar c'houmanant ez emgefre."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Dibosupl eo enrollañ an dibaboù lec'hiadur."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Diposubl eo enrollañ ar profil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "Diposubl eo enrollañ ar balizennoù."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Dibosupl eo enrollañ ar merkoù."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Enrollet eo bet an arventennoù."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Krouiñ ur gont"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4225,6 +4715,12 @@ msgstr ""
"%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/"
"Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s statud an holl !"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4267,37 +4763,45 @@ msgstr ""
#: actions/publictagcloud.php:146
msgid "Tag cloud"
-msgstr "Koumoulenn merkoù"
+msgstr "Nivlennad tikedennoù"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Luget oc'h dija !"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Kod adtapout nann-kavet."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "N'eo ket ur c'hod adtapout an dra-mañ."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Kod adtapout evit un implijer dizanv."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Ur fazi 'zo bet gant ar c'hod kadarnaat."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Re gozh eo ar c'hod gwiriañ. Adkrogit mar plij."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Dibosupl eo hizivaat an implijer gant ar chomlec'h postel gwiriekaet."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4305,68 +4809,100 @@ msgstr ""
"M'o peus disoñjet pe kollet ho ger-tremen, e c'helloc'h kaout unan nevez hag "
"a vo kaset deoc'h d'ar chomlec'h postel termenet en ho kont."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Diskleriet oc'h bet. Lakait ur ger-tremen nevez amañ da heul. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Diskleriet oc'h bet. Lakait ur ger-tremen nevez amañ da heul."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Adtapout ar ger-tremen"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Lesanv pe chomlec'h postel"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"Ho lesanv war ar servijer-mañ, pe ar chomlec'h postel ho peus enrollet."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Adtapout"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Adtapout"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Adderaouekaat ar ger-tremen"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Adtapout ar ger-tremen"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Goulennet eo an adtapout gerioù-tremen"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Ger-tremen enrollet."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Oberiadenn dianav"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 arouezenn pe muioc'h, ha n'e zisoñjit ket !"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
-msgstr "Adderaouekaat"
+msgstr "Adderaouiñ"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Lakait ul lesanv pe ur chomlec'h postel."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "N'eus bet kavet implijer ebet gant ar postel-se pe an anv-se."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Chomlec'h postel enrollet ebet evit an implijer-mañ."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Ur fazi 'zo bet pa voe enrollet kod kadarnaat ar postel."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4374,132 +4910,128 @@ msgstr ""
"Kaset eo bet deoc'h, d'ar chomlec'h postel termenet en ho kont, an titouroù "
"ret evit gouzout penaos adtapout o ger-tremen."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Adderaouekadur dic'hortoz ar ger-tremen."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Rankout a ra ar ger-tremen bezañ 6 arouezenn d'an nebeutañ."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Ne glot ket ar ger-tremen gant ar c'hadarnadur."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Ur fazi 'zo bet e-pad kefluniadur an implijer."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Krouet eo bet ar ger-tremen nevez. Kevreet oc'h bremañ."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr ""
"Digarezit, met n'eus nemet an implijerien bet pedet hag a c'hell en em "
"enskrivañ."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Digarezit, kod pedadenn direizh."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Krouet eo bet ar gont."
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Krouiñ ur gont"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "N'eo ket aotreet krouiñ kontoù."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr ""
"Rankout a rit bezañ a-du gant termenoù an aotre-implijout evit krouiñ ur "
"gont."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Implijet eo dija ar chomlec'h postel-se."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Anv implijer pe ger-tremen direizh."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-#, fuzzy
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn"
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 arouezenn pe muioc'h. Rekis."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Memestra hag ar ger-tremen a-us. Rekis."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Postel"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Implijet hepken evit an hizivadennoù, ar c'hemennoù, pe adtapout gerioù-"
"tremen"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Anv hiroc'h, ho anv \"gwir\" a zo gwelloc'h"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL ho pajenn degemer, ho blog, pe ho profil en ul lec'hienn all"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr "Kompren a ran ez eo prevez danvez ha roadennoù %1$s."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Ma zestenn ha ma restroù a zo gwarezet dre copyright gant %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Ma zestenn ha ma restroù a chom dindan ma gwirioù oberour."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Holl gwrioù miret strizh."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr ""
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4518,7 +5050,7 @@ msgid ""
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4526,7 +5058,7 @@ msgstr ""
"(Resevout a reoc'h a-benn nebeut ur postel gant an titouroù evit kadarnaat "
"ho chomlec'h.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4534,77 +5066,85 @@ msgid ""
"microblogging site](%%doc.openmublog%%), enter your profile URL below."
msgstr ""
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Koumanant eus a-bell"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Koumanantiñ d'un implijer pell"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Lesanv an implijer"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Lesanv an implijer ho peus c'hoant heuliañ"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL ar profil"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "En em enskrivañ"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "URL direizh evit ar profil (furmad fall)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Lec'hel eo ar profil-mañ ! Kevreit evit koumananti."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Dibosupl eo kaout ur jedaouer reked."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "N'eus bet diferet ali ebet."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Adkemeret ho peus ar c'hemenn-mañ c'hoazh."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Adlavaret"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Adlavaret !"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Respontoù da %s"
@@ -4652,11 +5192,102 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Respontoù da %1$s war %2$s !"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "N'ho peus enrollet poellad ebet evit poent."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Enporzhiañ ar restr"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Mankout a ra un doser padennek."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "An holl izili"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Enporzhiañ ar restr"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ."
@@ -4665,7 +5296,7 @@ msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ."
msgid "User doesn't have this role."
msgstr "n'en deus ket an implijer-mañ ar rol-se."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4708,133 +5339,147 @@ msgstr ""
msgid "Save site settings"
msgstr "Enrollañ arventennoù al lec'hienn"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Rankout a reoc'h bezañ kevreet evit gwelet ur poellad."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Profil ar poellad"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Arlun"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Anv"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Aozadur"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Deskrivadur"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Stadegoù"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Krouet gant %1$s - moned %2$s dre ziouer - %3$d implijer"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Obererezhioù ar poellad"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Adderaouekaat an alc'hwez hag ar sekred"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Diverkañ"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Titouroù ar poelad"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Alc'hwez implijer"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Sekred an implijer"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL ar jedouer reked"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL ar jedouer moned"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "aotren an URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Ha sur oc'h ho peus c'hoant adderaouekaat ho alc'hwez bevezer ha sekred ?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Alioù karetañ %1$s, pajenn %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Diposupl eo diskwel ar pennrolloù."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Gwazh evit mignoned %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Gwazh evit mignoned %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Gwazh evit mignoned %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4842,7 +5487,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Un doare eo evit kevranañ ar pezh a blij deoc'h."
@@ -4860,81 +5506,88 @@ msgid "%1$s group, page %2$d"
msgstr "Strollad %1$s, pajenn %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Profil ar strollad"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Notenn"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Aliasoù"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Obererezh ar strollad"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Neudenn alioù ar strollad %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Neudenn alioù ar strollad %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Neudenn alioù ar strollad %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Mignon ur mignon evit ar strollad %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Izili"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Hini ebet)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "An holl izili"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Krouet"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Izili"
@@ -4943,7 +5596,7 @@ msgstr "Izili"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, fuzzy, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4958,7 +5611,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, fuzzy, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4970,17 +5623,17 @@ msgstr ""
"Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)."
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Merourien"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "N'eus ket eus ar gemennadenn-se."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr ""
"Ne c'hell bezañ lennet ar gemenadenn-mañ nemet gant ar c'haser hag ar "
@@ -4988,14 +5641,14 @@ msgstr ""
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Kemanadenn kaset da %1$s d'an %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Kemenadenn resevet eus %1$s d'an %2$s"
@@ -5011,7 +5664,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, pajenn %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5233,7 +5886,7 @@ msgstr "Kemmañ ur gemennadenn hag a zo diwar-benn al lec'hienn a-bezh"
#. TRANS: Server error displayed when saving a site-wide notice was impossible.
#: actions/sitenoticeadminpanel.php:101
msgid "Unable to save site notice."
-msgstr "Diposubl eo enrollañ ali al lec'hienn."
+msgstr "Dibosupl eo enrollañ ali al lec'hienn."
#. TRANS: Client error displayed when a site-wide notice was longer than allowed.
#: actions/sitenoticeadminpanel.php:112
@@ -5255,17 +5908,18 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Enrollañ ali ul lec'hienn"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Arventennoù SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
@@ -5273,131 +5927,131 @@ msgstr ""
"%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "Dizimplijadus eo an SMS."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Chomlec'h SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Niverenn pellgomz bet gwiriekaet evit resevout SMSoù."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Niverenn pellgomz o c'hortoz bezañ kadarnaet."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Kod kadarnaat"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Lakait ar c'hod ho peus resevet war ho pellgomzer hezoug."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Kadarnaat"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Niverenn bellgomz evit an SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
+#: actions/smssettings.php:152
#, fuzzy
-msgid "Phone number, no punctuation or spaces, with area code"
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Penndibaboù an SMSoù"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
msgstr ""
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Penndibaboù an SMSoù enrollet."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Niverenn bellgomz ebet."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
#, fuzzy
msgid "No carrier selected."
msgstr "Ali dilammet."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Ho niverenn pellgomz eo dija."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "D'un implijer all eo an niverenn-mañ dija."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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 ""
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Direizh eo ar c'hod gwiriekaat-mañ."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Nullet eo bet ar gadarnadenn SMS."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "n'eo ket ho niverenn pellgomz."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Dilamet eo bet an niverenn bellgomz evit an SMSoù."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Pourvezer pellgomzerezh hezoug"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Dibab un douger"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5405,8 +6059,9 @@ msgid ""
msgstr ""
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "N'eo bet lakaet kod ebet"
#. TRANS: Menu item for site administration
@@ -5483,15 +6138,19 @@ msgstr "N'oc'h ket koumanantet d'ar profil-se."
msgid "Could not save subscription."
msgstr "Dibosupl eo dilemel ar c'houmanant."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Koumanantet"
@@ -5524,7 +6183,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Heuliet eo alioù an den-mañ gant %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5532,7 +6191,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5544,7 +6203,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, fuzzy, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5577,7 +6236,7 @@ msgstr "Heuliet eo alioù an den-mañ gant %s."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5591,23 +6250,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "Ne heuilh %s den ebet."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Gwazh alioù %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5640,12 +6300,15 @@ msgstr "Arguzenn ID ebet."
msgid "Tag %s"
msgstr "Merk %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Profil an implijer"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Skeudenn"
@@ -5661,15 +6324,16 @@ msgstr ""
"Merkoù evit an implijer-mañ (lizherennoù, sifroù, -, ., ha _), dispartiet "
"gant virgulennoù pe gant esaouennoù"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Balizenn direizh : \"%s\""
+
#: 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 "Dibosupl eo enrollañ ar merkoù."
-
#: actions/tagother.php:236
#, fuzzy
msgid "Use this form to add tags to your subscribers or subscriptions."
@@ -5680,6 +6344,7 @@ msgstr "Implijit ar furmskrid-mañ evit kemmañ ho poellad."
msgid "No such tag."
msgstr "N'eus ket eus ar bajenn-se."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "N'ho peus ket stanket an implijer-mañ."
@@ -5702,7 +6367,7 @@ msgstr "N'eus profil ID ebet er reked."
msgid "Unsubscribed"
msgstr "Digoumanantet"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, fuzzy, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5735,12 +6400,11 @@ msgstr ""
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5801,117 +6465,158 @@ msgstr "Ma rankomp merañ an dalc'hoù hon unan."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "Enrollañ arventennoù an implijer"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Aotreañ ar c'houmanant"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Aotre implijout"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Degemer"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "En em goumanantiñ d'an implijer-mañ"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Disteurel"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Nac'hañ ar c'houmanant"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Reked aotreañ ebet !"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Koumanant aotreet"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Koumanant bet nac'het"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "N'eo ket bet kavet amañ URI ar selaouer \"%s\"."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "Re hir eo an URI \"%s\" ez oc'h koumanantet dezhi."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "An URI \"%s\" ez oc'h koumanantet dezhi a zo un implijer lec'hel."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "URI ar profil \"%s\" a zo evit un implijer lec'hel."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Aotre-implijout ar menegoù \"%1$s\" ne ya ket gant aotre-implijout al "
+"lec'hienn \"%2$s\"."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "N'eo ket reizh URL an avatar \"%s\"."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Dibosupl eo lenn URL an avatar \"%s\"."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Seurt skeudenn direizh evit URL an avatar \"%s\"."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Design ar profil"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Bez plijadur gant da hotdog !"
@@ -5941,7 +6646,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Hizivadennoù eus %1$s e %2$s!"
@@ -5990,7 +6695,7 @@ msgid "Plugins"
msgstr "Pluginoù"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Stumm"
@@ -5999,32 +6704,32 @@ msgid "Author(s)"
msgstr "Aozer(ien)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Pennrolloù"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6037,7 +6742,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6046,7 +6751,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6054,7 +6759,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
#, fuzzy
msgid "Invalid filename."
msgstr "Ment direizh."
@@ -6114,7 +6819,7 @@ msgid "Could not create login token for %s"
msgstr "Diposubl eo krouiñ an aliasoù."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6127,7 +6832,7 @@ msgstr "Ur gudenn 'zo bet pa veze kaset ho kemennadenn."
#. TRANS: Message given when a message could not be stored on the server.
#: classes/Message.php:69
msgid "Could not insert message."
-msgstr "Diposubl eo ensoc'hañ ur gemenadenn"
+msgstr "Dibosupl eo ensoc'hañ ur gemennadenn"
#. TRANS: Message given when a message could not be updated on the server.
#: classes/Message.php:80
@@ -6142,72 +6847,72 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, fuzzy, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Ur gudenn a zo bet e-pad enrolladenn ar c'hemenn. Re hir."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Ur gudenn a zo bet e-pad enrolladenn ar c'hemenn. Implijer dianav."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
#, fuzzy
msgid "You are banned from posting notices on this site."
msgstr "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Ur gudenn 'zo bet pa veze enrollet an ali."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Ur gudenn 'zo bet pa veze enrollet boest degemer ar strollad."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Dibosupl eo enrollañ titouroù ar strollad lec'hel."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6215,14 +6920,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6292,35 +6997,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Deuet mat da %1$s, @%2$s !"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Dibosupl eo krouiñ ar strollad."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Dibosupl eo termeniñ URI ar strollad."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Dibosupl eo en em enskrivañ d'ar strollad."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Dibosupl eo enrollañ titouroù ar strollad lec'hel."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "N'hallit ket dilemel ho kont."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6357,213 +7083,216 @@ msgid "Other"
msgstr "All"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Pajenn hep anv"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Diskouez muioc'h"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
#, fuzzy
msgid "Primary site navigation"
msgstr "Arventennoù diazez al lec'hienn"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr ""
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Personel"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Kemmañ ho chomlec'h postel, hoc'h avatar, ho ger-tremen, ho profil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Kont"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Liammañ d'ar servijoù"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Kevreañ"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Kemmañ arventennoù al lec'hienn"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Merañ"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Pediñ"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Digevreañ diouzh al lec'hienn"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Digevreañ"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Krouiñ ur gont"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "En em enskrivañ"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Kevreañ d'al lec'hienn"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Kevreañ"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Sikour din !"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Skoazell"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Klask tud pe un tamm testenn"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Klask"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Ali al lec'hienn"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Selloù lec'hel"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Ali ar bajenn"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
#, fuzzy
msgid "Secondary site navigation"
msgstr "Arventennoù diazez al lec'hienn"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Skoazell"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Diwar-benn"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAG"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "AIH"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Prevezded"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Mammenn"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Darempred"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Badj"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Aotre-implijout ar meziant StatusNet"
@@ -6571,7 +7300,7 @@ msgstr "Aotre-implijout ar meziant StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6579,7 +7308,7 @@ msgid ""
msgstr ""
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** a zo ur servij microblogging."
@@ -6588,7 +7317,7 @@ msgstr "**%%site.name%%** a zo ur servij microblogging."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6597,50 +7326,50 @@ msgid ""
msgstr ""
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Aotre-implijout diwar-benn danvez al lec'hienn"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, fuzzy, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Kompren a ran ez eo prevez danvez ha roadennoù %1$s."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Pajennadur"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "War-lerc'h"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Kent"
@@ -6649,10 +7378,80 @@ msgstr "Kent"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Yezh \"%s\" dizanv."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Skeudenn"
+msgid "Cannot force remote user to subscribe."
+msgstr "Dibosupl eo hizivaat ar c'houmanant ez emgefre."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Dizanv eo seurt ar restr"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Un ezel eus ar strollad-mañ eo dija."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Klask alioù en danvez"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "N'eus ket eus an implijer-se."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6725,7 +7524,7 @@ msgid "User configuration"
msgstr "Kefluniadur an implijer"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Implijer"
@@ -6769,19 +7568,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6804,28 +7607,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Diposubl eo ensoc'hañ ur gemenadenn"
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr ""
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Arlun evit ar poellad-mañ"
@@ -6936,17 +7743,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Disteuler"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Arabat dilemel ar c'hemenn-mañ"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Aozer"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Pourvezer"
@@ -6978,6 +7791,11 @@ msgstr "N'eo ket aotreet kemmañ ar ger-tremen"
msgid "Block"
msgstr "Stankañ"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Stankañ an implijer-mañ"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7093,7 +7911,7 @@ msgstr "Anv klok : %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Lec'hiadur : %s"
@@ -7101,7 +7919,7 @@ msgstr "Lec'hiadur : %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Lec'hienn Web : %s"
@@ -7345,26 +8163,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "N'eo bet kavet restr kefluniadur ebet. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Pedadennoù bet kaset d'an implijerien da-heul :"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Mont d'ar meziant staliañ"
@@ -7409,38 +8227,65 @@ msgstr "Poeladoù kevreet."
msgid "Database error"
msgstr "Fazi bank roadennoù"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Diverkañ an implijer-mañ"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Enporzhiañ ar restr"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image.
#: lib/designsettings.php:139
-#, fuzzy
msgctxt "RADIO"
msgid "On"
msgstr "Gweredekaet"
#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image.
#: lib/designsettings.php:156
-#, fuzzy
msgctxt "RADIO"
msgid "Off"
msgstr "Diweredekaet"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Adderaouekaat"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Kemmañ al livioù"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Implijout an talvoudoù dre ziouer"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Adlakaat an neuz dre ziouer."
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Adlakaat an arventennoù dre ziouer"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Enrollañ an design"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Dibosupl eo hizivaat ho design."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
@@ -7448,14 +8293,38 @@ msgstr "Adderaouekaat"
msgid "Design defaults restored."
msgstr "Enrollet eo bet an arventennoù design."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Dibosupl eo nullañ moned ar poellad : "
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Tennañ eus ar pennrolloù"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Tennañ ar pennroll"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Ouzhpennañ d'ar pennrolloù"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Pennrolloù"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7472,6 +8341,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "Mignon ur mignon (FOAF)"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "An holl izili"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7507,34 +8389,34 @@ msgstr "Mont"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL pajenn degemer ar poellad-mañ"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
#, fuzzy
msgid "Describe the group or topic"
msgstr "Deskrivit ho poellad"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Diskrivit ho poellad gant %d arouezenn"
msgstr[1] "Diskrivit ho poellad gant %d arouezenn"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "El lec'h m'emaoc'h, da skouer \"Kêr, Stad (pe Rannvro), Bro\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7640,57 +8522,58 @@ msgstr ""
msgid "This page is not available in a media type you accept"
msgstr ""
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
#, fuzzy
msgid "Unsupported image file format."
msgstr "Diembreget eo ar furmad-se."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, fuzzy, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Re vras eo ar restr ! %d eo ar vent vrasañ evit ur restr."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Enporzhiadenn diglok."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr ""
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr ""
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Restr bet kollet."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Dizanv eo seurt ar restr"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
-#, fuzzy, php-format
+#: lib/imagefile.php:303
+#, php-format
msgid "%dMB"
msgid_plural "%dMB"
-msgstr[0] "Mo"
-msgstr[1] "Mo"
+msgstr[0] "%d Mo"
+msgstr[1] "%d Mo"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
-#, fuzzy, php-format
+#: lib/imagefile.php:307
+#, php-format
msgid "%dkB"
msgid_plural "%dkB"
-msgstr[0] "Ko"
-msgstr[1] "Ko"
+msgstr[0] "%d Ko"
+msgstr[1] "%d Ko"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7711,24 +8594,26 @@ msgstr "Yezh \"%s\" dizanv."
msgid "Leave"
msgstr "Kuitaat"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
#, fuzzy
msgid "Login with a username and password"
msgstr "Kevreit gant ho anv implijer hag ho ker-tremen."
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Digeriñ ur gont nevez"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Kadarnadur ar chomlec'h postel"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7747,14 +8632,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, fuzzy, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "Ne heuilh %s den ebet."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7766,7 +8651,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7783,14 +8668,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, fuzzy, php-format
msgid "Bio: %s"
msgstr "Lec'hiadur : %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Chomlec'h postel nevez evit embann e %s"
@@ -7798,7 +8683,7 @@ msgstr "Chomlec'h postel nevez evit embann e %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7813,34 +8698,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Statud %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Kadarnadur SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, fuzzy, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "Niverenn pellgomz o c'hortoz bezañ kadarnaet."
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
-msgstr ""
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
+msgstr "Nac'het ez eus bet deoc'h en em goumanantiñ."
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7858,7 +8743,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Kemenadenn personel nevez a-berzh %s"
@@ -7867,7 +8752,7 @@ msgstr "Kemenadenn personel nevez a-berzh %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7888,7 +8773,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll."
@@ -7898,7 +8783,7 @@ msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll."
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -7920,7 +8805,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -7933,7 +8818,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) en deus kaset deoc'h ur c'hemenn"
@@ -7944,7 +8829,7 @@ msgstr "%s (@%s) en deus kaset deoc'h ur c'hemenn"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -7971,21 +8856,17 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
#, fuzzy
msgid "Only the user can read their own mailboxes."
msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr "eus"
-
#: lib/mailhandler.php:37
#, fuzzy
msgid "Could not parse message."
@@ -8015,38 +8896,6 @@ msgstr "Diembreget eo ar furmad-se."
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Mankout a ra un doser padennek."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8068,7 +8917,7 @@ msgstr "Diposubl eo termeniñ an implijer mammenn."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8077,7 +8926,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8112,19 +8961,28 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Kas"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Kemennadenn"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "eus"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
#, fuzzy
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8140,11 +8998,11 @@ msgstr "Kas un ali"
msgid "What's up, %s?"
msgstr "Penaos 'mañ kont, %s ?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Stagañ"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Stagañ ur restr"
@@ -8163,55 +9021,59 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "R"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "K"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "e"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "en amdro"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Adkemeret gant"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Respont d'ar c'hemenn-mañ"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Respont"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Dilemel ar c'hemenn-mañ"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Ali adkemeret"
@@ -8249,77 +9111,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "Dibosupl eo dilemel ar c'houmanant."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Hiniennel"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Respontoù"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Pennrolloù"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Boest resev"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Ar gemennadennoù ho peus resevet"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Boest kas"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Ar c'hemenadennoù kaset ganeoc'h"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, fuzzy, php-format
msgid "Tags in %s's notices"
msgstr "N'eus ali nevez evit an implijer-mañ"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Dianav"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Koumanantoù"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "An holl koumanantoù"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Ar re koumanantet"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "An holl re koumanantet"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID an implijer"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Ezel abaoe"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Strolladoù"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Keidenn pemdeziek"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "An holl strolladoù"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8337,9 +9235,8 @@ msgid "Recent tags"
msgstr "Merkoù nevez"
#: lib/publicgroupnav.php:88
-#, fuzzy
msgid "Featured"
-msgstr "Krouet"
+msgstr "Heverk"
#: lib/publicgroupnav.php:92
msgid "Popular"
@@ -8368,7 +9265,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Stankañ an implijer-mañ eus ar strollad-se"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "N'eo ket bet kavet an hentenn API !"
@@ -8438,14 +9335,14 @@ msgid "Silence this user"
msgstr "Diverkañ an implijer-mañ"
#: lib/subgroupnav.php:83
-#, fuzzy, php-format
+#, php-format
msgid "People %s subscribes to"
-msgstr "Koumanantet da %s"
+msgstr "Koumanantoù %s"
#: lib/subgroupnav.php:91
-#, fuzzy, php-format
+#, php-format
msgid "People subscribed to %s"
-msgstr "Koumanantet da %s"
+msgstr "Koumananterien %s"
#: lib/subgroupnav.php:99
#, php-format
@@ -8457,10 +9354,14 @@ msgid "Invite"
msgstr "Pediñ"
#: lib/subgroupnav.php:106
-#, fuzzy, php-format
+#, php-format
msgid "Invite friends and colleagues to join you on %s"
msgstr "Pediñ mignoned hag kenseurted da zont ganeoc'h war %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "En em goumanantiñ d'an implijer-mañ"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8543,9 +9444,8 @@ msgid "Unblock"
msgstr "Distankañ"
#: lib/unsandboxform.php:69
-#, fuzzy
msgid "Unsandbox"
-msgstr "Poull-traezh"
+msgstr "Kuitaat ar poull-traezh"
#: lib/unsandboxform.php:80
#, fuzzy
@@ -8577,123 +9477,135 @@ msgstr "Digoumanantiñ"
msgid "User %1$s (%2$d) has no profile record."
msgstr "An implijer-mañ n'eus profil ebet dezhañ."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Kemmañ an Avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Obererezh an implijer"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Diverkadenn an implijer o vont war-raok..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Kemmañ arventennoù ar profil"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Aozañ"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Kas ur gemennadenn war-eeun d'an implijer-mañ"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Kemennadenn"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Habaskaat"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Rol an implijer"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Merour"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Habasker"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Nann-kevreet."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "un nebeud eilennoù zo"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "1 vunutenn zo well-wazh"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "tro ur vunutenn zo"
+msgstr[1] "tro %d munutenn zo"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "1 eurvezh zo well-wazh"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "tro un eur zo"
+msgstr[1] "tro %d eur zo"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "1 devezh zo well-wazh"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "tro un devezh zo"
+msgstr[1] "tro %d devezh zo"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "miz zo well-wazh"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "tro ur miz zo"
+msgstr[1] "tro %d miz zo"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "bloaz zo well-wazh"
-#: lib/webcolor.php:80
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
-msgid "%s is not a valid color!"
-msgstr "n'eo ket %s ul liv reizh !"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
-#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "N'eo ket %s ul liv reizh ! Implijit 3 pe 6 arouezenn heksdekvedennel."
@@ -8717,32 +9629,18 @@ msgstr[1] ""
"arouezenn ho peus lakaet."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Ment direizh."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "N'eus bet diferet ID implijer ebet."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po
index cb4381819e..afe4de11fa 100644
--- a/locale/ca/LC_MESSAGES/statusnet.po
+++ b/locale/ca/LC_MESSAGES/statusnet.po
@@ -1,7 +1,8 @@
# Translation of StatusNet - Core to Catalan (Català)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Aleator
+# Author: Brion
# Author: El libre
# Author: Martorell
# Author: McDutchie
@@ -15,17 +16,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:29+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:17+0000\n"
"Language-Team: Catalan \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -82,8 +83,9 @@ msgid "Save access settings"
msgstr "Desa els paràmetres d'accés"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -93,13 +95,13 @@ msgstr "Desa els paràmetres d'accés"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Desa"
@@ -107,7 +109,7 @@ msgstr "Desa"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "No existeix la pàgina."
@@ -117,6 +119,8 @@ msgstr "No existeix la pàgina."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -132,13 +136,23 @@ msgstr "No existeix la pàgina."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -146,15 +160,15 @@ msgstr "No existeix la pàgina."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "No existeix l'usuari."
@@ -168,9 +182,10 @@ msgstr "%1$s i amics, pàgina %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s i amics"
@@ -285,7 +300,7 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -319,7 +334,21 @@ msgstr ""
"dels següents: sms, im, none (cap)"
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "No s'ha pogut actualitzar l'usuari."
@@ -329,18 +358,23 @@ msgstr "No s'ha pogut actualitzar l'usuari."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "L'usuari no té perfil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "No s'ha pogut desar el perfil."
@@ -350,8 +384,8 @@ msgstr "No s'ha pogut desar el perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -371,13 +405,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "No s'han pogut desar els paràmetres de disseny."
@@ -385,48 +420,59 @@ msgstr "No s'han pogut desar els paràmetres de disseny."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "No s'ha pogut actualitzar el vostre disseny."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "Principal"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s línia temporal"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Subscripcions de %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Preferits"
+msgstr "%s preferits"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "%s membre/s en el grup"
+msgstr "%s pertinències al grup"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "No podeu bloquejar-vos a vosaltres mateixos!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Ha fallat el blocatge de l'usuari."
@@ -482,7 +528,8 @@ msgstr "No s'ha trobat l'usuari destinatari."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"No es pot enviar missatges directes a usuaris que no siguin els vostres "
"amics."
@@ -507,8 +554,9 @@ msgid "This status is already a favorite."
msgstr "Aquest estat ja és un preferit."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "No es pot crear el preferit."
@@ -518,7 +566,8 @@ msgid "That status is not a favorite."
msgstr "L'estat no és un preferit."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "No s'ha pogut eliminar el preferit."
@@ -563,9 +612,9 @@ msgstr "No s'ha pogut trobar l'usuari de destinació."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Aquest sobrenom ja existeix. Prova un altre. "
@@ -573,21 +622,22 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. "
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Sobrenom no vàlid."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "La pàgina personal no és un URL vàlid."
@@ -595,23 +645,24 @@ msgstr "La pàgina personal no és un URL vàlid."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "El vostre nom sencer és massa llarg (màx. 255 caràcters)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -622,9 +673,9 @@ msgstr[1] "La descripció és massa llarga (màx. %d caràcters)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "La localització és massa llarga (màx. 255 caràcters)."
@@ -634,8 +685,8 @@ msgstr "La localització és massa llarga (màx. 255 caràcters)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -652,18 +703,16 @@ msgstr "L'àlies no és vàlid: «%s»."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "L'àlies «%s» ja està en ús. Proveu-ne un altre."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "L'àlies no pot ser el mateix que el sobrenom."
@@ -674,28 +723,32 @@ msgstr "L'àlies no pot ser el mateix que el sobrenom."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "No s'ha trobat el grup."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Ja sou membre del grup."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "L'administrador us ha blocat del grup."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "No s'ha pogut afegir l'usuari %1$s al grup %2$s."
@@ -707,9 +760,11 @@ msgstr "No sou un membre del grup."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -746,7 +801,7 @@ msgid "Upload failed."
msgstr "La pujada ha fallat."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "El testimoni de sol·licitud o verificador no és vàlid."
@@ -766,20 +821,25 @@ msgid "Request token already authorized."
msgstr "El testimoni de sol·licitud ja està autoritzat."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -798,18 +858,22 @@ msgstr "Error de la base de dades en inserir l'oauth_token_association."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Enviament de formulari inesperat."
@@ -859,29 +923,31 @@ msgstr "Compte"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Sobrenom"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Contrasenya"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -954,6 +1020,7 @@ msgstr "No podeu eliminar l'estat d'un altre usuari."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -973,38 +1040,50 @@ msgstr "No podeu repetir els vostres propis avisos."
msgid "Already repeated that notice."
msgstr "Avís duplicat."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "El mètode HTTP no està implementat."
-#: actions/apistatusesshow.php:141
-#, php-format
-msgid "Unsupported format: %s"
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
+#, fuzzy, php-format
+msgid "Unsupported format: %s."
msgstr "Format no permès: %s"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "S'ha eliminat l'estat."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "No s'ha trobat cap estatus amb la ID trobada."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Només es pot eliminar fent servir el format Atom."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "No es pot eliminar l'avís."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "S'ha eliminat l'avís %d"
@@ -1063,7 +1142,7 @@ msgstr "%1$s actualitzacions preferides per %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "No s'ha pogut generar un canal per al grup - %s."
@@ -1084,13 +1163,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s actualitzacions que responen a avisos de %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s línia temporal pública"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s actualitzacions de tothom!"
@@ -1134,211 +1214,257 @@ msgstr "Només l'usuari pot afegir a la pròpia línia temporal."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
msgstr "Només accepta AtomPub per als canals Atom."
-#: actions/apitimelineuser.php:310
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr "L'enviament Atom ha de ser una entrada Atom."
+msgstr "L'enviament Atom no ha de ser buit."
-#: actions/apitimelineuser.php:315
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr "L'enviament Atom ha de ser una entrada Atom."
+msgstr "L'enviament Atom ha de ser un XML ben format."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr "L'enviament Atom ha de ser una entrada Atom."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
-#, fuzzy
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr "Només es poden gestionar les activitats enviades."
+msgstr "Només es poden gestionar les activitats POST."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
-#, fuzzy, php-format
+#: actions/apitimelineuser.php:345
+#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr "Només es pot gestionar l'activitat dels tipus d'objecte «%s»"
+msgstr "No es pot gestionar l'activitat del tipus d'objecte «%s»"
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Cerca el contingut dels avisos"
+msgstr "No hi ha contingut de l'avís %d"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "L'avís amb URI «%s» amb ja existeix."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr "Enviament AtomPub amb un URI %s d'atenció desconegut"
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Mètode API en construcció."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "No s'ha trobat el mètode API!"
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "No existeix el perfil."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "No s'ha pogut inserir una nova subscripció."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-#, fuzzy
-msgid "Can only handle Favorite activities."
-msgstr "Només es poden gestionar les activitats enviades."
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Només es poden gestionar les activitats enviades."
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Desconegut"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Afegeix als preferits"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "No existeix el perfil."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Avisos que %1$s ha preferit a %2$s"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "No es pot afegir la subscripció d'algú altre."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "Només es poden gestionar les activitats preferides."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Només es poden preferir els avisos."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Nota desconeguda."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Ja és una preferit."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
+#, php-format
msgid "%s group memberships"
-msgstr "%s membre/s en el grup"
+msgstr "%s pertinències a grup"
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "%s grups són membres de"
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "Els grups en què %1$s n'és membre a %2$s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "No es pot afegir la pertinència d'algú altre."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-#, fuzzy
-msgid "Can only handle Join activities."
-msgstr "Només es poden gestionar les activitats enviades."
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr "Només es poden gestionar les activitats d'unió."
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Desconegut"
+msgstr "Grup desconegut."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Tots els membres"
+msgstr "Ja és un membre."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Bloquejat per l'administrador."
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "No existeix el fitxer."
+msgstr "No existeix el preferit."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "No s'ha pogut eliminar el preferit."
+msgid "Cannot delete someone else's favorite."
+msgstr "No es pot eliminar què ha preferit algú altre."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "No s'ha trobat el grup."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "Tots els membres"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "El mètode HTTP no està implementat."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "No és un membre."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+msgid "Cannot delete someone else's membership."
+msgstr "No es pot eliminar la pertinència d'algú altre."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "No existeix el perfil."
+#, php-format
+msgid "No such profile id: %d."
+msgstr "No existeix l'id de perfil: %d"
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "No estàs subscrit a aquest perfil."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "El perfil %1$d no està subscrit al perfil %2$d."
-#: actions/atompubshowsubscription.php:154
-#, fuzzy
-msgid "Can't delete someone else's subscription"
-msgstr "No s'ha pogut eliminar l'autosubscripció."
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr "No es pot eliminar la subscripció d'algú altre."
-#: actions/atompubsubscriptionfeed.php:150
-#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "Gent subscrita a %s"
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "Gent a qui %1$s ha subscrit a %2$s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
-#, fuzzy
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
-msgstr "Només es poden gestionar les activitats enviades."
+msgstr "Només es poden gestionar les activitats de seguiment."
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Només es pot seguir gent."
-#: actions/atompubsubscriptionfeed.php:262
-#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Tipus de fitxer desconegut"
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "Perfil desconegut %s"
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "Ja esteu subscrit a %s."
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1348,11 +1474,15 @@ msgstr "No existeix l'adjunció."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Cap sobrenom."
@@ -1369,7 +1499,7 @@ msgstr "La mida no és vàlida."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1383,41 +1513,51 @@ msgstr ""
"Podeu pujar el vostre avatar personal. La mida màxima del fitxer és %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "L'usuari que no coincideix amb cap perfil"
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Configuració de l'avatar"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Original"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Vista prèvia"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Elimina"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Puja"
@@ -1433,33 +1573,81 @@ msgstr "Retalla"
msgid "No file uploaded."
msgstr "No s'ha carregat cap fitxer."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+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."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "S'ha perdut el nostre fitxer de dades."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Avatar actualitzat."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Error en actualitzar avatar."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "S'ha eliminat l'avatar."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Fes una còpia de seguretat del compte"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr ""
+"Només els usuaris que han iniciat una sessió poden fer una còpia de "
+"seguretat del compte."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "No podeu fer una còpia de seguretat del compte."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+"Podeu fer una còpia de seguretat de les dades del vostre compte en format Activity Streams. Es tracta d'una "
+"característica experimental i proporciona una còpia de seguretat que no és "
+"completa; informació del compte privada, com ara les adreces electròniques o "
+"de MI, no són incloses. Per altra banda, els fitxers pujats i els missatges "
+"directes tampoc es copien."
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Còpia de seguretat"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+#, fuzzy
+msgid "Backup your account."
+msgstr "Fes una còpia de seguretat del compte"
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1467,7 +1655,8 @@ msgstr "Ja heu blocat l'usuari."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Bloca l'usuari"
@@ -1490,15 +1679,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "No"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "No bloquis l'usuari"
#. TRANS: Button label on the user block form.
@@ -1509,15 +1698,15 @@ msgstr "No bloquis l'usuari"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Sí"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Bloca aquest usuari"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1525,31 +1714,6 @@ msgstr "Bloca aquest usuari"
msgid "Failed to save block information."
msgstr "No s'ha pogut desar la informació del bloc."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "No s'ha trobat el grup."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1619,23 +1783,6 @@ msgstr "Tipus d'adreça desconeguda %s."
msgid "That address has already been confirmed."
msgstr "Aquesta adreça ja ha estat confirmada."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "No s'ha pogut actualitzar l'usuari."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1660,11 +1807,84 @@ msgid "Conversation"
msgstr "Conversa"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Avisos"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr "Només els usuaris que han iniciat una sessió poden eliminar el compte."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "No podeu eliminar el vostre compte."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "N'estic segur."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "Heu d'escriure «%s» exactament dins del quadre."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "S'ha eliminat el compte."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Elimina el compte"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"Això eliminarà permanentment les dades del vostre compte "
+"d'aquest servidor."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+"És molt recomanable que feu una còpia de seguretat de les "
+"vostres dades abans d'eliminar res."
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Confirma"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Introduïu «%s» per a confirmar que voleu eliminar el vostre compte."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Elimina permanentment el compte"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1678,14 +1898,14 @@ msgstr "No s'ha trobat l'aplicació."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "No sou el propietari d'aquesta aplicació."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "S'ha produït un problema amb el testimoni de la vostra sessió."
@@ -1708,12 +1928,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "No eliminis l'aplicació"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Elimina aquesta aplicació"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1722,8 +1944,10 @@ msgid "You must be logged in to delete a group."
msgstr "Heu d'haver iniciat una sessió per eliminar un grup."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Cap sobrenom o ID."
@@ -1765,24 +1989,32 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+#, fuzzy
+msgid "Do not delete this group."
msgstr "No eliminis aquest grup"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+#, fuzzy
+msgid "Delete this group."
msgstr "Elimina aquest grup"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "No heu iniciat una sessió."
@@ -1809,27 +2041,39 @@ msgstr "Esteu segur que voleu eliminar aquest avís?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "No eliminis aquest avís"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Elimina aquest avís"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "No podeu eliminar els usuaris."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Només podeu eliminar usuaris locals."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Elimina l'usuari"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Elimina l'usuari"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1837,78 +2081,102 @@ msgstr ""
"Esteu segur que voleu eliminar l'usuari? S'esborraran totes les dades de "
"l'usuari de la base de dades, sense cap còpia de seguretat."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "No eliminis aquest usuari"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Elimina l'usuari"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Disseny"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Paràmetres de disseny d'aquest lloc StatusNet."
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "L'URL del logotip no és vàlid."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "L'URL SSL del logotip no és vàlid."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Tema no disponible: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Canvia el logotip"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logotip del lloc"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "Logotip SSL"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Canvia el tema"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Tema del lloc"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Tema del lloc."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Tema personalitzat"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Podeu pujar un tema personalitzat de l'StatusNet amb un arxiu ZIP."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Canvia la imatge de fons"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Fons"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1917,98 +2185,106 @@ msgstr ""
"Podeu pujar una imatge de fons per al lloc. La mida màxima de fitxer és %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Activada"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Desactivada"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Activa o desactiva la imatge de fons."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Posa en mosaic la imatge de fons"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
msgstr "Canvia els colors"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Contingut"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Barra lateral"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Text"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Enllaços"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avançat"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS personalitzat"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Utilitza els paràmetres per defecte"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Restaura els dissenys per defecte"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Torna a restaurar al valor per defecte"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Desa"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Desa el disseny"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Aquesta avís no és un preferit!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Afegeix als preferits"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
+msgid "No such document \"%s\"."
msgstr "No existeix el document «%s»"
#. TRANS: Title for "Edit application" form.
@@ -2023,7 +2299,7 @@ msgid "You must be logged in to edit an application."
msgstr "Heu d'iniciar una sessió per editar una aplicació."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "No hi ha tal aplicació."
@@ -2033,61 +2309,71 @@ msgid "Use this form to edit your application."
msgstr "Utilitza el formulari per editar la vostra aplicació."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Cal un nom."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "El nom és massa llarg (màx. 255 caràcters)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "El nom ja es troba en ús. Proveu-ne un altre."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Cal una descripció."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "L'URL font és massa llarg."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "La URL d'origen no és vàlida."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Cal una organització."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "El camp organització és massa llarg (màx. 255 caràcters)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Cal una pàgina d'inici de l'organització."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "La crida de retorn és massa llarga."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "L'URL de la crida de retorn no és vàlid."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "No s'ha pogut actualitzar l'aplicació."
@@ -2098,14 +2384,17 @@ msgid "Edit %s group"
msgstr "Edita el grup %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Heu d'haver iniciat una sessió per crear un grup."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Heu de ser administrador per editar el grup."
@@ -2116,63 +2405,65 @@ msgstr "Utilitza aquest formulari per editar el grup."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "L'àlies no és vàlid «%s»"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "No s'ha pogut actualitzar el grup."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "No s'han pogut crear els àlies."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Configuració guardada."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Paràmetres del correu electrònic"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Gestioneu com rebeu correu de %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Adreça de correu electrònic"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Adreça electrònica confirmada actualment."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Elimina"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2185,134 +2476,136 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Adreça electrònica, com ara «nomusuari@example.org»"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Afegeix"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Correu electrònic entrant"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Vull publicar avisos amb el correu electrònic."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Envia correu electrònic a aquesta adreça per publicar nous avisos."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Estableix una nova adreça electrònica d'enviament; cancel·la l'antiga."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
+"Per enviar avisos per correu, cal que tingueu una adreça electrònica única "
+"en aquest servidor."
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nou"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Preferències del correu electrònic"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Envia'm avisos per correu electrònic quan algú nou se'm subscrigui."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Envia'm un correu electrònic quan algú afegeixi un avís meu com a preferit."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
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."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Envia'm un correu electrònic quan algú m'enviï una resposta amb @."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
"Permetre que els amics em cridin l'atenció i m'enviïn un correu electrònic."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publica una MicroID per al meu correu electrònic."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "S'han desat les preferències del correu electrònic."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "No hi ha cap adreça electrònica."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+msgid "Cannot normalize that email address."
msgstr "No es pot normalitzar l'adreça electrònica."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Adreça de correu electrònic no vàlida."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Ja és la vostra adreça electrònica."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "L'adreça electrònica ja pertany a un altre usuari."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
msgstr "No s'ha pogut inserir el codi de confirmació."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2322,89 +2615,103 @@ msgstr ""
"codi i les instruccions per utilitzar-lo."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Cap confirmació pendent per cancel·lar."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Aquesta l'adreça de correu electrònic incorrecta."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
msgstr "No s'ha pogut eliminar la confirmació de correu electrònic."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "S'ha cancel·lat la confirmació de correu electrònic."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Aquest no és el teu correu electrònic"
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "S'ha eliminat l'adreça de correu electrònic."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "No hi ha cap direcció de correu electrònic entrant."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr "No s'ha pogut actualitzar el registre de l'usuari."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Eliminat el correu electrònic entrant."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Nou correu electrònic entrant afegit."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Aquest avís ja és un preferit."
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Fes que deixi de ser preferit"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Avisos populars"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Avisos populars, pàgina %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Els avisos més populars en aquest lloc ara mateix."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Els avisos de preferits apareixen en aquesta pàgina però ningú n'ha preferit "
"cap encara."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2413,7 +2720,9 @@ msgstr ""
"Sigueu el primer en afegir un avís dels vostres preferits fent clic al botó "
"de preferit que es troba al costat dels avisos que us poden agradar."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2422,142 +2731,186 @@ msgstr ""
"Per què no [registreu un compte](%%action.register%%) i sou el primer en "
"afegir un avís als vostres preferits!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Avisos preferits de %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Actualitzacions preferides per %1$s a %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Usuaris destacats"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Usuaris destacats, pàgina %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
-msgstr "Una selecció d'alguns dels millors usuaris a %s"
+msgid "A selection of some great users on %s."
+msgstr "Una selecció d'alguns dels millors usuaris a %s."
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Cap ID d'avís."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Cap avís."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Cap adjunció."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "No s'ha pujat cap adjunt."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Resposta inesperada!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "L'usuari que s'escolta no existeix."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Podeu utilitzar la subscripció local!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Aquest usuari t'ha bloquejat com a subscriptor."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "No esteu autoritzat."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "No s'ha pogut convertir el testimoni de sol·licitud a un d'accés."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "El servei remot utilitza una versió desconeguda del protocol OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "S'ha produït un error en actualitzar el perfil remot."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "No existeix el fitxer."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "No es pot llegir el fitxer."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Rol no vàlid."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Aquest rol està reservat i no pot definir-se."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "No podeu establir rols d'usuari en aquest lloc."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "L'usuari ja té aquest rol."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "No s'ha especificat cap perfil."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "No hi ha cap perfil amb aquesta ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "No s'ha especificat cap grup."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Només un administrador pot blocar membres del grup."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "L'usuari ja està blocat del grup."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "L'usuari no és membre del grup."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Bloca l'usuari del grup"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2568,32 +2921,40 @@ msgstr ""
"grup, i no podrà enviar-hi res ni subscriure-s'hi en el futur."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "No bloquis l'usuari del grup"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Bloca l'usuari del grup"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "S'ha produït un error en la base de dades en blocar l'usuari del grup."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Sense ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Heu d'iniciar una sessió per editar un grup."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Disseny de grup"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2601,22 +2962,25 @@ msgstr ""
"Personalitzeu l'aspecte del vostre grup amb una imatge de fons i una paleta "
"de colors de la vostra elecció."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "No s'ha pogut actualitzar el vostre disseny."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
+msgstr "No s'han pogut actualitzar els paràmetres de disseny."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "S'han desat les preferències de disseny."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo del grup"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2624,112 +2988,129 @@ msgstr ""
"Podeu pujar una imatge com a logotip del vostre grup. La mida màxima del "
"fitxer és %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Puja"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Retalla"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Trieu una àrea quadrada de la imatge perquè en sigui el logotip."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo actualitzat."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Error en actualitzar logo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s membre/s en el grup"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s membres del grup, pàgina %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "La llista dels usuaris d'aquest grup."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Admin"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Bloca"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Bloca aquest usuari"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Fes l'usuari un administrador del grup"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Fes-lo administrador"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Fes aquest usuari administrador"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Actualitzacions dels membres de %1$s el %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grups"
-#: actions/groups.php:64
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
#, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Grups, pàgina %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Els grups de %%%%site.name%%%% us permeten trobar-vos i parlar amb gent "
"d'interessos semblants. Després d'unir-vos a un grup, podeu enviar missatges "
"a altres membres emprant la sintaxi «!groupname». No veieu cap grup que us "
"agradi? Proveu de [cercar-ne un](%%%%action.groupsearch%%%%) o [comenceu-ne "
-"un de propi!](%%%%action.newgroup%%%%)"
+"un de propi!](%%%%action.newgroup%%%%)!"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Crea un grup nou"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2738,25 +3119,33 @@ msgstr ""
"Cerca grups a %%site.name%% per nom, ubicació o descripció. Separeu els "
"termes de cerca amb espais; han de contenir com a mínim 3 caràcters."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Cerca de grups"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Cap resultat."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Si no podeu trobar el grup que cerqueu, podeu provar de [crear-lo](%%action."
"newgroup%%) també."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2766,139 +3155,142 @@ msgstr ""
"un grup](%%action.newgroup%%)!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Només un administrador pot desblocar els membres del grup."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "L'usuari no està blocat del grup."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "S'ha produït un error en eliminar el bloc."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Paràmetres de missatgeria instantània"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Podeu enviar i rebre avisos a través de [missatges instantanis](%%doc.im%%) "
"de Jabber/GTalk. Configureu la vostra adreça i opcions a continuació."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "La MI no és disponible."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Adreça de missatgeria instantània"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Adreça actual Jabber/Gtalk confirmada."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk 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?)"
+"A l'espera d'una confirmació per a aquesta adreça. Reviseu al vostre compte "
+"de Jabber/GTalk si hi ha un missatge amb més instruccions. (Heu afegit a %s "
+"a la llista d'amics?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Adreça Jabber o GTalk, per exemple «NomUsuari@example.org». Primer, assegureu-"
"vos d'afegir %s a la vostra llista d'amics en el vostre client de "
"missatgeria instantània o al GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Preferències de MI"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Envia'm avisos per Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Envia'm un avís quan el meu estat Jabber/GTalk canvii."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
+msgstr "Envia un avís quan el meu estat Jabber/GTalk canviï."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk 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."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "Publica una MicroID per al meu compte de Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr "Publica una MicroID per a la meva adreça de Jabber/GTalk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "S'han desat les preferències."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Cap Jabber ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
-msgstr "Impossible normalitzar aquest Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+msgid "Cannot normalize that Jabber ID."
+msgstr "No es pot normalitzar aquest Jabber ID."
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
-msgstr "Jabber ID no vàlid"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+msgid "Not a valid Jabber ID."
+msgstr "No és un ID de Jabber vàlid."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Aquest ja és el teu Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Aquest Jabber ID ja està sent utilitzat per un altre usuari."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2907,56 +3299,61 @@ msgstr ""
"S'ha enviat un codi de confirmació a l'adreça de missatgeria instantània que "
"heu afegit. Heu d'acceptar que %s us pugui enviar missatges."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Aquesta adreça de missatgeria instantània és incorrecta."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
msgstr "No s'ha pogut eliminar la confirmació de MI."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "S'ha cancel·lat la confirmació de MI."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Aquest no és el teu Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "S'ha eliminat l'adreça de MI."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Safata d'entrada de %1$s - pàgina %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Safata d'entrada de %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
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."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "S'han inhabilitat les invitacions."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2964,18 +3361,18 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "L'adreça electrònica no és vàlida: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "S'han enviat les invitacions"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Convida nous usuaris"
@@ -2983,7 +3380,7 @@ msgstr "Convida nous usuaris"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Ja esteu subscrit a aquests usuari:"
@@ -2991,7 +3388,7 @@ msgstr[1] "Ja esteu subscrit a aquests usuaris:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3000,7 +3397,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3011,7 +3408,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Invitació enviada a la persona següent:"
@@ -3019,7 +3416,7 @@ msgstr[1] "Invitacions enviades a les persones següents:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3028,35 +3425,35 @@ msgstr ""
"registrin al lloc. Gràcies per fer créixer la comunitat!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
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."
+"Feu servir aquest formulari per convidar els vostres amics i col·legues a "
+"utilitzar aquest servei."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Adreces de correu electrònic"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
-msgstr "Adreces d'amics per convidar (una per línia)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
+msgstr "Adreces d'amics per convidar (una per línia)."
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Missatge personal"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
-msgstr "Opcionalment pots afegir un missatge a la invitació."
+msgstr "Opcionalment podeu afegir un missatge a la invitació."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Envia"
@@ -3064,7 +3461,7 @@ msgstr "Envia"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s us ha convidat a unir-vos al grup %2$s"
@@ -3074,7 +3471,7 @@ msgstr "%1$s us ha convidat a unir-vos al grup %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3131,44 +3528,51 @@ msgstr ""
"\n"
"Sincerely, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Heu d'haver iniciat una sessió per unir-vos a un grup."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s s'ha unit al grup %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Heu d'haver iniciat una sessió per deixar un grup."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "No ets membre d'aquest grup."
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s ha abandonat el grup %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Llicència"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Llicència d'aquest lloc basat en StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "La selecció de la llicència no és vàlida."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3176,128 +3580,137 @@ msgstr ""
"Heu d'especificar el propietari del contingut quan utilitzeu la llicència "
"«Tots els drets reservats»."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr ""
"El títol de la llicència no és vàlid. La longitud màxima és 255 caràcters."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "L'URL de la llicència no és vàlid."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "L'URL de la imatge de la llicència no és vàlid."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "L'URL de la llicència ha de ser en blanc o bé un URL vàlid."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "La imatge de la llicència ha de ser en blanc o bé un URL vàlid."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Selecció de llicència"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privat"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Tots els drets reservats"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Tipus"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Seleccioneu la llicència"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Detalls de la llicència"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Propietari"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Nom del propietari del contingut del lloc (si s'hi aplica)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Títol de la llicència"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "El títol de la llicència."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL de la llicència"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL per a més informació de la llicència."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL de la imatge de la llicència"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL de la imatge que es mostrarà juntament amb la llicència."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Desa"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Desa els paràmetres de la llicència"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Ja hi heu iniciat una sessió."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Nom d'usuari o contrasenya incorrectes."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
"S'ha produït un error en definir l'usuari. Probablement no hi esteu "
"autoritzat."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Inici de sessió"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Accedir al lloc"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Recorda'm"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Inicia la sessió automàticament en el futur; no ho activeu en ordinadors "
"compartits!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Contrasenya oblidada o perduda?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3305,11 +3718,11 @@ msgstr ""
"Per raons de seguretat, torneu a escriure el vostre nom d'usuari i "
"contrasenya abans de canviar la vostra configuració."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Inicieu una sessió amb nom d'usuari i contrasenya"
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3346,19 +3759,22 @@ msgid "New application"
msgstr "Aplicació nova"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Heu d'haver iniciat una sessió per registrar-hi una aplicació."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Utilitzeu aquest formulari per crear una nova aplicació."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "URL d'origen requerida."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "No s'ha pogut crear l'aplicació."
@@ -3367,11 +3783,21 @@ msgstr "No s'ha pogut crear l'aplicació."
msgid "New group"
msgstr "Nou grup"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr "No teniu permisos per crear grups en aquest lloc."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Utilitza aquest formulari per crear un nou grup."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr "L'àlies no pot ser el mateix que el sobrenom."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nou missatge"
@@ -3421,7 +3847,9 @@ msgstr "Nou avís"
msgid "Notice posted"
msgstr "S'ha publicat l'avís"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3430,16 +3858,21 @@ 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
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Cerca de text"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Cerca els resultats de «%s» a %s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3448,7 +3881,9 @@ msgstr ""
"Sigueu el primer en [enviar sobre aquest tema](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3457,14 +3892,17 @@ msgstr ""
"Per què no [registreu un compte](%%%%action.register%%%%) i sou el primer "
"[en parlar del tema](%%%%action.newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Actualitzacions amb «%s»"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr ""
"Les actualitzacions que coincideixen amb el terme de cerca «%1$s» el %2$s!"
@@ -3506,30 +3944,30 @@ msgid "You have not registered any applications yet."
msgstr "No teniu cap aplicació registrada encara."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Aplicacions connectades"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "Les connexions següents existeixen per al vostre compte."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "No sou usuari de l'aplicació."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "No s'ha pogut revocar l'accés de l'aplicació: %s"
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3539,14 +3977,14 @@ msgstr ""
"2$s."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "No heu autoritzat cap aplicació perquè utilitzi el vostre compte."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3555,6 +3993,16 @@ msgstr ""
"Sou un desenvolupador? [Registreu una aplicació de client OAuth](%s) per "
"utilitzar-la amb una instància de l'StatusNet."
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "No s'ha trobat el mètode API!"
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "No s'ha trobat l'avís pare."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "L'avís no té cap perfil."
@@ -3564,6 +4012,16 @@ msgstr "L'avís no té cap perfil."
msgid "%1$s's status on %2$s"
msgstr "estat de %1$s a %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "No s'ha trobat l'usuari destinatari."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3577,16 +4035,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Si us plau, només URL %s sobre HTTP pla."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Format de data no suportat."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Cerca de gent"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Cerca d'avisos"
@@ -3600,69 +4059,80 @@ msgid "Manage various other options."
msgstr "Gestiona altres opcions diferents."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (servei gratuït)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Escurça els URL amb"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Servei d'auto-escurçament a utilitzar."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Visualitza els dissenys de perfil"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Mostra o amaga els dissenys de perfil."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr ""
"El servei d'autoescurçament d'URL és massa llarga (màxim 50 caràcters)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "No s'ha especificat cap ID d'usuari."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "No s'ha especificat cap testimoni d'inici de sessió."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "No s'ha sol·licitat cap testimoni d'inici de sessió."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "No s'ha especificat un testimoni d'inici de sessió vàlid."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "El testimoni d'inici de sessió ha vençut."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Safata de sortida de %1$s - pàgina %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Safata de sortida per %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
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 "
@@ -3676,7 +4146,8 @@ msgstr "Canvia la contrasenya"
msgid "Change your password."
msgstr "Canvieu la vostra contrasenya"
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Contrasenya canviada."
@@ -3684,48 +4155,47 @@ msgstr "Contrasenya canviada."
msgid "Old password"
msgstr "Antiga contrasenya"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nova contrasenya"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
-msgstr "6 o més caràcters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
+msgstr "6 o més caràcters."
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Confirma"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Igual a la contrasenya de dalt"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
+msgstr "Igual que la contrasenya de dalt"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Canvia"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: 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:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Les contrasenyes no coincideixen."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Contrasenya antiga incorrecta"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "S'ha produït un error en desar l'usuari; no és vàlid."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
msgstr "No es pot desar la nova contrasenya."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Contrasenya guardada."
@@ -3931,7 +4401,7 @@ msgstr "Directori on es troben els fons."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Adjuncions"
@@ -3999,7 +4469,9 @@ msgstr "Servidor on dirigir les sol·licituds SSL."
msgid "Save paths"
msgstr "Desa els camins"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4008,7 +4480,8 @@ 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
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Cerca de gent"
@@ -4034,12 +4507,12 @@ msgstr ""
"lloc."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Configuració del perfil"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4047,40 +4520,41 @@ msgstr ""
"pugui conèixer millor."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Informació del perfil"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
"1-64 lletres en minúscula o nombres, sense signes de puntuació o espais."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Nom complet"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Pàgina personal"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL del vostre web, blog o perfil en un altre lloc."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4088,74 +4562,81 @@ msgstr[0] "Descriviu qui sou i els vostres interessos en %d caràcter"
msgstr[1] "Descriviu qui sou i els vostres interessos en %d caràcters"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Feu una descripció personal i interessos"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Biografia"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Ubicació"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Comparteix la ubicació on estic en enviar avisos"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Etiquetes"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Etiquetes pròpies (lletres, nombres, -, ., i _), per comes o separades amb "
"espais"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Llengua"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Llengua preferida"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Fus horari"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "En quin fus horari us trobeu normalment?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Subscripció automàtica a qualsevol qui em tingui subscrit (ideal per no-"
"humans)"
@@ -4163,7 +4644,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4171,49 +4652,50 @@ msgstr[0] "La biografia és massa llarga (màx. %d caràcter)."
msgstr[1] "La biografia és massa llarga (màx. %d caràcters)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "No s'ha seleccionat el fus horari."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "La llengua és massa llarga (màxim 50 caràcters)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "L'etiqueta no és vàlida: «%s»"
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
msgstr "No es pot actualitzar l'usuari per autosubscriure."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
msgstr "No s'han pogut desar les preferències d'ubicació."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "No s'ha pogut desar el perfil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "No s'han pogut desar les etiquetes."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "No s'han pogut guardar les etiquetes."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "S'ha desat la configuració."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr "Restaura el compte"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4288,6 +4770,12 @@ msgstr ""
"Això és %%site.name%%, un servei de [microblogging](http://ca.wikipedia.org/"
"wiki/Microblogging) basat en l'eina lliure [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s actualitzacions de tothom!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4334,35 +4822,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Núvol d'etiquetes"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Ja heu iniciat una sessió!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "No existeix aquest codi de recuperació."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "No és un codi de recuperació."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Codi de recuperació d'un usuari desconegut."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Error amb el codi de confirmació."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
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
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
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
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4370,69 +4866,99 @@ msgstr ""
"Si heu oblidat o perdut la vostra contrasenya, podeu aconseguir-ne una de "
"nova a partir de l'adreça electrònica que s'ha associat al vostre compte."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Esteu identificat. Introduïu una contrasenya nova a continuació. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Esteu identificat. Introduïu una contrasenya nova a continuació."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Recuperació de la contrasenya"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Sobrenom o adreça electrònica"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"El vostre nom d'usuari en aquest servidor, o la vostra adreça de correu "
"electrònic registrada."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Recupera"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Recupera"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Reinicialitza la contrasenya"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Recupera la contrasenya"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Recuperació de contrasenya sol·licitada"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Contrasenya guardada."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
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!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
+msgstr "6 o més caràcters, i no ho oblideu!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Reinicialitza"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Escriviu un sobrenom o una adreça de correu electrònic."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "No hi ha cap usuari amb aquesta direcció o usuari."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "No hi ha cap adreça de correu electrònic registrada d'aquest usuari."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "S'ha produït un error en desar la confirmació de l'adreça."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4440,122 +4966,119 @@ msgstr ""
"S'han enviat instruccions per recuperar la vostra contrasenya a l'adreça de "
"correu electrònic registrada."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Restabliment de contrasenya inesperat."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "La contrasenya ha de tenir 6 o més caràcters."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "La contrasenya i la confirmació no coincideixen."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Error en configurar l'usuari."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Nova contrasenya guardada correctament. Has iniciat una sessió."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Ho sentim, però només la gent convidada pot registrar-s'hi."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "El codi d'invitació no és vàlid."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registre satisfactori"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registre"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registre no permès."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot 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:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "L'adreça de correu electrònic ja existeix."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "El nom d'usuari o la contrasenya no són vàlids."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Amb aquest formulari, podeu crear un compte nou. Podeu enviar avisos i "
"enllaçar a amics i col·legues. "
-#: actions/register.php:433
-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:438
-msgid "6 or more characters. Required."
-msgstr "6 o més caràcters. Requerit."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Igual a la contrasenya de dalt. Requerit."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Correu electrònic"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenya"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Nom llarg, preferiblement el vostre nom «real»"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL del teu web, blog o perfil en un altre lloc"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "On us trobeu, per exemple «ciutat, comarca (o illa), país»"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
"Entenc que el contingut i les dades de %1$s són privades i confidencials."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "El meu text i els meus fitxers són copyright de %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "El meu text i els meus fitxers es troben sota el meu propi copyright."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Tots els drets reservats."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4565,7 +5088,7 @@ msgstr ""
"les dades privades: contrasenya, adreça de correu electrònic, adreça de "
"missatgeria instantània i número de telèfon."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4598,7 +5121,7 @@ msgstr ""
"\n"
"Gràcies per registrar-vos-hi i esperem que en gaudiu."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4606,7 +5129,7 @@ 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.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4618,79 +5141,85 @@ msgstr ""
"[servei de microblogging compatible](%%doc.openmublog%%), escriviu l'URL del "
"vostre perfil a continuació."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Subscripció remota"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Subscriu a un usuari remot"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Sobrenom de l'usuari"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Sobrenom de l'usuari que vols seguir"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL del perfil"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "URL del teu perfil en un altre servei de microblogging compatible"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Subscriu-m'hi"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "L'URL del perfil és invàlid (format incorrecte)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"L'URL del perfil no és vàlid (no és un document YADIS o no s'ha definit un "
"XRDS vàlid)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
msgstr "Aquest és un perfil local! Inicieu una sessió per subscriure-us-hi."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
msgstr "No s'ha pogut obtenir un testimoni de sol·licitud."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Només els usuaris que han iniciat una sessió poden enviar avisos."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "No s'ha especificat cap avís."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
msgstr "No podeu repetir el vostre propi avís."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Ja havíeu repetit l'avís."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Repetit"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Repetit!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Respostes a %s"
@@ -4741,11 +5270,106 @@ msgstr ""
"Sigueu el primer en [enviar sobre aquest tema](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Respostes a %1$s el %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+"Només els usuaris que han iniciat una sessió poden restaurar el compte."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr "Potser no podeu restaurar el vostre compte."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr "No s'ha pujat cap fitxer."
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"El fitxer pujat excedeix la mida de la directiva upload_max_filesize del php."
+"ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"El fitxer pujat excedeix la mida de la directiva MAX_FILE_SIZE especificada "
+"en el formulari HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "El fitxer pujat només s'ha pujat parcialment."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Manca una carpeta temporal."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "No s'ha pogut escriure el fitxer al disc."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "L'extensió ha aturat la càrrega del fitxer."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Error del sistema en pujar el fitxer."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr "No és un canal Atom."
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+"S'ha restaurat el canal. Els apunts antics haurien d'aparèixer ja a la cerca "
+"i a la vostra pàgina de perfil."
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr "Es restaurarà el perfil. Espereu uns pocs minuts per als resultats."
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+"Podeu pujar una còpia de seguretat de flux en format Activity Streams."
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "Puja el fitxer"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "No podeu revocar els rols d'usuari en aquest lloc."
@@ -4754,7 +5378,7 @@ msgstr "No podeu revocar els rols d'usuari en aquest lloc."
msgid "User doesn't have this role."
msgstr "L'usuari no té aquest rol."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4796,85 +5420,87 @@ msgstr "Activa la sortida de depuració per a les sessions."
msgid "Save site settings"
msgstr "Desa els paràmetres del lloc"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Heu d'haver iniciat una sessió per visualitzar una aplicació."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Perfil de l'aplicació"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Icona"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nom"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organització"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Descripció"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Estadístiques"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Creat per %1$s - %2$s accés per defecte - %3$d usuaris"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Accions d'aplicació"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Reinicialitza la clau i la secreta"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Elimina"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Informació de l'aplicació"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Clau del consumidor"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Secreta del consumidor"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "Sol·licita l'URL del testimoni"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "Accedeix a l'URL del testimoni"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Autoritza l'URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4882,36 +5508,43 @@ msgstr ""
"Nota: Les signatures HMAC-SHA1 són vàlides; però no es permet el mètode de "
"signatures en text net."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Esteu segur que voleu reinicialitzar la clau del consumidor i la secreta?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Avisos preferits de %1$s, pàgina %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "No s'han pogut recuperar els avisos preferits."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Canal dels preferits de %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Canal dels preferits de %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Canal dels preferits de %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4919,7 +5552,9 @@ msgstr ""
"No heu triat cap avís preferit encara. Feu clic al botó de preferit dels "
"avisos que us agraden per arxivar-los per a més endavant i fer-los conèixer."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4928,7 +5563,10 @@ msgstr ""
"%s no ha afegit cap avís als seus preferits encara. Envieu quelcom "
"interessant que pugui afegir-hi :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4938,7 +5576,8 @@ msgstr ""
"Per què no [registreu un compte](%%action.register%%) i sou el primer en "
"afegir un avís als vostres preferits!"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "És una forma de compartir allò que us agrada."
@@ -4956,81 +5595,88 @@ msgid "%1$s group, page %2$d"
msgstr "grup %1$s, pàgina %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Perfil del grup"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Avisos"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Àlies"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Accions del grup"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Canal d'avisos del grup %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Canal d'avisos del grup %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Canal d'avisos del grup %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Safata de sortida per %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Membres"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Cap)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Tots els membres"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "S'ha creat"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Membres"
@@ -5039,7 +5685,7 @@ msgstr "Membres"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5058,7 +5704,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5072,30 +5718,30 @@ msgstr ""
"curts sobre llur vida i interessos. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administradors"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "No existeix el missatge."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Només el remitent i el receptor poden llegir aquest missatge."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Missatge per a %1$s a %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Missatge de %1$s a %2$s"
@@ -5111,7 +5757,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s etiquetats %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5361,17 +6007,18 @@ msgstr "Text d'avís per a tot el lloc (màxim 255 caràcters; es permet l'HTML)
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Desa l'avís per a tot el lloc"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Paràmetres de l'SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
@@ -5379,58 +6026,59 @@ msgstr ""
"site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "L'SMS no és disponible."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Adreça SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Número de telèfon actualment confirmat i activat per SMS."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "S'està esperant la confirmació d'aquest número de telèfon."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Codi de confirmació"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Escriu el codi que has rebut en el teu telèfon mòbil."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Confirma"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Número de telèfon per als SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+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"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Preferències de l'SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5439,32 +6087,32 @@ msgstr ""
"exorbitant càrrega del meu transport."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "S'han desat les preferències de l'SMS."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "No hi ha cap número de telèfon."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "No s'ha sel·leccionat cap transport."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Aquest ja és el vostre número de telèfon."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Aquest número de telèfon pertany a un altre usuari."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5474,39 +6122,39 @@ msgstr ""
"servir."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Aquest és un número de confirmació incorrecte."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "La confirmació d'SMS s'ha cancel·lat."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Aquest no és el teu número de telèfon."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "S'ha eliminat el número de telèfon de l'SMS."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Transport mòbil"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Selecciona un transport"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5517,9 +6165,9 @@ msgstr ""
"un missatge de correu per fer-nos-ho saber %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
-msgstr "No s'ha introduït cap codi"
+#: actions/smssettings.php:535
+msgid "No code entered."
+msgstr "No s'ha introduït cap codi."
#. TRANS: Menu item for site administration
#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
@@ -5590,15 +6238,19 @@ msgstr "No estàs subscrit a aquest perfil."
msgid "Could not save subscription."
msgstr "No s'ha pogut guardar la subscripció."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Aquesta acció només accepta sol·licituds POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "No podeu subscriure-us a un perfil remot OMB 0.1 amb aquesta acció."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Subscrit"
@@ -5630,7 +6282,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Aquestes són les persones que escolten els avisos de %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5640,7 +6292,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s no té subscriptors. Voleu ser-ne el primer?"
@@ -5650,7 +6302,7 @@ msgstr "%s no té subscriptors. Voleu ser-ne el primer?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5683,7 +6335,7 @@ msgstr "Aquestes són les persones que %s escolta."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5703,23 +6355,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s no escolta a ningú."
-#: actions/subscriptions.php:178
-#, fuzzy, php-format
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
msgid "Subscription feed for %s (Atom)"
-msgstr "Canal d'avisos de %s (Atom)"
+msgstr "Canal de subscripció de %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5752,12 +6405,15 @@ msgstr "No hi ha cap argument ID."
msgid "Tag %s"
msgstr "Etiqueta %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Perfil de l'usuari"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Foto"
@@ -5773,6 +6429,11 @@ msgstr ""
"Etiquetes d'aquest usuari (lletres, nombres,, -, ., i _), comes o separades "
"amb espais"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "L'etiqueta no és vàlida: «%s»"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5780,10 +6441,6 @@ msgstr ""
"Només podeu etiquetar gent a la qual estigueu subscrit o que us hagin "
"subscrit."
-#: 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 ""
@@ -5794,6 +6451,7 @@ msgstr ""
msgid "No such tag."
msgstr "No existeix aquesta etiqueta."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "No heu blocat l'usuari."
@@ -5814,7 +6472,7 @@ msgstr "No hi ha cap identificador del perfil en la sol·licitud."
msgid "Unsubscribed"
msgstr "No subscrit"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5847,13 +6505,12 @@ msgstr ""
#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
-#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+#, fuzzy, php-format
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "La subscripció per defecte no és vàlida: «%1$s» no és cap usuari."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Perfil"
@@ -5909,55 +6566,71 @@ msgstr "Si es permet als usuaris invitar-ne de nous."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "Desa els paràmetres d'usuari"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autoritza la subscripció"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Si us plau, reviseu aquests detalls per assegurar-vos que voleu subscriure-"
"us als avisos d'aquest usuari. Si no heu demanat subscriure-us als avisos de "
"ningú, feu clic a «Rebutja»."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Llicència"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Accepta"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Subscriu-me a aquest usuari"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Rebutja"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Rebutja la subscripció"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "No és una sol·licitud d'autorització!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Subscripció autoritzada"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5967,11 +6640,12 @@ msgstr ""
"retorn. Reviseu les instruccions del lloc per tal de tenir més detalls de "
"com autoritzar la subscripció. El vostre testimoni de subscripció és:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Subscripció rebutjada"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5981,48 +6655,73 @@ msgstr ""
"retorn. Reviseu les instruccions del lloc per tal de tenir més detalls de "
"com rebutjar la subscripció completament."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "No s'hi ha trobat l'URI de qui us escolta, «%s»."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "L'URI de qui escolteu, «%s», és massa llarga."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "L'URI de qui escolteu, «%s», és un usuari local."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "L'URL del perfil «%s» és només per a un usuari local."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"La llicència del flux de qui escolteu, «%1$s», no és compatible amb la "
+"llicència del lloc, «%2$s»."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "L'URL de l'avatar «%s» no és vàlid."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "No es pot llegir l'URL de l'avatar «%s»."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Tipus d'imatge incorrecta per a l'URL de l'avatar «%s»."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Disseny del perfil"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6030,7 +6729,7 @@ msgstr ""
"Personalitzeu l'aspecte del vostre perfil amb una imatge de fons o una "
"paleta de colors de la vostra elecció."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Gaudiu de l'entrepà!"
@@ -6060,7 +6759,7 @@ msgstr "Proveu de [cercar grups](%%action.groupsearch%%) i unir-vos-hi."
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Actualitzacions de %1$s a %2$s!"
@@ -6121,7 +6820,7 @@ msgid "Plugins"
msgstr "Connectors"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Versió"
@@ -6130,32 +6829,32 @@ msgid "Author(s)"
msgstr "Autoria"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Preferit"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s ha marcat l'avís %2$s com a preferit"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "No es pot processar l'URL «%s»"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "El Robin pensa que quelcom és impossible."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6172,7 +6871,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6183,7 +6882,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6193,7 +6892,7 @@ msgstr[1] ""
"Un fitxer d'aquesta mida excediria la vostra quota mensual de %d bytes."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "El nom del fitxer no és vàlid."
@@ -6251,7 +6950,7 @@ msgid "Could not create login token for %s"
msgstr "No s'ha pogut crear un testimoni d'inici de sessió per a %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "No s'ha trobat el nom de la base de dades o el DSN enlloc."
@@ -6278,7 +6977,7 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "No hi ha cap perfil (%1$d) per a l'avís (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr ""
@@ -6286,24 +6985,24 @@ msgstr ""
"coixinet (%): %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "S'ha produït un problema en desar l'avís. És massa llarg."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "S'ha produït un problema en desar l'avís. Usuari desconegut."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
"Massa avisos massa ràpid; pren un respir i publica de nou en uns minuts."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6312,42 +7011,42 @@ msgstr ""
"enviar en uns minuts."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Ha estat bandejat de publicar avisos en aquest lloc."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "S'ha produït un problema en desar l'avís."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr "S'ha proporcionat un tipus incorrecte per a saveKnownGroups."
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "S'ha produït un problema en desar la safata d'entrada del grup."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "No s'ha pogut desar la resposta de %1$d, %2$d."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6355,14 +7054,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "No es pot revocar el rol «%1$s» de l'usuari #%2$d; no existeix."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6434,35 +7133,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Us donem la benvinguda a %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "No s'ha definit cap usuari únic per al mode d'usuari únic."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr "S'ha cridat el codi del mode d'únic usuari quan no està habilitat."
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "No s'ha pogut crear el grup."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "No es pot definir l'URI del grup."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "No s'ha pogut establir la pertinença d'aquest grup."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "No s'ha pogut desar la informació del grup local."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr "No es pot trobar el compte %s."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr "No es pot trobar l'XRD de %s."
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr "No hi ha cap servei API d'AtomPub de %s."
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6499,211 +7219,214 @@ msgid "Other"
msgstr "Altres"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Pàgina sense titol"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Mostra més"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Navegació primària del lloc"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Perfil personal i línia temporal dels amics"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Personal"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Canvia l'adreça electrònica, l'avatar, la contrasenya o el perfil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Compte"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Connecta als serveis"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Connexió"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Canvia la configuració del lloc"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Administrador"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Convida amics i coneguts perquè participin a %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Convida"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Finalitza la sessió del lloc"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Finalitza la sessió"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Crea un compte"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registre"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Inicia una sessió al lloc"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Inici de sessió"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Ajuda'm!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Ajuda"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Cerca gent o text"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Cerca"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Avís del lloc"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Vistes locals"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Avís de pàgina"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Navegació del lloc secundària"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Ajuda"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Quant a"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "Preguntes més freqüents"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Termes del servei"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Privadesa"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Font"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Contacte"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Insígnia"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Llicència del programari StatusNet"
@@ -6711,7 +7434,7 @@ msgstr "Llicència del programari StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6721,7 +7444,7 @@ msgstr ""
"site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** és un servei de microblogging."
@@ -6730,7 +7453,7 @@ msgstr "**%%site.name%%** és un servei de microblogging."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6742,27 +7465,27 @@ msgstr ""
"org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Llicència de contingut del lloc"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "El contingut i les dades de %1$s són privades i confidencials."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
"El contingut i les dades són copyright de %1$s. Tots els drets reservats."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"El contingut i les dades són copyright dels col·laboradors. Tots els drets "
@@ -6770,7 +7493,7 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
@@ -6778,19 +7501,19 @@ msgstr ""
"llicència %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paginació"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Posteriors"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Anteriors"
@@ -6801,10 +7524,79 @@ msgstr ""
"S'esperava un element del canal arrel, però se n'ha obtingut tot un document "
"XML sencer."
-#: lib/activity.php:360
-#, fuzzy
-msgid "Post"
-msgstr "Foto"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Verb desconegut: «%s»."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr "No es pot forçar la subscripció d'usuaris en què no s'hi confia."
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr "No es pot forçar els usuaris remots a subscriure-s'hi."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr "Perfil desconegut."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+"Aquesta activitat sembla que no tingui cap relació amb el nostre usuari."
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr "El perfil remot no és un grup!"
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr "L'usuari ja és membre d'aquest grup."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr "Ja es coneix l'avís %1$s i té un autor diferent %2$s."
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+"No se sobreescriu la informació d'usuari dels usuaris en què no s'hi confia."
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr "No hi ha contingut a l'avís %s."
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "No existeix l'usuari %s."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s %2$s %3$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6876,7 +7668,7 @@ msgid "User configuration"
msgstr "Configuració de l'usuari"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Usuari"
@@ -6922,19 +7714,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "No hi ha cap aplicació per a aquest clau de consumidor."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Testimoni d'accés incorrecte."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "No hi ha cap usuari per aquest testimoni."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "No se us ha pogut autenticar."
@@ -6957,27 +7753,31 @@ msgstr ""
"sol·licitat."
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "No s'ha pogut emetre un testimoni d'accés."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Error de la base de dades en inserir l'usuari de l'aplicació OAuth."
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr ""
+"Error de la base de dades en actualitzar l'usuari de l'aplicació OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "S'ha provat de revocar el testimoni desconegut."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "No s'ha pogut suprimir el testimoni revocat."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Icona de l'aplicació"
@@ -7089,17 +7889,22 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Revoca"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
-msgstr "l'element autor ha de contenir un element nom."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr "L'element autor ha de contenir un element nom."
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr "No feu servir aquest mètode!"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autoria"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Proveïdor"
@@ -7128,6 +7933,11 @@ msgstr "No es permet el canvi de contrasenya."
msgid "Block"
msgstr "Bloca"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Bloca aquest usuari"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7241,7 +8051,7 @@ msgstr "Nom complet: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Localització: %s"
@@ -7249,7 +8059,7 @@ msgstr "Localització: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Pàgina web: %s"
@@ -7525,24 +8335,24 @@ msgstr ""
"tracking - no s'ha implementat encara.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "No s'ha trobat cap fitxer de configuració. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "S'han cercat fitxers de configuracions en els llocs següents: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Podeu voler executar l'instal·lador per corregir-ho."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Vés a l'instal·lador."
@@ -7583,14 +8393,19 @@ msgstr "Aplicacions de connexió autoritzades"
msgid "Database error"
msgstr "Error de la base de dades"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Elimina l'usuari"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Puja un fitxer"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7609,25 +8424,72 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Desactivada"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Reinicialitza"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Canvia els colors"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Utilitza els paràmetres per defecte"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Restaura els dissenys per defecte"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Torna a restaurar al valor per defecte"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Desa el disseny"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "No s'ha pogut actualitzar el vostre disseny."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "S'han restaurat els paràmetres de disseny per defecte."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr "No s'han pogut trobar els serveis de %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Deixa de tenir com a preferit aquest avís"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Fes que deixi de ser preferit"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Fes preferit aquest avís"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Preferit"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7644,6 +8506,18 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr "No és un canal atom."
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr "No hi ha cap autor al canal."
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr "No es pot importar sense un usuari."
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7678,33 +8552,33 @@ msgstr "Vés-hi"
msgid "Grant this user the \"%s\" role"
msgstr "Atorga a l'usuari el rol «%s»"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
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"
+"1-64 lletres en minúscula o nombres, sense signes de puntuació o espais."
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL de la pàgina o blog del grup o de la temàtica."
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Descriviu el grup o la temàtica"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Descriviu el grup o la temàtica en %d caràcter"
msgstr[1] "Descriviu el grup o la temàtica en %d caràcters"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Ubicació del grup, si s'hi adiu cap, com ara «ciutat, comarca (o illa), país»."
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7813,40 +8687,41 @@ msgstr "Etiquetes en els avisos del grup %s"
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:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Format d'imatge no suportat."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "La mida del fitxer és massa gran, La mida màxima és %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Càrrega parcial."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Error del sistema en pujar el fitxer."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "No és una imatge o és un fitxer corrupte."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Hem perdut el nostre fitxer."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Tipus de fitxer desconegut"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7854,7 +8729,7 @@ msgstr[0] "%dMB"
msgstr[1] "%dMB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7862,7 +8737,7 @@ msgstr[0] "%dkB"
msgstr[1] "%dkB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7883,23 +8758,25 @@ msgstr "Font %d de la safata d'entrada desconeguda."
msgid "Leave"
msgstr "Deixa"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Accedir amb el nom d'usuari i contrasenya"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Registreu-vos-hi si voleu un compte nou"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Confirmació de l'adreça de correu electrònic"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7931,14 +8808,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, 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."
+msgstr "%1$s ara està escoltant els vostres avisos a %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7953,7 +8830,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7980,14 +8857,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Biografia: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nou correu electrònic per publicar a %s"
@@ -7995,7 +8872,7 @@ msgstr "Nou correu electrònic per publicar a %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8018,34 +8895,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s estat"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Confirmació SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: confirmeu-ho si teniu aquest número de telèfon amb aquest codi:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
+msgid "You have been nudged by %s"
msgstr "%s us ha cridat l'atenció"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8073,7 +8950,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nou missatge privat de %s"
@@ -8082,7 +8959,7 @@ msgstr "Nou missatge privat de %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8117,7 +8994,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) ha afegit el vostre avís com a preferit"
@@ -8127,7 +9004,7 @@ msgstr "%1$s (@%2$s) ha afegit el vostre avís com a preferit"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8165,7 +9042,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8178,7 +9055,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) us ha enviat un avís a la vostra atenció"
@@ -8189,7 +9066,7 @@ msgstr "%1$s (@%2$s) us ha enviat un avís a la vostra atenció"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8239,11 +9116,11 @@ msgstr ""
"\n"
"P.S. Podeu desactivar els avisos per correu aquí: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
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
+#: lib/mailbox.php:125
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."
@@ -8252,10 +9129,6 @@ msgstr ""
"usuaris en la conversa. La gent pot enviar-vos missatges només per als "
"vostres ulls."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "de"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "No es pot analitzar el missatge."
@@ -8284,42 +9157,6 @@ msgstr ""
"S'ha produït un error a la base de dades mentre es desava el vostre fitxer. "
"Torneu-ho a provar."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"El fitxer pujat excedeix la mida de la directiva upload_max_filesize del php."
-"ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"El fitxer pujat excedeix la mida de la directiva MAX_FILE_SIZE especificada "
-"en el formulari HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "El fitxer pujat només s'ha pujat parcialment."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Manca una carpeta temporal."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "No s'ha pogut escriure el fitxer al disc."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "L'extensió ha aturat la càrrega del fitxer."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8340,7 +9177,7 @@ msgstr "No s'ha pogut determinar el tipus MIME del fitxer."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8351,7 +9188,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "«%s» no és un tipus de fitxer compatible en aquest servidor."
@@ -8383,20 +9220,28 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Envia"
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr "Missatges"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "de"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
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."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "El sobrenom no pot estar en blanc."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8412,11 +9257,11 @@ msgstr "Envia un avís"
msgid "What's up, %s?"
msgstr "Què tal, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Adjunta"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Adjunta un fitxer"
@@ -8437,55 +9282,59 @@ msgstr ""
"l'esperat; torneu-ho a provar més tard"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "E"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "O"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "a"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "en context"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Repetit per"
-#: lib/noticelist.php:645
-msgid "Reply to this notice"
-msgstr "respondre a aquesta nota"
-
#: lib/noticelist.php:646
+msgid "Reply to this notice"
+msgstr "Respon a aquest avís"
+
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Respon"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Elimina aquest avís"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Avís repetit"
@@ -8522,77 +9371,108 @@ msgstr "Avís duplicat."
msgid "Couldn't insert new subscription."
msgstr "No s'ha pogut inserir una nova subscripció."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Personal"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+msgctxt "MENU"
msgid "Replies"
msgstr "Respostes"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Perfil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
msgid "Favorites"
msgstr "Preferits"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr "Safata d'entrada"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Els teus missatges rebuts"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
msgid "Outbox"
msgstr "Safata de sortida"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Els teus missatges enviats"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Etiquetes en els avisos de %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Desconegut"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Subscripcions"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Totes les subscripcions"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Subscriptors"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Tots els subscriptors"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID de l'usuari"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Membre des de"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grups"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Mitjana diària"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Tots els grups"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Mètode no implementat"
@@ -8639,7 +9519,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Revoca el rol «%s» de l'usuari"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "No s'ha trobat la pàgina."
@@ -8729,6 +9609,10 @@ msgstr "Convida"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Convida amics i companys perquè participin a %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Subscriu-me a aquest usuari"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8842,64 +9726,81 @@ msgstr "Cancel·la la subscripció"
msgid "User %1$s (%2$d) has no profile record."
msgstr "L'usuari %1$s (%2$d) no té un registre de perfil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Edita l'avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Accions de l'usuari"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "S'està eliminant l'usuari..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Edita la configuració del perfil"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Edita"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Envia un missatge directe a aquest usuari"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Missatge"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Modera"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Rol de l'usuari"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrador"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderador"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "No heu iniciat una sessió."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "fa pocs segons"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "fa un minut"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8907,12 +9808,12 @@ msgstr[0] "aproximadament fa un minut"
msgstr[1] "aproximadament fa %d minuts"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "fa una hora"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8920,12 +9821,12 @@ msgstr[0] "aproximadament fa una hora"
msgstr[1] "aproximadament fa %d hores"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "fa un dia"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8933,12 +9834,12 @@ msgstr[0] "aproximadament fa un dia"
msgstr[1] "aproximadament fa %d dies"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "fa un mes"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8946,18 +9847,13 @@ msgstr[0] "aproximadament fa un mes"
msgstr[1] "aproximadament fa %d mesos"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "fa un any"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s no és un color vàlid!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s no és un color vàlid! Feu servir 3 o 6 caràcters hexadecimals."
@@ -8980,30 +9876,17 @@ msgstr[1] ""
"El missatge és massa llarg - el màxim és %1$d caràcters, i n'heu enviat %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "L'XML no és vàlid."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr "L'XML no és vàlid, hi manca l'arrel XRD."
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Es recupera la còpia de seguretat del fitxer '%s'."
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "No s'ha especificat cap usuari; s'utilitza l'usuari de reserva."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "%d entrada a la còpia de seguretat."
-msgstr[1] "%d entrades a la còpia de seguretat."
diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po
index ea427b9ef7..7e092133c9 100644
--- a/locale/cs/LC_MESSAGES/statusnet.po
+++ b/locale/cs/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Czech (Česky)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Koo6
@@ -11,18 +11,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:30+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:19+0000\n"
"Language-Team: Czech \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: cs\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : "
"2 );\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -77,8 +77,9 @@ msgid "Save access settings"
msgstr "uložit nastavení přístupu"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -88,13 +89,13 @@ msgstr "uložit nastavení přístupu"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Uložit"
@@ -102,7 +103,7 @@ msgstr "Uložit"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Tady žádná taková stránka není."
@@ -112,6 +113,8 @@ msgstr "Tady žádná taková stránka není."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -127,13 +130,23 @@ msgstr "Tady žádná taková stránka není."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -141,15 +154,15 @@ msgstr "Tady žádná taková stránka není."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Uživatel neexistuje."
@@ -163,9 +176,10 @@ msgstr "%1$s a přátelé, strana %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s a přátelé"
@@ -280,7 +294,7 @@ msgstr "Novinky od uživatele %1$s a přátel na %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -313,7 +327,21 @@ msgstr ""
"Je nutné zadat parametr s názvem 'device' s jednou z hodnot: sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Nepodařilo se aktualizovat nastavení uživatele"
@@ -323,18 +351,23 @@ msgstr "Nepodařilo se aktualizovat nastavení uživatele"
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Uživatel nemá profil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Nepodařilo se uložit profil."
@@ -344,8 +377,8 @@ msgstr "Nepodařilo se uložit profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -368,13 +401,14 @@ msgstr[2] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Nelze uložit vaše nastavení designu."
@@ -382,48 +416,59 @@ msgstr "Nelze uložit vaše nastavení designu."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Nelze uložit design."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "časová osa %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Odběry uživatele %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "Oblíbené"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "členové skupiny %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Nemůžete zablokovat sami sebe!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Zablokovat uživatele se nezdařilo."
@@ -480,7 +525,8 @@ msgstr "Příjemce nebyl nalezen."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Nelze odesílat zprávy uživatelům, kteří nejsou vašimi přáteli."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -504,8 +550,9 @@ msgid "This status is already a favorite."
msgstr "Tuto hlášku již máte v oblíbených."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Nelze vytvořit oblíbenou položku."
@@ -515,7 +562,8 @@ msgid "That status is not a favorite."
msgstr "Tato hláška není oblíbená."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Nelze smazat oblíbenou položku."
@@ -561,9 +609,9 @@ msgstr "Nepodařilo se najít cílového uživatele."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Přezdívku již někdo používá. Zkuste jinou."
@@ -571,21 +619,22 @@ msgstr "Přezdívku již někdo používá. Zkuste jinou."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Není platnou přezdívkou."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Domovská stránka není platná URL."
@@ -593,9 +642,9 @@ msgstr "Domovská stránka není platná URL."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "Celé jméno je moc dlouhé (maximální délka je 255 znaků)."
@@ -603,14 +652,15 @@ msgstr "Celé jméno je moc dlouhé (maximální délka je 255 znaků)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -622,9 +672,9 @@ msgstr[2] "Popis je příliš dlouhý (maximálně %d znaků)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "Umístění je příliš dlouhé (maximálně 255 znaků)."
@@ -635,8 +685,8 @@ msgstr "Umístění je příliš dlouhé (maximálně 255 znaků)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -654,18 +704,16 @@ msgstr "Neplatný alias: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Alias \"%s\" se již používá. Zkuste jiný."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Alias nemůže být stejný jako přezdívka."
@@ -676,28 +724,32 @@ msgstr "Alias nemůže být stejný jako přezdívka."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Skupina nebyla nalezena."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Jste již členem této skupiny."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Z této skupiny jste byl zablokován adminem."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Nemohu připojit uživatele %1$s do skupiny %2$s."
@@ -709,9 +761,11 @@ msgstr "Nejste členem této skupiny."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -748,7 +802,7 @@ msgid "Upload failed."
msgstr "Nahrání se nezdařilo."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "Neplatný přihlašovací token."
@@ -771,20 +825,25 @@ msgid "Request token already authorized."
msgstr "Nejste autorizován."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Nastal problém s vaším session tokenem. Zkuste to znovu, prosím."
@@ -802,18 +861,22 @@ msgstr "Chyba databáze při vkládání uživatele aplikace OAuth."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Nečekaný požadavek."
@@ -864,29 +927,31 @@ msgstr "Účet"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Přezdívka"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Heslo"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -960,6 +1025,7 @@ msgstr "Nesmíte odstraňovat status jiného uživatele."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -979,39 +1045,52 @@ msgstr "Nelze opakovat své vlastní oznámení."
msgid "Already repeated that notice."
msgstr "Již jste zopakoval toto oznámení."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr " API metoda nebyla nalezena."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Nepodporovaný formát."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Status smazán."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Nenalezen status s tímto ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Toto oznámení nelze odstranit."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Odstranit oznámení"
@@ -1071,7 +1150,7 @@ msgstr "Updaty na %1$s od %2$s / %2$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Nelze aktualizovat skupinu."
@@ -1092,13 +1171,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "updaty na %1$s odpovídající na updaty od %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Veřejná časová osa %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "Všechny updaty na %s!"
@@ -1147,203 +1227,270 @@ msgstr "Pouze uživatel může přečíst své vlastní schránky."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Najít v obsahu oznámení"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Oznámení s tímto id neexistuje."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API metoda ve výstavbě."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr " API metoda nebyla nalezena."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Žádný takový profil."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Novinky od uživatele %1$s a přátel na %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Nelze vložit odebírání"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Najít v obsahu oznámení"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Najít v obsahu oznámení"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Neznámé"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Přidat do oblíbených"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Žádný takový profil."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "členové skupiny %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Skupiny kterých je %s členem"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Nelze vložit odebírání"
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Najít v obsahu oznámení"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Neznámé"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Všichni členové"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Žádný takový soubor."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Nelze smazat oblíbenou položku."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Žádný takový uživatel."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Všichni členové"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr " API metoda nebyla nalezena."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Žádný takový profil."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Nejste přihlášen k tomuto profilu."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Nelze smazat odebírání sebe sama"
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Žádný takový profil."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Nejste přihlášen k tomuto profilu."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Nelze smazat odebírání sebe sama"
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Lidé přihlášení k %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Neznámý typ souboru"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Již přihlášen!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1352,11 +1499,15 @@ msgstr "Žádná taková příloha."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Žádná přezdívka."
@@ -1373,7 +1524,7 @@ msgstr "Neplatná velikost"
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1386,42 +1537,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Můžete nahrát váš osobní avatar. Maximální velikost souboru je %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Uživatel bez odpovídajícího profilu."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Nastavené Profilu"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Originál"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Náhled"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Odstranit"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1439,31 +1600,72 @@ msgstr "Oříznout"
msgid "No file uploaded."
msgstr "žádný soubor nebyl nahrán."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Vyberte čtvercovou plochu obrázku, která bude váš avatar"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Ztratili jsme údaje souboru."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Obrázek nahrán"
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Nahrávání obrázku selhalo."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Avatar smazán."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Pouze přihlášení uživatelé mohou opakovat oznámení."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Pozadí"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1471,7 +1673,8 @@ msgstr "Jabber ID již patří jinému uživateli"
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Zablokovat tohoto uživatele"
@@ -1494,15 +1697,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Poznámka"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Zablokovat tohoto uživatele"
#. TRANS: Button label on the user block form.
@@ -1513,15 +1716,15 @@ msgstr "Zablokovat tohoto uživatele"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Ano"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Zablokovat tohoto uživatele"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1529,31 +1732,6 @@ msgstr "Zablokovat tohoto uživatele"
msgid "Failed to save block information."
msgstr "Nepodařilo se uložit blokování."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Žádný takový uživatel."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1624,23 +1802,6 @@ msgstr "Neznámý typ adresy %s."
msgid "That address has already been confirmed."
msgstr "Adresa již byla potvrzena"
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Nelze aktualizovat uživatele"
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1666,11 +1827,85 @@ msgid "Conversation"
msgstr "Konverzace"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Sdělení"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Pouze přihlášení uživatelé mohou opakovat oznámení."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Nemůžete odstranit uživatele."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Avatar smazán."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Zaregistrujte se"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Potvrdit"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Nemůžete odstranit uživatele."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Nemůžete odstranit uživatele."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1684,14 +1919,14 @@ msgstr "Aplikace nebyla nalezena."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Nejste vlastníkem této aplikace."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Nastal problém s vaším session tokenem."
@@ -1713,12 +1948,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Neodstraňujte tuto aplikaci"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Odstranit tuto aplikaci"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1728,8 +1965,10 @@ msgid "You must be logged in to delete a group."
msgstr "Musíte být přihlášen abyste mohl opustit skupinu."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Žádná přezdívka nebo ID."
@@ -1774,25 +2013,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "Neodstraňujte toto oznámení"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "Odstranit tohoto uživatele"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Nejste přihlášen(a)."
@@ -1819,27 +2064,40 @@ msgstr "Jste si jisti, že chcete smazat tohoto oznámení?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Neodstraňujte toto oznámení"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Odstranit toto oznámení"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Nemůžete odstranit uživatele."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Můžete smazat pouze místní uživatele."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Smazat uživatele"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Smazat uživatele"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1847,80 +2105,104 @@ msgstr ""
"Jste si jisti, že chcete smazat tohoto uživatele? To odstraní všechny údaje "
"o uživateli z databáze, bez zálohy."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Neodstraňujte toto oznámení"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Odstranit tohoto uživatele"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Vzhled"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Neplatná URL loga."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "Neplatná URL loga."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Téma není k dispozici: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Změňte logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logo stránek"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "Logo stránek"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Změnit téma"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Téma stránek"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Téma stránek"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Vlastní téma"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Můžete nahrát vlastní StatusNet téma jako .ZIP archiv."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Změnit obrázek na pozadí"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Pozadí"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1929,98 +2211,108 @@ msgstr ""
"Můžete nahrát obrázek na pozadí stránek. Maximální velikost souboru je %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "zap."
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "vyp."
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Zapněte nebů vypněte obrázek na pozadí."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Dlaždicovat obrázek na pozadí"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Změnit barvy"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Obsah"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Boční panel"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Text"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Odkazy"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Rozšířené"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Vlastní CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Použít výchozí"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Obnovit výchozí vzhledy"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Reset zpět do výchozího"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Uložit"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Uložit vzhled"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Toto oznámení není oblíbeno!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Přidat do oblíbených"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Žádný dokument \"%s\" neexistuje"
#. TRANS: Title for "Edit application" form.
@@ -2035,7 +2327,7 @@ msgid "You must be logged in to edit an application."
msgstr "Pro úpravy aplikace musíte být přihlášen."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Aplikace neexistuje."
@@ -2045,63 +2337,73 @@ msgid "Use this form to edit your application."
msgstr "Pomocí tohoto formuláře můžete upravovat svou aplikaci."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Název je povinný."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Název již někdo používá. Zkuste jinou"
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Popis je třeba."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "URL zdroje je příliš dlouhý."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "URL zdroje není platný."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organizace je nutná."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "Organizace je příliš dlouhá (max 255 znaků)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Homepage organizace je nutná."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Callback je příliš dlouhý."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "Callback URL není platný."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Nelze aktualizovat aplikaci."
@@ -2112,14 +2414,17 @@ msgid "Edit %s group"
msgstr "Upravit skupinu %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "K vytvoření skupiny musíte být přihlášen."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "K úpravě skupiny musíte být admin."
@@ -2130,63 +2435,65 @@ msgstr "Použijte tento formulář k úpravám skupiny."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Neplatný alias: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Nelze aktualizovat skupinu."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Nelze vytvořit aliasy."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Nastavení uloženo."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Nastavení e-mailu"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Spravovat posílání e-mailů z %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "E-mailová adresa"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Aktuální potvrzená e-mailová adresa."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Odstranit"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2199,44 +2506,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "E-mailová adresa, ve stylu \"UzivatelskeJmeno@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Přidat"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Příchozí e-mail"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Chci posílat oznámení e-mailem."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Pošlete e-mail na tuto adresu pro poslání nového oznámení."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Vytvoření nové e-mailové adresy pro zasílání, ruší starou."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2244,87 +2551,89 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nová"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Nastavení e-mailu"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Pošlete mi oznámení o nových přihlášeních e-mailem."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Pošlete mi e-mail, když někdo přidá moje oznámení mezi oblíbené."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Pošlete mi e-mail, když mi někdo pošle soukromou zprávu."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Pošlete mi e-mail, když mi někdo pošle \"@-odpověď\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Povolit přátelům mě pošťouchnout a poslat mi email."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publikovat MicroID pro mou e-mailovou adresu."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Email nastavení uloženo."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Chybí e-mailová adresa."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Nepodařilo se normalizovat (kanonizovat) e-mailovou adresu."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Není platnou mailovou adresou."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "To je již vaší e-mailovou adresou."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Tato e-mailová adresa již patří jinému uživateli."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Nelze vložit potvrzující kód."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2334,89 +2643,105 @@ msgstr ""
"jej použít."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Žádné potvrzení ke zrušení."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Toto je špatná e-mailová adresa."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Nelze smazat potvrzení emailu"
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Potvrzení e-mailu zrušeno."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "To není vaše e-mailová adresa."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "E-mailová adresa byla odstraněna."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Nemáte příchozí e-mailovou adresu."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Nelze aktualizovat záznam uživatele."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Příchozí e-mailová adresa odstraněna."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Přidána nová příchozí e-mailová adresa."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Tuto hlášku již máte v oblíbených."
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Znemilostnit oblíbenou"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Populární oznámení"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Populární oznámení, strana %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Právě teď nejpopulárnější oznámení na stránkách."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Oblíbená oznámení se objeví na této stránce, ale nikdo zatím oblíbené ještě "
"nemá."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2425,7 +2750,9 @@ msgstr ""
"Buďte první, kdo přidá oznámení k oblíbeným kliknutím na tlačítko Oblíbené "
"vedle kteréhokoli oznámení které se vám líbí."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2434,142 +2761,186 @@ msgstr ""
"Proč ne [zaregistrovat účet](%%action.register%%) a být první, kdo přidá "
"oznámení k oblíbeným!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "oblíbená oznámení uživatele %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Aktualizace oblíbené uživatelem %1$s na %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Nejlepší uživatelé"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Nejlepší uživatelé, strana %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Výběr některých skvělých uživatelů na %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Chybí ID oznámení."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Žádné takové oznámení."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Bez příloh."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Žádné nahrané přílohy."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Nečekaná odpověď!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Úživatel, kterému nasloucháte neexistuje."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Můžete použít místní odebírání."
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Uživatel vaše odebírání zablokoval."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Nejste autorizován."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Nemohu převést žádost token na přístup token."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Vzdálená služba používá neznámou verzi protokolu OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Chyba při aktualizaci vzdáleného profilu."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Žádný takový soubor."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Nelze přečíst soubor."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Neplatná role."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Tato role je vyhrazena a nelze jí nastavit."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Nemůžete dávat uživatelské role na této stránce."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Uživatel již tuto roli má."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Nebyl vybrán profil."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Neexistuje profil s tímto ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Nebyla vybrána skupina."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Pouze admin může blokovat členy skupiny."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Uživatel již je zablokován ze skupiny."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Uživatel není členem skupiny."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Zablokovat uživatele ze skupiny"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2580,32 +2951,40 @@ msgstr ""
"Bude odstraněn ze skupiny a nebude moci přispívat nebo se přihlásit k odběru."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Neblokujte tohoto uživatele z této skupiny"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Blokovat tohoto uživatele z této skupiny"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Chyba databáze při blokování uživatele ze skupiny."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Chybí ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "K úpravě skupiny musíte být přihlášen."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Vzhled skupiny"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2613,22 +2992,26 @@ msgstr ""
"Přizpůsobit vzhled skupiny obrázkem na pozadí a barevnou paletou vašeho "
"výběru."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Nelze uložit vzhled."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Nelze uložit vaše nastavení designu."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Nastavení vzhledu uloženo."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo skupiny"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2636,100 +3019,116 @@ msgstr ""
"Můžete nahrát obrázek loga pro vaši skupinu. Maximální velikost souboru je %"
"s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Upload"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Oříznout"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Vyberte čtvercovou oblast obrázku, která bude vaše logo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo aktualizováno."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Nepodařilo se aktualizovat logo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "členové skupiny %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "členové skupiny %1$s, strana %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Seznam uživatelů v této skupině."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Admin"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Uďelat uživatele adminem skupiny"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Novinky od členů %1$s na %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Skupiny"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Skupiny, strana %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"skupiny na %%%%Site.name%%%% vám umožní najít a mluvit s lidmi podobných "
"zájmů. Po připojení skupiny můžete posílat zprávy všem ostatním členům "
@@ -2737,11 +3136,13 @@ msgstr ""
"Zkuste ji [vyhledat](%%%%action.groupsearch%%%%) nebo [založit!](%%%%action."
"newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Vytvořit novou skupinu"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2750,25 +3151,33 @@ msgstr ""
"Hledejte skupiny na %%site.name%% podle jejich názvu, místa, nebo popisu. "
"Oddělte slova mezerami; musí být nejméně 3 znaky dlouhá."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Hledání skupin"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Žádné výsledky."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Pokud nemůžete najít skupinu, kterou hledáte, můžete ji [vytvořit](%%action."
"newgroup%%) sami."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2778,137 +3187,147 @@ msgstr ""
"%action.newgroup%%) sami!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Pouze admin může odblokovat členy skupiny."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Uživatel není blokován ze skupiny."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Chyba při odstraňování bloku."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Nastavení IM"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Můžete odesílat nebo přijámat oznámení pomocí Jabber/GTalk [zpráv](%%doc.im%"
"%) .Zadejte svou adresu a nastavení níže."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM není k dispozici."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM adresa"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Aktuální potvrzená Jabber / GTalk adresa."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Čakám na potvrzení této adresy. Hledejte zprávu s dalšími instrukcemi na "
"vašem Jabber/GTalk účtu. (Přidal jste si %s do vašich kontaktů?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber nebo GTalk adresa, například \"jmeno@example.org\". Neprve se "
"ujistěte že jste přidal %s do vašeho seznamu kontaktů ve vašem IM klientu "
"nebo na GTalku."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Nastavení IM"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Zasílat oznámení pomocí Jabber/GTalk"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Poslat oznámení, když se změní můj Jabber/Gtalk status."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Pošlete mi odpovědi přes Jabber / GTalk od lidí, ke kterým nejsem přihlášen."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publikovat MicroID pro mou Jabber / GTalk adresu."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Nastavení uloženo"
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Chybí Jabber ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Nelze normalizovat tento JabberID"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Není platným Jabber ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Toto je již vaše Jabber ID"
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID již patří jinému uživateli"
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2917,73 +3336,79 @@ msgstr ""
"Ověřující kód byl poslán na vloženou IM adresu. Musíte povolit aby vám %s "
"posílal zprávy."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Toto je špatná IM adresa"
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Nelze smazat potvrzení IM"
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "IM potvrzení zrušeno."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Toto není váš Jabber ID"
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "IM adresa byla odstraněna."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Pošta doručená pro %1$s - strana %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Doručená pošta pro %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "To je váš inbox, obsahuje seznam příchozích soukromých zpráv."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Pozvánky byly zakázány."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Musíte být přihlášen aby jste mohl zvát další uživatele k použití %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Neplatný e-mail: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Pozvánka(y) zaslána(y)"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Pozvat nové uživatele"
@@ -2991,7 +3416,7 @@ msgstr "Pozvat nové uživatele"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3001,7 +3426,7 @@ msgstr[2] "Jste již přihlášeni k těmto uživatelům:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3010,7 +3435,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3022,7 +3447,7 @@ msgstr[2] "Tito lidé jsou již uživatelé a jste k nim automaticky přihláše
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3032,7 +3457,7 @@ msgstr[2] "Pozvánka (y) zaslány následujícím osobám:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3041,7 +3466,7 @@ msgstr ""
"na tomto webu. Díky za zvetšení komunity!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3049,27 +3474,28 @@ msgstr ""
"služby."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "E-mailové adresy"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Adresy přátel k pozvání (jedna na řádek)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Osobní zpráva"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Volitelně přidat osobní zprávu."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Odeslat"
@@ -3077,7 +3503,7 @@ msgstr "Odeslat"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s vás pozval, abyste se k nim připojil(a) na %2$s"
@@ -3087,7 +3513,7 @@ msgstr "%1$s vás pozval, abyste se k nim připojil(a) na %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3143,169 +3569,185 @@ msgstr ""
"\n"
"S pozdravem, %2$s \n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Musíte být přihlášen pro vstup do skupiny."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s se připojil(a) ke skupině %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Musíte být přihlášen abyste mohl opustit skupinu."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Nejste členem této skupiny."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s opustil(a) skupinu %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Neplatné uvítací text. Max délka je 255 znaků."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
#, fuzzy
msgid "Private"
msgstr "Soukromí"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Uložit"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Již přihlášen"
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Neplatné jméno nebo heslo"
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Chyba při nastavení uživatele. Pravděpodobně nejste autorizován."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Přihlásit"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Přihlásit se na stránky"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Zapamatuj si mě"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
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á více lidí! "
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Ztracené nebo zapomenuté heslo?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3313,11 +3755,11 @@ msgstr ""
"Z bezpečnostních důvodů, prosím zadejte znovu své jméno a heslo než budete "
"měnit svá nastavení."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Přihlásit se pomocí svého uživatelského jména a hesla."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3354,19 +3796,22 @@ msgid "New application"
msgstr "Nová aplikace"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Musíte být přihlášen k registraci aplikace."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Použijte tento formulář pro registraci nové aplikace."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Zdrojové URL je nutné."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Nelze vytvořit aplikaci."
@@ -3375,11 +3820,23 @@ msgstr "Nelze vytvořit aplikaci."
msgid "New group"
msgstr "Nová skupina"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Nejste členem této skupiny."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Použijte tento formulář k vytvoření nové skupiny."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Alias nemůže být stejný jako přezdívka."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nová zpráva"
@@ -3430,7 +3887,9 @@ msgstr "Nové sdělení"
msgid "Notice posted"
msgstr "Sdělení posláno"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3439,16 +3898,21 @@ msgstr ""
"Hledej sdělení na %%site.name%% podle obsahu. Oddělte výrazy mezerami; musí "
"mít alespoň 3 znaky"
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Text vyhledávání"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Výsledky hledání \"%1$s\" na %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3457,7 +3921,9 @@ msgstr ""
"Buďte první kdo [příspěje](%%%%action.newnotice%%%%?status_textarea=%s) na "
"toto téma!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3466,14 +3932,17 @@ msgstr ""
"Proč si ne [zaregistrovat účet](%%%%action.register%%%%) a být první, kdo "
"[příspěje](%%%%action.newnotice %%%%?status_textarea =%s) na toto téma!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Hlášky s \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Aktualizace odpovídající hledanému výrazu \"%1$s\" na %2$s!"
#: actions/nudge.php:85
@@ -3515,30 +3984,30 @@ msgid "You have not registered any applications yet."
msgstr "Ještě jste nezaregistrovali žádné aplikace."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Propojené aplikace"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Nejste uživatel této aplikace."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Nelze zrušit přístup aplikace %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3546,20 +4015,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Žádným aplikacím jste nepovolili používat váš účet."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr " API metoda nebyla nalezena."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr " API metoda nebyla nalezena."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Uživatel nemá profil."
@@ -3569,6 +4048,16 @@ msgstr "Uživatel nemá profil."
msgid "%1$s's status on %2$s"
msgstr "status %1 na %2"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Příjemce nebyl nalezen."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3582,16 +4071,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Only %s URLs over plain HTTP please."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Nepodporovaný formát dat."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Hledání lidí"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Hledání oznámení"
@@ -3605,69 +4095,80 @@ msgid "Manage various other options."
msgstr "Správa různých dalších možností."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (Služba zdarma)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Zkrácovat URL s"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Služba automatického zkracování, kterou použít."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Zobrazit vzhledy profilu"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Zobrazit nebo skrýt vzhledy profilu."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "adresa služby zkracování URL je příliš dlouhá (max. 50 znaků)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Nebylo zadáno uživatelské ID."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Přihlašovací token nezadán."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Nepožadován přihlašovací token."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Neplatný přihlašovací token."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Přihlašovací token vypršel."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Odeslaná pošta uživatele %1$s - strana %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Odeslané uživatele %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Toto je váš outbox, který obsahuje seznam soukromých zpráv které jste "
@@ -3681,7 +4182,8 @@ msgstr "Změnit heslo"
msgid "Change your password."
msgstr "Změňte své heslo."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Změna hesla"
@@ -3689,48 +4191,50 @@ msgstr "Změna hesla"
msgid "Old password"
msgstr "Staré heslo"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nové heslo"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 a více znaků"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Potvrdit"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Stejné jako heslo výše"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Změnit"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Heslo musí být alespoň 6 znaků dlouhé"
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Hesla nesouhlasí"
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Nesprávné staré heslo"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Chyba při ukládaní uživatele; neplatný."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Nelze uložit nové heslo"
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Heslo uloženo"
@@ -3948,7 +4452,7 @@ msgstr "Cesta k adresáři locales"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Přílohy"
@@ -4022,7 +4526,9 @@ msgstr "Server kam směrovat SSL žádosti"
msgid "Save paths"
msgstr "Uložit cesty"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4031,7 +4537,8 @@ 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
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Hledání lidí"
@@ -4055,12 +4562,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "Licence hlášky ‘%1$s’ není kompatibilní s licencí webu ‘%2$s’."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Nastavené Profilu"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4068,33 +4575,34 @@ msgstr ""
"více dozvědět."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Nastavené Profilu"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Celé jméno"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Moje stránky"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
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."
@@ -4102,7 +4610,7 @@ msgstr "Adresa vašich stránek, blogu nebo profilu na jiných stránkách."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4111,72 +4619,79 @@ msgstr[1] "Popište sebe a své zájmy"
msgstr[2] "Popište sebe a své zájmy"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Popište sebe a své zájmy"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "O mě"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Umístění"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Místo. Město, stát."
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Sdělit mou aktuální polohu při posílání hlášek"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Tagy"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr "Otagujte se (písmena, čísla, -, . a _), oddělené čárkami nebo mezerami"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Jazyk"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Preferovaný jazyk"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Časové pásmo"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "V jaké časové zóně se obyčejně nacházíte?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Automaticky se přihlásit k odběru toho kdo se přihlásil ke mně (nejlepší pro "
"ne-lidi)"
@@ -4184,7 +4699,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4193,50 +4708,54 @@ msgstr[1] "Umístění příliš dlouhé (maximálně %d znaků)"
msgstr[2] "Umístění příliš dlouhé (maximálně %d znaků)"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Časové pásmo není vybráno."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Jazyk je příliš dlouhý (max. 50 znaků)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Neplatná velikost"
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Nelze aktualizovat nastavení automatického přihlašování."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Nelze uložit nastavení umístění."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Nelze uložit profil"
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "Nelze uložit tagy."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Nelze uložit nálepky"
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Nastavení uloženo"
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Zaregistrujte se"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4310,6 +4829,12 @@ msgstr ""
"faq#mikroblog) služba založená na Free Software nástroji [StatusNet](http://"
"status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "Všechny updaty na %s!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4353,35 +4878,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Tag cloud"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Již jste přihlášen"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Žádný takový obnovující kód."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Není obnovujícím kódem"
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Obnovovací kód pro neznámého uživatele."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Chyba v ověřovacím kódu"
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
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
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Nemohu aktualizovat uživatele s potvrzenou e-mailovou adresu."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4389,67 +4922,100 @@ msgstr ""
"Pokud jste zapomněli nebo ztratili své heslo, můžeme zaslat nové na e-"
"mailovou adresu, kterou jste uložili ve vašem účtu."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Byl jste identifikován. Vložte níže nové heslo. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Byl jste identifikován. Vložte níže nové heslo."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Obnovení hesla"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Zadej přezdívku nebo emailovou adresu"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
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
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Obnovit"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Obnovit"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Resetovat heslo"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Obnovit heslo"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Zažádáno o obnovu hesla"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Heslo uloženo"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Neznámá akce"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 a více znaků, a nezapomeňte ho!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Reset"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Zadej přezdívku nebo emailovou adresu"
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Žádný uživatel s touto e-mailovou adresu nebo uživatelským jménem."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Žádný registrovaný email pro tohoto uživatele."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Chyba při ukládání potvrzení adresy"
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4457,120 +5023,118 @@ msgstr ""
"Návod jak obnovit heslo byl odeslán na vaší emailovou adresu zaregistrovanou "
"u vašeho účtu."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Nečekané resetování hesla."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Heslo musí být alespoň 6 znaků dlouhé"
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Heslo a potvrzení nesouhlasí"
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Chyba nastavení uživatele"
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Nové heslo bylo uloženo. Nyní jste přihlášen."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Litujeme, jen pozvaní se mohou registrovat."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Litujeme, neplatný kód pozvánky."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registrace úspěšná"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registrovat"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registrace není povolena."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Emailová adresa již existuje"
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Neplatné jméno nebo heslo"
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Pomocí tohoto formuláře můžete vytvořit nový účet. Můžete pak posílat "
"oznámení a propojit se s přáteli a kolegy. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer. Nutné."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 a více znaků. Nutné."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Stejné jako heslo uvedeno výše. Povinné."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Email"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Použije se pouze pro aktualizace, oznámení a obnovu hesla."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Delší jméno, nejlépe vaše \"skutečné\" jméno"
-#: actions/register.php:463
-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/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Místo. Město, stát."
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr "Chápu, že obsah a data %1$S jsou soukromé a důvěrné."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Můj text a soubory jsou copyrightovány %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Můj text a soubory zůstanou pod mým vlastním copyrightem."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Všechna práva vyhrazena."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4579,7 +5143,7 @@ msgstr ""
"Můj text a soubory jsou k dispozici pod %s výjimkou těchto soukromých dat: "
"heslo, e-mailová adresa, IM adresa a telefonní číslo."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4612,7 +5176,7 @@ msgstr ""
"\n"
"Díky za registraci a doufáme, že se vám používání této služby bude líbít."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4620,7 +5184,7 @@ msgstr ""
"(Měli byste za okamžik obdržet e-mailem zprávu s instrukcemi, jak potvrdit "
"svou e-mailovou adresu.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4631,79 +5195,88 @@ msgstr ""
"action.register%%) nový účet. Pokud již máte účet na [kompatibilních "
"mikroblozích](%%doc.openmublog%%), vložte níže adresu."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Vzdálený odběr"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Přihlásit se ke vzdálenému uživateli"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Přezdívka uživatele"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Přezdívka uživatele, kterého chcete sledovat"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Adresa Profilu"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "Adresa profilu na jiných kompatibilních mikroblozích."
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Odebírat"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Neplatná adresa profilu (špatný formát)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Není platnou adresou profilu (není YADIS dokumentem nebo definováno neplatné "
"XRDS)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "To je místní profil! Pro přihlášení k odběru se přihlášte."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Nelze získat řetězec požadavku."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Pouze přihlášení uživatelé mohou opakovat oznámení."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Oznámení neuvedeno."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Nemůžete opakovat své vlastní oznámení."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Již jste zopakoval toto oznámení."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Opakované"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Opakované!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Odpovědi na %s"
@@ -4755,11 +5328,105 @@ msgstr ""
"Můžete se pokusit uživatele [%1$s postrčit](../%2$s) nebo [jim něco poslat]"
"(%%%%action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Odpovědi na %1$s na %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Pouze přihlášení uživatelé mohou opakovat oznámení."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Ještě jste nezaregistrovali žádné aplikace."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Nahrát soubor"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Velkost uploadovaného souboru překračuje upload_max_filesize limit v php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Velkost uploadovaného souboru překračuje MAX_FILE_SIZE limit, které bylo "
+"uvedeno v HTML formuláři."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Nahrávaný soubor byl nahrán pouze částečně."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Chybí dočasný adresář."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Nepodařilo se zapsat soubor na disk."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Nahrávání souboru zastaveno rozšířením PHP."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Chyba systému při nahrávání souboru"
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Všichni členové"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Nahrát soubor"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Nemůžete rušit uživatelské role na této stránce."
@@ -4768,7 +5435,7 @@ msgstr "Nemůžete rušit uživatelské role na této stránce."
msgid "User doesn't have this role."
msgstr "Uživatel nemá tuto roli."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4810,121 +5477,130 @@ msgstr "Zapnout výstup pro debugování sessions"
msgid "Save site settings"
msgstr "Uložit Nastavení webu"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Musíte být přihlášeni pro zobrazení aplikace."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Profil aplikace"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Ikona"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Název"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organizace"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Popis"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistiky"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
"Vytvořil %1$s - s \"%2$s\" přístupem ve výchozím nastavení - %3$d uživatelů"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Akce aplikace"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Resetovat klíč a tajemství"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Odstranit"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Info o aplikaci"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Spotřebitelský klíč"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Spotřebitelské tajemství"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "Adresa řetězce požadavku"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL Access tokenu"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Authorizační URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr "Poznámka: podpora HMAC-SHA1 podpisů. Nepodporujeme plaintext."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Jste si jisti, že chcete resetovat svůj spotřebitelský klíč a tajemství?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Oblíbená oznámení uživatele %1$s, strana %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Nepodařilo se získat oblíbená oznámení."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Feed oblíbených oznámení uživatele %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Feed oblíbených oznámení uživatele %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Feed oblíbených oznámení uživatele %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4933,7 +5609,9 @@ msgstr ""
"později nebo na ně upoutali pozornost, klikněte na tlačítko Oblíbené na "
"oznámeních"
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4942,7 +5620,10 @@ msgstr ""
"%s ještě nemá žádná oblíbená oznámení. Napište neco zajímavého co by si "
"přidali do oblíbených :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4952,7 +5633,8 @@ msgstr ""
"%s ještě nemá žádná oblíbená oznámení. Proč se ne [zaregistrovat](%%%%action."
"register%%%%) a neposlat neco zajímavého co by si přidali do oblíbených :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Toto je způsob, jak sdílet to, co se vám líbí."
@@ -4970,82 +5652,89 @@ msgid "%1$s group, page %2$d"
msgstr "skupina %1$s, str. %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Profil skupiny"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Poznámka"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Aliasy"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Akce skupiny"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Feed sdělení skupiny %s (RSS 1.0"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Feed sdělení skupiny %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Feed sdělení skupiny %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF pro skupinu %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Členové"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(nic)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Všichni členové"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Vytvořeno"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5055,7 +5744,7 @@ msgstr "Členové"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5073,7 +5762,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5087,30 +5776,30 @@ msgstr ""
"životě a zájmech. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Adminové"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Žádné takové zprávy."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Pouze odesílatel a příjemce může přečíst tuto zprávu."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Zpráva pro %1$s na %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Zpráva od %1$s na %2$s"
@@ -5126,7 +5815,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, strana %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5372,74 +6061,76 @@ msgstr "Celo-webové sdělení (255 znaků max., s HTML)"
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Uložit oznámení stránky"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "nastavení SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Z %%site.name%% můžete přijímat SMS e-mailem."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS není k dispozici."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS adresa"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Aktuální potvrzené SMS-schopné telefonní číslo."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Čeká na potvrzení na tomto telefonním čísle."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Potvrzovací kód"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Zadejte kód, který jste obdrželi na telefonu."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Potvrdit"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMS telefonní číslo"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Telefonní číslo, Nepoužívej interpunkci nebo mezery, s předčíslím"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Nastavení SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5448,32 +6139,32 @@ msgstr ""
"provider může naůčtovat nesmyslně vysoké částky."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Nastavení SMS uloženo."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Žádné telefonní číslo."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Nevybrán poskytovatel."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Toto je již vaše telefonní číslo."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Toto telefonní číslo již patří jinému uživateli"
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5482,39 +6173,39 @@ msgstr ""
"použít."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Toto je špatné ověřovací číslo."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS potvrzení zrušeno."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "To není vaše telefonní číslo."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "SMS Telefonní číslo bylo odstraněno."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Mobilní operátor"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Vyberte operátora"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5524,8 +6215,9 @@ msgstr ""
"přes e-mail, ale zde není uveden, pošlete e-mail a dejte nám vědět na% s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Nezadán kód"
#. TRANS: Menu item for site administration
@@ -5597,16 +6289,20 @@ msgstr "Nejste přihlášen k tomuto profilu."
msgid "Could not save subscription."
msgstr "Nelze uložit odebírání"
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Tato akce přijímá pouze POST požadavky."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
"Touto akcí se nemůžete se přihlásit k odběru vzdáleného OMB 0.1 profilu."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Prihlášen"
@@ -5638,7 +6334,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Toto jsou lidé, kteří naslouchají sdělením od %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5649,7 +6345,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "Uživatele %s nikdo nesleduje. Chcete být první?"
@@ -5659,7 +6355,7 @@ msgstr "Uživatele %s nikdo nesleduje. Chcete být první?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5692,7 +6388,7 @@ msgstr "Toto jsou lidé, jejímž sdělením %s naslouchá"
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5711,23 +6407,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s nikoho nesleduje."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Feed oznámení pro %1$s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5760,12 +6457,15 @@ msgstr "Žádný argument ID."
msgid "Tag %s"
msgstr "Otagujte %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Uživatelský profil"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Fotka"
@@ -5781,6 +6481,11 @@ msgstr ""
"Tagy pro tohoto uživatele (písmena, číslice, -,., a _), oddělené čárkou nebo "
"mezerou"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Neplatná velikost"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5788,10 +6493,6 @@ msgstr ""
"Můžete označovat pouze lidi, ke kterým jste přihlášen nebo kteří jsou "
"přihlášeni k vám."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Nelze uložit nálepky"
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5802,6 +6503,7 @@ msgstr ""
msgid "No such tag."
msgstr "Žádná taková nálepka."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Nemáte zablokováno tohoto uživatele."
@@ -5822,7 +6524,7 @@ msgstr "CHybí ID profilu v žádosti."
msgid "Unsubscribed"
msgstr "Odhlášeno"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5855,12 +6557,11 @@ msgstr "Neplatné uvítací text. Max délka je 255 znaků."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Neplatné výchozí přihlášení: '%1$s' není uživatel."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5917,55 +6618,71 @@ msgstr "Zda chcete uživatelům umožnit pozvat nové uživatele."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Uložit Nastavení webu"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autorizujte přihlášení"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete odebírat "
"sdělení tohoto uživatele. Pokud jste právě nepožádali o přihlášení k tomuto "
"uživteli, klikněte na \"Zrušit\""
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licence"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Přijmout"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Přihlásit se k tomuto uživateli"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Odmítnout"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Odmítnout toto přihlášení"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Žádná žádost o autorizaci!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Odběr autorizován"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5975,11 +6692,12 @@ msgstr ""
"nápovědě jak správně postupovat při autorizování odběru. Váš řetězec odběru "
"je:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Odběr odmítnut"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5988,48 +6706,72 @@ msgstr ""
"Odebírání bylo zamítnuto, ale nepřišla žádná callback adresa. Zkontrolujte v "
"nápovědě jak správně postupovat pro plné zamítnutí odběru."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "Naslouchací URI ‘%s’ zde nebyl nalezen."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "Naslouchací URI ‘%s’ je příliš dlouhý."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "Naslouchací URI ‘%s’ je místní uživatel."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "URL profilu '%s' je pro místního uživatele."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Licence naslouchaného '%1$s' není kompatibilní s licencí stránky '%2$s'."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "URL avataru ‘%s’ není platný."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Nelze načíst avatara z URL '%s'"
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Špatný typ obrázku na URL '%s'"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Vzhled profilu"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6037,7 +6779,7 @@ msgstr ""
"Přizpůsobit vzhled vašeho profilu obrázkem na pozadí a barevnou paletou "
"vašeho výběru."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Užijte si svůj párek v rohlíku!"
@@ -6068,7 +6810,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Oznámení od %1$s na %2$s!"
@@ -6129,7 +6871,7 @@ msgid "Plugins"
msgstr "Pluginy"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Verze"
@@ -6138,32 +6880,32 @@ msgid "Author(s)"
msgstr "Autoři"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Oblíbit"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) přidal vaše oznámení jako oblíbené"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Nemůžu zpracovat URL '%s'"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin si myslí, že je něco nemožné."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6183,7 +6925,7 @@ msgstr[2] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6193,7 +6935,7 @@ msgstr[2] "Takto velký soubor by překročil vaši uživatelskou kvótu %d bajt
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6202,7 +6944,7 @@ msgstr[1] "Takto velký soubor by překročil vaši měsíční kvótu %d bajtů
msgstr[2] "Takto velký soubor by překročil vaši měsíční kvótu %d bajtů."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Neplatné jméno souboru."
@@ -6260,7 +7002,7 @@ msgid "Could not create login token for %s"
msgstr "Nelze vytvořit přihlašovací token pro %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Nenalezeno jméno databáze ani DSN."
@@ -6287,23 +7029,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Nenalezen profil (%1$d) pro oznámení (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Chyba databáze při vkládání nálepky: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problém ukládání sdělení. Příliš dlouhé."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problém při ukládání sdělení. Neznámý uživatel."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6311,7 +7053,7 @@ msgstr ""
"několik minut."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6320,43 +7062,43 @@ msgstr ""
"několik minut."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Máte zakázáno (banned) posílat upozornění na tomto webu."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problém při ukládání sdělení"
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
#, fuzzy
msgid "Bad type provided to saveKnownGroups."
msgstr "saveKnownGroups obdrželo špatný typ."
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problém při ukládání skupinového inboxu"
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Nelze uložit místní info skupiny."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6364,14 +7106,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "Nelze zrušit roli \"%1$s\" pro uživatele #%2$d, neexistuje."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr "Nelze zrušit roli \"%1$s\" pro uživatele #%2$d, chyba databáze."
@@ -6441,35 +7183,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Vítejte na %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Nenastaven uživatel pro jednouživatelský mód"
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Nelze vytvořit skupinu."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Nelze nastavit URI skupiny."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Nelze nastavit členství ve skupině."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Nelze uložit místní info skupiny."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Nemůžete odstranit uživatele."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6506,211 +7269,214 @@ msgid "Other"
msgstr "Jiné"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "stránka bez názvu"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Primární navigace na webu"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Osobní profil a časová osa přátel"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Osobní"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Změňte svůj e-mail, avatar, heslo, profil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Účet"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Připojení ke službám"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Připojit"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Změna konfigurace webu"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Admin"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Pozvěte přátele a kolegy, aby se k vám připojili na %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Pozvat"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Odhlášení z webu"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Odhlásit se"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Zaregistrujte se"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registrovat"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Přihlásit se na stránky"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Přihlásit"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Nápověda"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Nápověda"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Vyhledávání osob nebo textu"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Hledat"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Sdělení"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Místní zobrazení"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Sdělení stránky"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Sekundární navigace na webu"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Nápověda"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "O nás"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "TOS (pravidla použití služby)"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Soukromí"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Zdroj"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Kontakt"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Odznak"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licence softwaru StatusNet"
@@ -6718,7 +7484,7 @@ msgstr "Licence softwaru StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6728,7 +7494,7 @@ msgstr ""
"broughtby%%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** je služba mikroblogů."
@@ -6737,7 +7503,7 @@ msgstr "**%%site.name%%** je služba mikroblogů."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6749,50 +7515,50 @@ msgstr ""
"licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licence k obsahu stránek"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Obsah a data z %1$S jsou soukromé a důvěrné."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr "Obsah a data copyright %1$s. Všechna práva vyhrazena."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr "Obsah a data copyright přispěvatelů. Všechna práva vyhrazena."
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "Všechen obsah a data %1$s jsou k dispozici v rámci licence %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Stránkování"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Po"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Před"
@@ -6801,10 +7567,80 @@ msgstr "Před"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "Očekávám kořenový element feedu, ale dostal jsem celý XML dokument."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Neznámý jazyk \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Fotka"
+msgid "Cannot force remote user to subscribe."
+msgstr "Uveďte jméno uživatele ke kterému se přihlásit."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Neznámý typ souboru"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Jste již členem této skupiny."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Najít v obsahu oznámení"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Uživatel neexistuje."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6876,7 +7712,7 @@ msgid "User configuration"
msgstr "Akce uživatele"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Uživatel"
@@ -6922,19 +7758,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6957,28 +7797,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Nemohu vložit zprávu."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Chyba databáze při vkládání uživatele aplikace OAuth."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Chyba databáze při vkládání uživatele aplikace OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Ikona pro tuto aplikaci"
@@ -7090,17 +7934,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Obnovit"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Neodstraňujte toto oznámení"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autor"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Poskytovatel"
@@ -7131,6 +7981,11 @@ msgstr "Změna hesla není povolena"
msgid "Block"
msgstr "Blokovat"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Zablokovat tohoto uživatele"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7245,7 +8100,7 @@ msgstr "Celé jméno %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Poloha: %s"
@@ -7253,7 +8108,7 @@ msgstr "Poloha: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Domovská stránka: %s"
@@ -7528,26 +8383,26 @@ msgstr ""
"tracking - Dosud neimplementován.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Žádný konfigurační soubor nalezen. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Díval jsem se po konfiguračních souborech na těchto místech: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Možná budete chtít spustit instalační program abyste to vyřešili."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Jdi na instalaci."
@@ -7591,14 +8446,19 @@ msgstr "Autorizované propojené aplikace"
msgid "Database error"
msgstr "Chyba databáze"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Odstranit tohoto uživatele"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Nahrát soubor"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7619,26 +8479,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "vyp."
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Reset"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Změnit barvy"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Použít výchozí"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Obnovit výchozí vzhledy"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Reset zpět do výchozího"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Uložit vzhled"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Nelze uložit vzhled."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Obnoveno výchozí nastavení vzhledu."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Nelze zrušit přístup aplikace %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Odebrat toto oznámení z oblíbených"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Znemilostnit oblíbenou"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Přidat toto oznámení do oblíbených"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Oblíbit"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7655,6 +8563,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Všichni členové"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7689,20 +8610,20 @@ msgstr "Jdi"
msgid "Grant this user the \"%s\" role"
msgstr "Dát tomuto uživateli roli \"%s\""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL domovské stránky nebo blogu skupiny nebo tématu"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Popište skupinu nebo téma"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
@@ -7710,7 +8631,7 @@ msgstr[0] "Popište skupinu nebo téma ve %d znacích"
msgstr[1] "Popište skupinu nebo téma ve %d znacích"
msgstr[2] "Popište skupinu nebo téma ve %d znacích"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
@@ -7718,7 +8639,7 @@ msgstr ""
"Umístění skupiny, pokud je nějaké, ve stylu \"město, stát (nebo region), země"
"\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7824,40 +8745,41 @@ msgstr "Značky v oznámeních skupiny %s"
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:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Nepodporovaný formát obrázku."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Ten soubor je příliš velký. Maximální velikost souboru je %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Částečné náhrání."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Chyba systému při nahrávání souboru"
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Není obrázkem, nebo jde o poškozený soubor."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Ztratili jsme náš soubor."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Neznámý typ souboru"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7866,7 +8788,7 @@ msgstr[1] "MB"
msgstr[2] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7875,7 +8797,7 @@ msgstr[1] "kB"
msgstr[2] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7897,23 +8819,25 @@ msgstr "Neznámý zdroj inboxu %d."
msgid "Leave"
msgstr "Opustit"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Přihlásit se pomocí svého uživatelského jména a hesla."
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Vytvořit nový účet"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Potvrzení emailové adresy"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7945,14 +8869,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s od teď naslouchá tvým sdělením na %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7966,7 +8890,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7993,14 +8917,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "O: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nová e-mailová adresa pro psaní na %s"
@@ -8008,7 +8932,7 @@ msgstr "Nová e-mailová adresa pro psaní na %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8031,34 +8955,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "status %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS potvrzení"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: potvrďte že vlastníte toto telefonní číslo tímto kódem:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "%s Vás pošťouchl"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8087,7 +9011,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nová soukromá zpráva od %s"
@@ -8096,7 +9020,7 @@ msgstr "Nová soukromá zpráva od %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8131,7 +9055,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) přidal vaše oznámení jako oblíbené"
@@ -8141,7 +9065,7 @@ msgstr "%s (@%s) přidal vaše oznámení jako oblíbené"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8180,7 +9104,7 @@ msgstr ""
" %6$s \n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8193,7 +9117,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) poslal oznámení žádající o vaši pozornost"
@@ -8204,7 +9128,7 @@ msgstr "%s (@%s) poslal oznámení žádající o vaši pozornost"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8254,11 +9178,11 @@ msgstr ""
"\n"
"P.S. Tato upozornění můžete vypnout zde: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Pouze uživatel může přečíst své vlastní schránky."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8267,10 +9191,6 @@ msgstr ""
"zapojili ostatní uživatelé v rozhovoru. Lidé mohou posílat zprávy jen pro "
"vaše oči."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "od"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Nelze zpracovat zprávu."
@@ -8297,41 +9217,6 @@ msgstr "Nepodporovaný typ zprávy: %s"
msgid "There was a database error while saving your file. Please try again."
msgstr "Nastala chyba v databázi při ukládání souboru. Prosím zkuste to znovu."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Velkost uploadovaného souboru překračuje upload_max_filesize limit v php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Velkost uploadovaného souboru překračuje MAX_FILE_SIZE limit, které bylo "
-"uvedeno v HTML formuláři."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Nahrávaný soubor byl nahrán pouze částečně."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Chybí dočasný adresář."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Nepodařilo se zapsat soubor na disk."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Nahrávání souboru zastaveno rozšířením PHP."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8352,7 +9237,7 @@ msgstr "Nelze určit typ MIME souboru."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8361,7 +9246,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8395,18 +9280,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Odeslat"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Zpráva"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "od"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
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 a žádné mezery."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8423,11 +9317,11 @@ msgstr "Poslat oznámení"
msgid "What's up, %s?"
msgstr "Co se děje, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Připojit"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Přiložit soubor"
@@ -8448,55 +9342,59 @@ msgstr ""
"prosím znovu později"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "J"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "V"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "Z"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "v"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "v kontextu"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Opakováno"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Odpovědět na toto oznámení"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Odpovědět"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Odstranit toto oznámení"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Sdělení opakováno"
@@ -8533,77 +9431,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "Nelze vložit odebírání"
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Osobní"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Odpovědi"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Oblíbené"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Doručená pošta"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Vaše příchozí zprávy"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Odeslaná pošta"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Vaše odeslané zprávy"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Značky v oznámeních %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Neznámé"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Odběry"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Všechny odběry"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Odběratelé"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Všichni odběratelé"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID uživatele"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Členem od"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Skupiny"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Denní průměr"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Všechny skupiny"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Neimplementovaná metoda."
@@ -8650,7 +9584,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Odebrat uživateli roli \"%s\""
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr " API metoda nebyla nalezena."
@@ -8741,6 +9675,10 @@ msgstr "Pozvat"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Pozvěte přátele a kolegy, aby se k vám připojili na %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Přihlásit se k tomuto uživateli"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8858,64 +9796,81 @@ msgstr "Odhlásit"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Uživatel nemá profil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Upravit avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Akce uživatele"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Probíhá mazání uživatele..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Upravit nastavení profilu"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Editovat"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Odeslat přímou zprávu tomuto uživateli"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Zpráva"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderovat"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Role uživatele"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrátor"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderátor"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Nejste přihlášen(a)."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "před pár sekundami"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "asi před minutou"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8924,12 +9879,12 @@ msgstr[1] ""
msgstr[2] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "asi před hodinou"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8938,12 +9893,12 @@ msgstr[1] ""
msgstr[2] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "asi přede dnem"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8952,12 +9907,12 @@ msgstr[1] ""
msgstr[2] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "asi před měsícem"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8966,18 +9921,13 @@ msgstr[1] ""
msgstr[2] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "asi před rokem"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s není platná barva!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s není platná barva! Použijte 3 nebo 6 hex znaků."
@@ -8999,33 +9949,18 @@ msgstr[1] "Zpráva je příliš dlouhá - maximum je %1$d znaků, poslal jsi %2$
msgstr[2] "Zpráva je příliš dlouhá - maximum je %1$d znaků, poslal jsi %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Neplatná velikost"
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Nebylo zadáno uživatelské ID."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
diff --git a/locale/da/LC_MESSAGES/statusnet.po b/locale/da/LC_MESSAGES/statusnet.po
index 32e65b0fe0..763a419712 100644
--- a/locale/da/LC_MESSAGES/statusnet.po
+++ b/locale/da/LC_MESSAGES/statusnet.po
@@ -3,6 +3,7 @@
#
# Author: Brion
# Author: Mstenbaek
+# Author: Nghtwlkr
# --
# This file is distributed under the same license as the StatusNet package.
#
@@ -10,17 +11,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:31+0000\n"
+"POT-Creation-Date: 2011-01-14 23:32+0000\n"
+"PO-Revision-Date: 2011-01-14 23:34:39+0000\n"
"Language-Team: Danish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: da\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -278,7 +279,7 @@ msgstr "Opdateringer fra %1$s og venner på %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -325,7 +326,8 @@ msgstr "Kunne ikke opdatere brugeren."
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/apiaccountupdateprofileimage.php:130
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
#: lib/profileaction.php:84
@@ -400,9 +402,9 @@ msgid "%s subscriptions"
msgstr ""
#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#, php-format
msgid "%s favorites"
-msgstr "Tilføj til favoritter"
+msgstr "%s favoritter"
#: actions/apiatomservice.php:123
#, fuzzy, php-format
@@ -551,7 +553,7 @@ msgstr "Kunne ikke finde mål bruger."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
+#: actions/newgroup.php:136 actions/profilesettings.php:277
#: actions/register.php:214
msgid "Nickname already in use. Try another one."
msgstr "Kaldenavn allerede er i brug. Prøv med et andet."
@@ -561,7 +563,7 @@ msgstr "Kaldenavn allerede er i brug. Prøv med et andet."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
+#: actions/newgroup.php:140 actions/profilesettings.php:247
#: actions/register.php:216
msgid "Not a valid nickname."
msgstr "Ikke et gyldigt kaldenavn"
@@ -573,7 +575,7 @@ msgstr "Ikke et gyldigt kaldenavn"
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
+#: actions/newgroup.php:147 actions/profilesettings.php:252
#: actions/register.php:223
msgid "Homepage is not a valid URL."
msgstr "Hjemmesiden er ikke en gyldig URL adresse."
@@ -583,7 +585,7 @@ msgstr "Hjemmesiden er ikke en gyldig URL adresse."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
+#: actions/newgroup.php:151 actions/profilesettings.php:256
#: actions/register.php:226
msgid "Full name is too long (maximum 255 characters)."
msgstr ""
@@ -598,7 +600,7 @@ msgstr ""
#. TRANS: %d is the maximum number of allowed characters.
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/newgroup.php:156
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -610,7 +612,7 @@ msgstr[1] ""
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
+#: actions/newgroup.php:163 actions/profilesettings.php:269
#: actions/register.php:235
msgid "Location is too long (maximum 255 characters)."
msgstr ""
@@ -622,7 +624,7 @@ msgstr ""
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/newgroup.php:176
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -641,7 +643,7 @@ msgstr "Ugyldigt alias: \"%s\"."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#: actions/newgroup.php:191
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Alias \"%s\" er allerede i brug. Prøv med et andet."
@@ -650,7 +652,7 @@ msgstr "Alias \"%s\" er allerede i brug. Prøv med et andet."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/newgroup.php:198
msgid "Alias can't be the same as nickname."
msgstr "Alias kan ikke være det samme som kaldenavn."
@@ -952,9 +954,10 @@ msgstr "Kan ikke gentage din egen meddelelse."
msgid "Already repeated that notice."
msgstr "Allerede gentaget denne medelelse."
+#. TRANS: Client error shown when using a non-supported HTTP method.
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr ""
@@ -1040,7 +1043,7 @@ msgstr ""
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr ""
@@ -1131,30 +1134,30 @@ msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#: actions/apitimelineuser.php:378
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Kan ikke gentage din egen meddelelse."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#: actions/apitimelineuser.php:406
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr ""
-#: actions/apitimelineuser.php:435
+#: actions/apitimelineuser.php:437
#, php-format
msgid "AtomPub post with unknown attention URI %s"
msgstr ""
@@ -1165,14 +1168,13 @@ msgid "API method under construction."
msgstr "API metode under udvikling."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr ""
#: actions/atompubfavoritefeed.php:70
-#, fuzzy
msgid "No such profile"
-msgstr "Ingen sådan fil."
+msgstr "Ingen sådan profil"
#: actions/atompubfavoritefeed.php:145
#, php-format
@@ -1271,21 +1273,26 @@ msgstr ""
msgid "Can't delete someone else's membership"
msgstr ""
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
msgid "No such profile id: %d"
msgstr "Ingen sådan fil."
-#: actions/atompubshowsubscription.php:90
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
+msgid "Profile %1$d not subscribed to profile %2$d"
msgstr "Du er ikke medlem af denne gruppe."
-#: actions/atompubshowsubscription.php:154
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's subscription"
msgstr "Kunne ikke slette favorit."
#: actions/atompubsubscriptionfeed.php:150
@@ -1379,13 +1386,15 @@ msgid "Preview"
msgstr "Forhåndsvisning"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr ""
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr ""
@@ -1426,6 +1435,37 @@ msgstr "Mislykket ajourføring af Avatar."
msgid "Avatar deleted."
msgstr "Avatar slettet."
+#: actions/backupaccount.php:62 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#: actions/backupaccount.php:80
+msgid "Only logged-in users can backup their account."
+msgstr ""
+
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#: actions/backupaccount.php:232
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and "
+"provides an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#: actions/backupaccount.php:255
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Baggrund"
+
+#: actions/backupaccount.php:258
+msgid "Backup your account"
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1631,6 +1671,76 @@ msgstr "Samtale"
msgid "Notices"
msgstr "Bekendtgørelser"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Du kan ikke slette brugere."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Avatar slettet."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:474
+#, fuzzy
+msgid "Delete account"
+msgstr "Slet program"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:239 actions/register.php:441
+msgid "Confirm"
+msgstr "Bekræft"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Du kan ikke slette brugere."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Du kan ikke slette brugere."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1775,7 +1885,7 @@ msgid "Do not delete this notice"
msgstr "Slet ikke denne meddelelse"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
+#: actions/deletenotice.php:166 lib/noticelist.php:673
msgid "Delete this notice"
msgstr "Slet denne meddelelse"
@@ -2080,7 +2190,7 @@ msgstr "Brug denne formular til at redigere gruppen."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#: actions/editgroup.php:239 actions/newgroup.php:186
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Ugyldigt alias: \"%s\"."
@@ -2092,7 +2202,7 @@ msgstr "Kunne ikke opdatere gruppe."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:279 classes/User_group.php:534
msgid "Could not create aliases."
msgstr "Kunne ikke oprette aliaser."
@@ -3317,8 +3427,14 @@ msgstr "Kunne ikke oprette programmet."
msgid "New group"
msgstr "Ny gruppe"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Du kan ikke tildele brugerroller på dette site."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Brug denne formular for at oprette en ny gruppe."
@@ -3645,11 +3761,6 @@ msgstr "Ny adgangskode"
msgid "6 or more characters"
msgstr ""
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Bekræft"
-
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
msgid "Same as password above"
msgstr ""
@@ -4173,6 +4284,11 @@ msgstr "Kunne ikke opdatere brugeren."
msgid "Settings saved."
msgstr "Valg gemt."
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:481 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr ""
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4621,7 +4737,7 @@ msgstr "Kan ikke gentage din egen meddelelse."
msgid "You already repeated that notice."
msgstr "Allerede gentaget denne medelelse."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:114 lib/noticelist.php:692
#, fuzzy
msgid "Repeated"
msgstr "Gentagne til %s"
@@ -4684,6 +4800,91 @@ msgstr ""
msgid "Replies to %1$s on %2$s!"
msgstr "Opdateringer markeret som favorit af %1$s på %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Du har ikke registreret nogen programmer endnu."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Oplægge"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr ""
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Oplægge"
+
#: actions/revokerole.php:75
#, fuzzy
msgid "You cannot revoke user roles on this site."
@@ -4796,7 +4997,7 @@ msgid "Reset key & secret"
msgstr ""
#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#: lib/deleteuserform.php:66 lib/noticelist.php:673
msgid "Delete"
msgstr "Slet"
@@ -6060,13 +6261,13 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164 lib/favorform.php:143
msgid "Favor"
msgstr ""
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr ""
@@ -6177,7 +6378,7 @@ msgid "Could not create login token for %s"
msgstr "Kunne ikke oprette aliaser."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:537
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6206,72 +6407,72 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, fuzzy, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Databasefejl ved tilføjelse af OAuth applikationsbruger."
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr ""
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
#, fuzzy
msgid "You are banned from posting notices on this site."
msgstr "Du kan ikke tildele brugerroller på dette site."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr ""
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:914
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1013
msgid "Problem saving group inbox."
msgstr ""
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1127
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1646
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6279,14 +6480,14 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:765
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:774
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6363,35 +6564,35 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:516
#, fuzzy
msgid "Could not create group."
msgstr "Kunne ikke opdatere gruppe."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:526
#, fuzzy
msgid "Could not set group URI."
msgstr "Kunne ikke opdatere gruppe."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:549
#, fuzzy
msgid "Could not set group membership."
msgstr "Kunne ikke opdatere gruppe."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:564
#, fuzzy
msgid "Could not save local group info."
msgstr "Kunne ikke gemme profilen."
@@ -6739,10 +6940,57 @@ msgstr ""
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
-msgid "Post"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Brugeren har ingen profil."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
msgstr ""
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+#, fuzzy
+msgid "Cannot force remote user to subscribe."
+msgstr "Kunne ikke opdatere bruger oplysninger."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Brugeren har ingen profil."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Du er allerede medlem af denne gruppe."
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Kan ikke gentage din egen meddelelse."
+
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
msgid "Can't handle remote content yet."
@@ -7036,10 +7284,16 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Fjern"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Slet ikke denne meddelelse"
+
#. TRANS: DT element label in attachment list item.
#: lib/attachmentlist.php:294
msgid "Author"
@@ -7438,24 +7692,24 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:150
msgid "No configuration file found."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:153
msgid "I looked for configuration files in the following places:"
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:156
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:160
msgid "Go to the installer."
msgstr ""
@@ -7562,6 +7816,18 @@ msgstr ""
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr ""
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7747,11 +8013,6 @@ msgstr ""
msgid "Partial upload."
msgstr "Ingen fil uploaded."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr ""
-
#: lib/imagefile.php:111
msgid "Not an image or corrupt file."
msgstr ""
@@ -8073,7 +8334,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only."
msgstr ""
-#: lib/mailbox.php:228 lib/noticelist.php:521
+#: lib/mailbox.php:228 lib/noticelist.php:522
msgid "from"
msgstr ""
@@ -8106,38 +8367,6 @@ msgstr "Formatet understøttes ikke"
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8159,7 +8388,7 @@ msgstr "Kunne ikke finde kilde bruger"
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8168,7 +8397,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8202,17 +8431,17 @@ msgid "Send"
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Kaldenavn må kun have små bogstaver og tal og ingen mellemrum."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8253,58 +8482,58 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
#, fuzzy
msgid "N"
msgstr "Nej"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr ""
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
#, fuzzy
msgid "Repeated by"
msgstr "Gentagne til %s"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
#, fuzzy
msgid "Reply to this notice"
msgstr "Slet denne meddelelse"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr ""
-#: lib/noticelist.php:690
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr ""
@@ -8472,7 +8701,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Bloker denne bruger fra denne gruppe"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr ""
@@ -8831,20 +9060,7 @@ msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr ""
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po
index e10a3eac06..c6947219db 100644
--- a/locale/de/LC_MESSAGES/statusnet.po
+++ b/locale/de/LC_MESSAGES/statusnet.po
@@ -1,9 +1,10 @@
# Translation of StatusNet - Core to German (Deutsch)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Apmon
# Author: Bavatar
# Author: Brion
+# Author: George Animal
# Author: Kghbln
# Author: Lutzgh
# Author: March
@@ -19,17 +20,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:33+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:22+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -85,8 +86,9 @@ msgid "Save access settings"
msgstr "Zugangs-Einstellungen speichern"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -96,13 +98,13 @@ msgstr "Zugangs-Einstellungen speichern"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Speichern"
@@ -110,7 +112,7 @@ msgstr "Speichern"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Seite nicht vorhanden"
@@ -120,6 +122,8 @@ msgstr "Seite nicht vorhanden"
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -135,13 +139,23 @@ msgstr "Seite nicht vorhanden"
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -149,15 +163,15 @@ msgstr "Seite nicht vorhanden"
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Unbekannter Benutzer."
@@ -171,9 +185,10 @@ msgstr "%1$s und Freunde, Seite% 2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s und Freunde"
@@ -288,7 +303,7 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -322,7 +337,21 @@ msgstr ""
"sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Konnte Benutzerdaten nicht aktualisieren."
@@ -332,18 +361,23 @@ msgstr "Konnte Benutzerdaten nicht aktualisieren."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Benutzer hat kein Profil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Konnte Profil nicht speichern."
@@ -353,8 +387,8 @@ msgstr "Konnte Profil nicht speichern."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -374,13 +408,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Konnte Twitter-Einstellungen nicht speichern."
@@ -388,48 +423,59 @@ msgstr "Konnte Twitter-Einstellungen nicht speichern."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Konnte Benutzerdesign nicht aktualisieren."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s-Zeitleiste"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s Abonnements"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Favoriten"
+msgstr "%s Favoriten"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "%s Gruppen-Mitglieder"
+msgstr "%s Mitgliedschaften"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Du kannst dich nicht selbst blockieren!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Blockieren des Benutzers fehlgeschlagen."
@@ -487,7 +533,8 @@ msgstr "Empfänger nicht gefunden."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot 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."
@@ -513,8 +560,9 @@ msgid "This status is already a favorite."
msgstr "Diese Nachricht ist bereits ein Favorit!"
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Konnte keinen Favoriten erstellen."
@@ -524,7 +572,8 @@ msgid "That status is not a favorite."
msgstr "Diese Nachricht ist kein Favorit!"
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Konnte Favoriten nicht löschen."
@@ -553,7 +602,6 @@ msgstr "Du kannst dich nicht selbst entfolgen!"
#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
#: actions/apifriendshipsexists.php:88
-#, fuzzy
msgid "Two valid IDs or nick names must be supplied."
msgstr "Zwei gültige IDs oder Benutzernamen müssen angegeben werden."
@@ -571,9 +619,9 @@ msgstr "Konnte keine Statusmeldungen finden."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus."
@@ -581,21 +629,22 @@ msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Ungültiger Benutzername."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr ""
"Homepage ist keine gültige URL. URLs müssen ein Präfix wie http enthalten."
@@ -604,23 +653,24 @@ msgstr ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Der bürgerliche Name ist zu lang (maximal 255 Zeichen)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -631,9 +681,9 @@ msgstr[1] "Die Beschreibung ist zu lang (max. %d Zeichen)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)."
@@ -643,8 +693,8 @@ msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -661,18 +711,16 @@ msgstr "Ungültiges Alias: „%s“"
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Benutzername „%s“ wird bereits verwendet. Suche dir einen anderen aus."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Alias kann nicht das gleiche wie der Spitzname sein."
@@ -683,28 +731,32 @@ msgstr "Alias kann nicht das gleiche wie der Spitzname sein."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Gruppe nicht gefunden!"
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Du bist bereits Mitglied dieser Gruppe"
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Der Admin dieser Gruppe hat dich blockiert."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Konnte Benutzer %1$s nicht der Gruppe %2$s hinzufügen."
@@ -716,9 +768,11 @@ msgstr "Du bist kein Mitglied dieser Gruppe."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -755,7 +809,7 @@ msgid "Upload failed."
msgstr "Hochladen fehlgeschlagen."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Anmelde-Token ungültig oder abgelaufen."
@@ -775,20 +829,25 @@ msgid "Request token already authorized."
msgstr "Anfrage-Token bereits autorisiert."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
@@ -805,18 +864,22 @@ msgstr "Datenbankfehler beim Einfügen von oauth_token_association."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Unerwartete Formulareingabe."
@@ -866,29 +929,31 @@ msgstr "Profil"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Benutzername"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Passwort"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -962,6 +1027,7 @@ msgstr "Du kannst den Status eines anderen Benutzers nicht löschen."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -981,42 +1047,53 @@ msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen."
msgid "Already repeated that notice."
msgstr "Nachricht bereits wiederholt"
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
-#, fuzzy
msgid "HTTP method not supported."
-msgstr "API-Methode nicht gefunden."
+msgstr "HTTP-Methode wird nicht unterstützt."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
-msgstr "Bildformat wird nicht unterstützt."
+msgid "Unsupported format: %s."
+msgstr "Nicht unterstütztes Bildformat: %s"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Status gelöscht."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Keine Nachricht mit dieser ID gefunden."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "Die Nachricht konnte nicht gelöscht werden."
-#: actions/apistatusesshow.php:243
-#, fuzzy, php-format
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
+#, php-format
msgid "Deleted notice %d"
-msgstr "Notiz löschen"
+msgstr "Notiz %d löschen"
#. TRANS: Client error displayed when the parameter "status" is missing.
#: actions/apistatusesupdate.php:221
@@ -1078,7 +1155,7 @@ msgstr "%1$s-Aktualisierungen favorisiert von %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Konnte keinen Gruppen-Feed erstellen - %s"
@@ -1099,13 +1176,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "Nachrichten von %1$s, die auf Nachrichten von %2$s / %3$s antworten."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s öffentliche Zeitleiste"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s Nachrichten von allen!"
@@ -1144,59 +1222,56 @@ msgstr "Mit „%1$s“ getaggte Nachrichten auf „%2$s“!"
#. TRANS: Client error displayed trying to add a notice to another user's timeline.
#: actions/apitimelineuser.php:297
-#, fuzzy
msgid "Only the user can add to their own timeline."
-msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen."
+msgstr "Nur der Benutzer kann Nachrichten in die eigene Timeline hinzufügen."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
msgid "Only accept AtomPub for Atom feeds."
-msgstr ""
+msgstr "Es wird nur AtomPub als Atom Feed akzeptiert"
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr ""
+msgstr "Atom Post darf nicht leer sein."
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr ""
+msgstr "Atom Post muss wohlgeformtes XML sein."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
-msgstr ""
+msgstr "Atom-Post muss ein Atom-Eintrag sein."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr ""
+msgstr "Nur POST verwenden"
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Durchsuche den Inhalt der Nachrichten"
+msgstr "Kein Inhalt für Nachricht %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
-#, fuzzy, php-format
-msgid "Notice with URI \"%s\" already exists."
-msgstr "Nachricht mit dieser ID existiert nicht."
-
-#: actions/apitimelineuser.php:435
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
+msgid "Notice with URI \"%s\" already exists."
+msgstr "Nachricht mit URI „%s“ existiert bereits."
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
@@ -1204,150 +1279,213 @@ msgid "API method under construction."
msgstr "API-Methode im Aufbau."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "API-Methode nicht gefunden."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Profil nicht gefunden."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Konnte neues Abonnement nicht eintragen."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Durchsuche den Inhalt der Nachrichten"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Durchsuche den Inhalt der Nachrichten"
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
msgid "Unknown note."
-msgstr "Unbekannt"
+msgstr "Unbekannter Hinweis."
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
msgid "Already a favorite."
-msgstr "Zu Favoriten hinzufügen"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Profil nicht gefunden."
+msgstr "Bereits ein Favorit."
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
+#, php-format
msgid "%s group memberships"
-msgstr "%s Gruppen-Mitglieder"
+msgstr "%s Gruppen-Mitgliedschaften"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Gruppen, in denen „%s“ Mitglied ist"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Konnte neues Abonnement nicht eintragen."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
-
-#: actions/atompubmembershipfeed.php:256
+#: actions/atompubmembershipfeed.php:242
#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Durchsuche den Inhalt der Nachrichten"
+
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Unbekannt"
+msgstr "Unbekannte Gruppe."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Alle Mitglieder"
+msgstr "Bereits Mitglied."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "blockiert vom Administrator"
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "Datei nicht gefunden."
+msgstr "Favorit nicht gefunden."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Konnte Favoriten nicht löschen."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Keine derartige Gruppe."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "Alle Mitglieder"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "API-Methode nicht gefunden."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "Kein Mitglied"
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Profil nicht gefunden."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Du hast dieses Profil nicht abonniert."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Konnte Selbst-Abonnement nicht löschen."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
+#, php-format
+msgid "No such profile id: %d."
+msgstr "Keine Profil-Id: %d"
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Du hast dieses Profil nicht abonniert."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Konnte Selbst-Abonnement nicht löschen."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Leute, die „%s“ abonniert haben"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Man kann nur Personen folgen"
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "Profil %s ist unbekannt"
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Unbekannter Dateityp"
+msgid "Already subscribed to %s."
+msgstr "Bereits abonniert!"
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1357,11 +1495,15 @@ msgstr "Kein solcher Anhang."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Kein Benutzername."
@@ -1378,7 +1520,7 @@ msgstr "Ungültige Größe."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1392,41 +1534,51 @@ msgstr ""
"Du kannst dein persönliches Avatar hochladen. Die maximale Dateigröße ist %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Benutzer ohne passendes Profil"
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Avatar-Einstellungen"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Original"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Vorschau"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Löschen"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Hochladen"
@@ -1442,32 +1594,73 @@ msgstr "Zuschneiden"
msgid "No file uploaded."
msgstr "Keine Datei hoch geladen."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+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"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Daten verloren."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Avatar aktualisiert."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Aktualisierung des Avatars fehlgeschlagen."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Avatar gelöscht."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Backup-Konto"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Nur angemeldete Benutzer können Nachrichten wiederholen."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Backup"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+#, fuzzy
+msgid "Backup your account."
+msgstr "Backup-Konto"
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1475,7 +1668,8 @@ msgstr "Du hast diesen Benutzer bereits blockiert."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Benutzer blockieren"
@@ -1498,15 +1692,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Nein"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Diesen Benutzer freigeben"
#. TRANS: Button label on the user block form.
@@ -1517,47 +1711,21 @@ msgstr "Diesen Benutzer freigeben"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Ja"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
-msgstr "Diesen Benutzer blockieren"
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "Diesen Benutzer blockieren."
#. TRANS: Server error displayed when blocking a user fails.
#: actions/block.php:189
msgid "Failed to save block information."
msgstr "Konnte Blockierungsdaten nicht speichern."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Keine derartige Gruppe."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1627,23 +1795,6 @@ msgstr "Nicht erkannter Adresstyp %s"
msgid "That address has already been confirmed."
msgstr "Diese Adresse wurde bereits bestätigt."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Konnte Benutzerdaten nicht aktualisieren."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1668,11 +1819,82 @@ msgid "Conversation"
msgstr "Unterhaltung"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Nachrichten"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Nur angemeldete Benutzer können Nachrichten wiederholen."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "Du kannst keine Benutzer löschen."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Ich bin mir sicher."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "Konto gelöscht."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Konto löschen"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Du kannst keine Benutzer löschen."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Du kannst keine Benutzer löschen."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1686,14 +1908,14 @@ msgstr "Programm nicht gefunden."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Du bist Besitzer dieses Programms"
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Es gab ein Problem mit deinem Sessiontoken."
@@ -1715,12 +1937,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Dieses Programm nicht löschen"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Programm löschen"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1729,8 +1953,10 @@ msgid "You must be logged in to delete a group."
msgstr "Du musst angemeldet sein, um eine Gruppe zu löschen."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Kein Benutzername oder ID"
@@ -1772,24 +1998,32 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+#, fuzzy
+msgid "Do not delete this group."
msgstr "Diese Gruppe nicht löschen"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+#, fuzzy
+msgid "Delete this group."
msgstr "Diese Gruppe löschen"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Nicht angemeldet."
@@ -1816,27 +2050,39 @@ msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Diese Nachricht nicht löschen"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Nachricht löschen"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Du kannst keine Benutzer löschen."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Du kannst nur lokale Benutzer löschen."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Benutzer löschen"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Benutzer löschen"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1844,78 +2090,102 @@ msgstr ""
"Bist du sicher, dass du den Benutzer löschen wisst? Alle Daten des Benutzers "
"werden aus der Datenbank gelöscht (ohne ein Backup)."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Diesen Benutzer nicht löschen"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Diesen Benutzer löschen"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Design"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Design-Einstellungen dieser StatusNet-Website"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Ungültige URL für das Logo"
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "Ungültige URL für das SSL-Logo."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Theme nicht verfügbar: %s"
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Logo ändern"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Seitenlogo"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "SSL-Logo"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Theme ändern"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Seitentheme"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Theme dieser Seite."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Angepasster Skin"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Du kannst ein angepasstes StatusNet-Theme als .ZIP-Archiv hochladen."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Hintergrundbild ändern"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Hintergrund"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1925,98 +2195,107 @@ msgstr ""
"Dateigröße beträgt %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "An"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Aus"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Hintergrundbild ein- oder ausschalten."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Hintergrundbild kacheln"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
msgstr "Farben ändern"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Inhalt"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Seitenleiste"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Text"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Links"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Erweitert"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Eigene CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Standardeinstellungen benutzen"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Standard-Design wiederherstellen"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Standard wiederherstellen"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Speichern"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Design speichern"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Diese Nachricht ist kein Favorit!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Zu Favoriten hinzufügen"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
+msgid "No such document \"%s\"."
msgstr "Unbekanntes Dokument „%s“"
#. TRANS: Title for "Edit application" form.
@@ -2031,7 +2310,7 @@ msgid "You must be logged in to edit an application."
msgstr "Du musst angemeldet sein, um eine Anwendung zu bearbeiten."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Anwendung nicht bekannt."
@@ -2041,62 +2320,72 @@ msgid "Use this form to edit your application."
msgstr "Benutze dieses Formular, um die Anwendung zu bearbeiten."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Name ist erforderlich."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "Der Name ist zu lang (maximal 255 Zeichen)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Der Name wird bereits verwendet. Suche dir einen anderen aus."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Beschreibung ist erforderlich."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Homepage ist zu lang."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr ""
"Homepage ist keine gültige URL. URLs müssen ein Präfix wie http enthalten."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organisation ist erforderlich. (Pflichtangabe)"
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "Die angegebene Organisation ist zu lang (maximal 255 Zeichen)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Homepage der Organisation ist erforderlich (Pflichtangabe)."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Antwort ist zu lang"
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "Antwort-URL ist nicht gültig"
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Konnte Programm nicht aktualisieren."
@@ -2107,14 +2396,17 @@ msgid "Edit %s group"
msgstr "Gruppe %s bearbeiten"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Du musst angemeldet sein, um eine Gruppe zu erstellen."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Du musst ein Admin sein, um die Gruppe zu bearbeiten"
@@ -2125,63 +2417,65 @@ msgstr "Benutze dieses Formular, um die Gruppe zu bearbeiten."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Ungültiges Stichwort: „%s“"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Konnte Gruppe nicht aktualisieren."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Konnte keinen Favoriten erstellen."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Einstellungen gespeichert."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "E-Mail-Einstellungen"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Einstellen, wie und wann du E-Mails von %%site.name%% bekommst."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "E-Mail-Adresse"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Aktuelle bestätigte E-Mail-Adresse."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Entfernen"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2194,46 +2488,46 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "E-Mail-Adresse, beispielsweise „Benutzername@example.org“"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Hinzufügen"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Eingehende E-Mail"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Ich möchte Einträge per E-Mail veröffentlichen."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Schicke eine E-Mail an diese Adresse um eine Nachricht zu posten."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
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."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2241,89 +2535,91 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Neu"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "E-Mail Einstellungen"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Informiere mich über neues Abonnements per E-Mail."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
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."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr ""
"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Schick mir eine E-Mail, wenn mir jemand eine @Nachricht schickt."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "MicroID für meine E-Mail-Adresse veröffentlichen."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "E-Mail-Einstellungen gespeichert."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Keine E-Mail-Adresse."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Konnte diese E-Mail-Adresse nicht normalisieren"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Ungültige E-Mail-Adresse."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Dies ist bereits deine E-Mail-Adresse."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Diese E-Mail-Adresse gehört bereits einem anderen Benutzer."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Konnte keinen Bestätigungscode einfügen."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2333,89 +2629,105 @@ msgstr ""
"Anweisungen, wie dieser benutzt wird."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Dies ist die falsche E-Mail Adresse"
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Konnte E-Mail-Bestätigung nicht löschen."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "E-Mail-Bestätigung abgebrochen."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Dies ist nicht deine E-Mail-Adresse."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Die E-Mail-Adresse wurde entfernt."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Keine Eingangs-E-Mail-Adresse."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Konnte Benutzereintrag nicht schreiben"
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Eingehende E-Mail-Adresse entfernt"
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Diese Nachricht ist bereits ein Favorit!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Aus Favoriten entfernen"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Beliebte Nachrichten"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Beliebte Nachrichten, Seite %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Die momentan beliebtesten Nachrichten auf dieser Seite."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Favorisierte Mitteilungen werden auf dieser Seite angezeigt; es wurden aber "
"noch keine Favoriten markiert."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2424,7 +2736,9 @@ msgstr ""
"Sei der erste der eine Nachricht favorisiert indem du auf die entsprechenden "
"Schaltfläche neben der Nachricht klickst."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2433,142 +2747,186 @@ msgstr ""
"Warum [registrierst du nicht einen Account](%%%%action.register%%%%) und "
"bist der erste der eine Nachricht favorisiert!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%ss favorisierte Nachrichten"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Aktualisierungen von %1$s auf %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Top-Benutzer"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Top-Benutzer, Seite %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Eine Auswahl toller Benutzer auf %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Keine Nachrichten-ID"
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Keine Nachricht"
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Keine Anhänge vorhanden"
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Kein Anhang geladen."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Unerwartete Antwort!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Aufgeführter Benutzer existiert nicht."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Du kannst ein lokales Abonnement erstellen!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Du bist nicht autorisiert."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Service nutzt unbekannte OMB-Protokollversion."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Fehler beim Aktualisieren des entfernten Profils."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Datei nicht gefunden."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Datei konnte nicht gelesen werden."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Ungültige Aufgabe"
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Diese Aufgabe ist reserviert und kann nicht gesetzt werden"
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Auf dieser Seite können keine Benutzerrollen gewährt werden."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Benutzer hat bereits diese Aufgabe"
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Kein Profil angegeben."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Kein Benutzer-Profil mit dieser ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Keine Gruppe angegeben"
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Nur ein Admin kann Mitglieder der Gruppe blockieren."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Dieser Benutzer ist bereits von der Gruppe blockiert"
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Benutzer ist kein Mitglied dieser Gruppe."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Benutzerzugang zu der Gruppe blockieren"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2580,33 +2938,41 @@ msgstr ""
"und wird auch in Zukunft dieser Gruppe nicht mehr beitreten können."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Diesen Benutzerzugang nicht für diese Gruppe blockieren."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Diesen Benutzer von der Gruppe blockieren"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
"Datenbankfehler beim Versuch den Benutzer aus der Gruppe zu blockieren."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Keine ID"
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Du musst angemeldet sein, um eine Gruppe zu bearbeiten."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Gruppen-Design"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2614,22 +2980,26 @@ msgstr ""
"Stelle ein wie die Gruppenseite aussehen soll. Hintergrundbild und "
"Farbpalette frei wählbar."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Konnte dein Design nicht aktualisieren."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Konnte Twitter-Einstellungen nicht speichern."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Design-Einstellungen gespeichert."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Gruppen-Logo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2637,100 +3007,115 @@ msgstr ""
"Du kannst ein Logo für deine Gruppe hochladen. Die maximale Dateigröße ist %"
"s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Hochladen"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Zuschneiden"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Wähle eine quadratische Fläche aus dem Bild, um das Logo zu speichern."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo aktualisiert."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Aktualisierung des Logos fehlgeschlagen."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s Gruppen-Mitglieder"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s Gruppen-Mitglieder, Seite %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Liste der Benutzer in dieser Gruppe."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Admin"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Blockieren"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Diesen Benutzer blockieren"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Benutzer zu einem Admin dieser Gruppe ernennen"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Zum Admin ernennen"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Diesen Benutzer zum Admin ernennen"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Aktualisierungen von %1$s auf %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr "Gruppen"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Gruppen, Seite %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Finde und rede mit Gleichgesinnten in %%%%site.name%%%%-Gruppen. Nachdem du "
"einer Gruppe beigetreten bist kannst du mit „!Gruppenname“ eine Nachricht an "
@@ -2738,11 +3123,13 @@ msgstr ""
"action.groupsearch%%%%) oder deine eigene [Gruppe aufmachen!](%%%%action."
"newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Neue Gruppe erstellen"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2752,25 +3139,33 @@ msgstr ""
"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus "
"mindestens 3 Zeichen bestehen."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Gruppen-Suche"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Keine Ergebnisse."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Wenn du die Gruppe die dich interessiert nicht finden kannst, dann [erstelle "
"sie](%%action.newgroup%%) doch einfach."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2780,139 +3175,149 @@ msgstr ""
"diese Gruppe selbst an](%%action.newgroup%%)?"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Nur Admins können Blockierungen von Gruppenmitglieder aufheben."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Dieser Benutzer ist nicht von der Gruppe blockiert."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Fehler beim Freigeben des Benutzers."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM-Einstellungen"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [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."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM ist nicht verfügbar."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM-Adresse"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Aktuelle bestätigte Jabber/GTalk-Adresse"
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk 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 "
"Freundesliste hinzugefügt?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber- oder GoogleTalk-Adresse, beispielsweise „Benutzername@example.org“. "
"Aber versichere dich zuerst, dass du %s in deine Kontaktliste in deinem IM-"
"Programm oder GTalk aufgenommen hast."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "IM-Einstellungen"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Schicke mir Nachrichten mittels Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Schicke eine Nachricht, wenn sich mein Jabber/GTalk-Status verändert."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/"
"GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "MicroID für meine Jabber/GTalk-Adresse veröffentlichen."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Einstellungen gesichert."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Keine Jabber-ID"
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Konnte diese Jabber-ID nicht normalisieren"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Ungültige Jabber-ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Diese Jabber-ID hast du schon angegeben."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Diese Jabber-ID wird bereits von einem anderen Benutzer verwendet."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2921,74 +3326,80 @@ msgstr ""
"Ein Bestätigungscode wurde an die IM-Adresse geschickt, die du hinzugefügt "
"hast. Du musst zulassen, dass %s dir Nachrichten schicken darf."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Das ist die falsche IM-Adresse."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Konnte die IM-Bestätigung nicht löschen."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "IM-Bestätigung abgebrochen."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Dies ist nicht deine Jabber-ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Die IM-Adresse wurde entfernt."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Posteingang von %s - Seite %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Posteingang von %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Das hier ist dein Posteingang, der deine eingehenden privaten Nachrichten "
"enthält."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Einladungen wurden deaktiviert."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, 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"
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Ungültige E-Mail-Adresse: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Einladung(en) verschickt"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Lade neue Leute ein"
@@ -2996,7 +3407,7 @@ msgstr "Lade neue Leute ein"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Du hast diesen Benutzer bereits abonniert:"
@@ -3004,7 +3415,7 @@ msgstr[1] "Du hast diese Benutzer bereits abonniert:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3013,7 +3424,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3027,7 +3438,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Einladung an folgende Personen geschickt:"
@@ -3035,7 +3446,7 @@ msgstr[1] "Einladungen an folgende Personen geschickt:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3045,37 +3456,38 @@ msgstr ""
"wachsen!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
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."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "E-Mail-Adressen"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr ""
"Adressen von Freunden, die du einladen möchtest. (Jeweils eine Adresse pro "
"Zeile)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Private Nachricht"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
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."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Senden"
@@ -3083,7 +3495,7 @@ msgstr "Senden"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, 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."
@@ -3093,7 +3505,7 @@ msgstr "%1$s hat dich eingeladen, auch bei %2$s mitzumachen."
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3149,44 +3561,51 @@ msgstr ""
"\n"
"Schöne Grüße von %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Du musst angemeldet sein, um Mitglied einer Gruppe zu werden."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s ist der Gruppe %2$s beigetreten"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Du bist kein Mitglied dieser Gruppe."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s hat die Gruppe %2$s verlassen"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Lizenz"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Lizenz dieser StatusNet-Website"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Ungültige Lizenzauswahl."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3194,124 +3613,133 @@ msgstr ""
"Du musst den Besitzer des Inhalts angeben, wenn du „Alle Rechte vorbehalten“ "
"wählst."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Ungültiger Lizenztitel. Die maximale Länge liegt bei 255 Zeichen."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Ungültige Lizenz-URL."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Ungültige Lizenz-Bild-URL."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "Lizenz-URL muss leer oder eine gültige URL sein."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "Lizenz-Bild muss leer oder eine gültige URL sein."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Lizenzauswahl"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privat"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Alle Rechte vorbehalten"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Typ"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Lizenz auswählen"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Lizenz-Details"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Besitzer"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Name von dem Besitzer des Inhalts dieser Website (falls notwendig)"
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Lizenz-Titel"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Der Titel der Lizenz."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "Lizenz-URL"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL mit weiteren Informationen über die Lizenz."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "Lizenz-Bild-URl"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL eines mit der Lizenz anzuzeigenden Bildes."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Speichern"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Lizenz-Einstellungen speichern"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Bereits angemeldet."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Falscher Benutzername oder Passwort."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
"Fehler beim Setzen des Benutzers. Du bist vermutlich nicht autorisiert."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Anmelden"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "An Seite anmelden"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Anmeldedaten merken"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Passwort vergessen?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3319,11 +3747,11 @@ msgstr ""
"Bitte gebe aus Sicherheitsgründen deinen Benutzernamen und dein Passwort "
"ein, bevor die Änderungen an deinen Einstellungen übernommen werden."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Mit Benutzernamen und Passwort anmelden."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3360,19 +3788,22 @@ msgid "New application"
msgstr "Neues Programm"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Du musst angemeldet sein, um ein Programm zu registrieren."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Benutzer dieses Formular, um eine neues Programm zu erstellen."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Quell-URL ist erforderlich."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Konnte das Programm nicht erstellen."
@@ -3381,11 +3812,23 @@ msgstr "Konnte das Programm nicht erstellen."
msgid "New group"
msgstr "Neue Gruppe"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Du darfst diese Gruppe nicht löschen."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Benutze dieses Formular, um eine neue Gruppe zu erstellen."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Alias kann nicht das gleiche wie der Spitzname sein."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Neue Nachricht"
@@ -3436,7 +3879,9 @@ msgstr "Neue Nachricht"
msgid "Notice posted"
msgstr "Nachricht hinzugefügt"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3446,16 +3891,21 @@ msgstr ""
"Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus mindestens 3 "
"Zeichen bestehen."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Volltextsuche"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Suchergebnisse für „%1$s“ auf %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3464,7 +3914,9 @@ msgstr ""
"Sei der erste der [zu diesem Thema etwas schreibt](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3474,14 +3926,17 @@ msgstr ""
"bist der erste der [auf diese Nachricht antwortet](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Aktualisierungen mit „%s“"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten"
#: actions/nudge.php:85
@@ -3522,31 +3977,31 @@ msgid "You have not registered any applications yet."
msgstr "Du hast noch keine Programme registriert"
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Verbundene Programme"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
"Du hast den folgenden Programmen erlaubt, auf dein Benutzerkonto zuzugreifen."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Du bist kein Benutzer dieses Programms."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Kann Zugang dieses Programm nicht entfernen: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3555,7 +4010,7 @@ msgstr ""
"Sie haben den Zugang von %1$s und den Tokem mit %2$s erfolgreich entfernt."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
"Du hast noch keinem Programm die Erlaubnis gegeben, dein Profil zu benutzen."
@@ -3563,7 +4018,7 @@ msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3572,6 +4027,16 @@ msgstr ""
"Sie sind Entwickler? [Registrieren einer OAuth-Client-Anwendung] (%s), um "
"mit dieser Instanz von StatusNet zu verwenden."
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "API-Methode nicht gefunden."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "API-Methode nicht gefunden."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Nachricht hat kein Profil"
@@ -3581,6 +4046,16 @@ msgstr "Nachricht hat kein Profil"
msgid "%1$s's status on %2$s"
msgstr "Status von %1$s auf %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Empfänger nicht gefunden."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3594,16 +4069,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Bitte nur %s URLs über einfaches HTTP."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Kein unterstütztes Datenformat."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Suche nach Benutzern"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Nachrichtensuche"
@@ -3617,68 +4093,79 @@ msgid "Manage various other options."
msgstr "Verwalte zahlreiche andere Einstellungen."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (kostenloser Dienst)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "URLs kürzen mit"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "URL-Auto-Kürzungs-Dienst."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Profil-Designs ansehen"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Profil-Designs anzeigen oder verstecken."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "URL-Auto-Kürzungs-Dienst ist zu lang (maximal 50 Zeichen)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Keine Benutzer-ID angegeben"
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Kein Zugangstoken angegeben."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Kein Login-Token angefordert."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Login-Token ungültig oder abgelaufen."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Zugangstoken ist abgelaufen."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Postausgang für %1$s - Seite %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Postausgang von %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten."
@@ -3691,7 +4178,8 @@ msgstr "Passwort ändern"
msgid "Change your password."
msgstr "Ändere dein Passwort."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Passwort geändert"
@@ -3699,48 +4187,48 @@ msgstr "Passwort geändert"
msgid "Old password"
msgstr "Altes Passwort"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Neues Passwort"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
msgstr "6 oder mehr Zeichen"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Bestätigen"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
msgstr "Gleiches Passwort wie zuvor"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Ändern"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: 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:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Passwörter stimmen nicht überein."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Altes Passwort falsch"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Fehler beim Speichern des Benutzers, ungültig."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Konnte neues Passwort nicht speichern"
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Passwort gespeichert."
@@ -3946,7 +4434,7 @@ msgstr "Verzeichnis, in dem sich die Hintergründe befinden."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Anhänge"
@@ -4014,7 +4502,9 @@ msgstr "Server an den SSL Anfragen gerichtet werden sollen"
msgid "Save paths"
msgstr "Speicherpfade"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4024,7 +4514,8 @@ msgstr ""
"Trenne mehrere Suchbegriffe durch Leerzeichen. Ein Suchbegriff muss aus "
"mindestens 3 Zeichen bestehen."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Suche nach anderen Benutzern"
@@ -4050,12 +4541,12 @@ msgstr ""
"2$s“."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profil-Einstellungen"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4063,32 +4554,33 @@ msgstr ""
"über dich erfahren können."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profilinformation"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Bürgerlicher Name"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Homepage"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr ""
"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen "
@@ -4097,7 +4589,7 @@ msgstr ""
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4105,74 +4597,81 @@ msgstr[0] "Beschreibe dich selbst und deine Interessen in einem Zeichen"
msgstr[1] "Beschreibe dich selbst und deine Interessen in %d Zeichen"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Beschreibe dich selbst und deine Interessen"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Biografie"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Aufenthaltsort"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Teile meine aktuelle Position, wenn ich Nachrichten sende"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Tags"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder "
"Leerzeichen getrennt"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Sprache"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Bevorzugte Sprache"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Zeitzone"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "In welcher Zeitzone befindest du dich üblicherweise?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-"
"Menschen)"
@@ -4180,7 +4679,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4188,49 +4687,53 @@ msgstr[0] "Die Biografie ist zu lang (maximal ein Zeichen)."
msgstr[1] "Die Biografie ist zu lang (maximal %d Zeichen)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Keine Zeitzone ausgewählt."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Ungültiges Stichwort: „%s“"
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Autosubscribe konnte nicht aktiviert werden."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Konnte Positions-Einstellungen nicht speichern."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Konnte Profil nicht speichern."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Konnte Tags nicht speichern."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Einstellungen gespeichert."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Neues Benutzerkonto erstellen"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4307,6 +4810,12 @@ msgstr ""
"Mikroblogging)-Dienst basierend auf der freien Software [StatusNet](http://"
"status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s Nachrichten von allen!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4353,35 +4862,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Tag-Wolke"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Du bist bereits angemeldet!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Unbekannter Wiederherstellungscode."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Kein Wiederherstellungscode."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Wiederherstellungscode für unbekannten Benutzer."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Fehler beim Bestätigungscode."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
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
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4389,67 +4906,99 @@ msgstr ""
"Wenn du dein Passwort vergessen hast, kannst du dir ein neues an deine "
"hinterlegte Email schicken lassen."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Du wurdest identifiziert. Gib ein neues Passwort ein. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Du wurdest identifiziert. Gib ein neues Passwort ein."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Passwort-Wiederherstellung"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Spitzname oder E-Mail-Adresse"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
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
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Wiederherstellung"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Wiederherstellung"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Passwort zurücksetzen"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Stelle Passwort wieder her"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Wiederherstellung des Passworts angefordert"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Passwort gespeichert."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Unbekannter Befehl"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 oder mehr Zeichen, und nicht vergessen!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Zurücksetzen"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Gib einen Spitznamen oder eine E-Mail-Adresse ein."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Kein Benutzer mit dieser E-Mail-Adresse oder mit diesem Nutzernamen."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Der Benutzer hat keine registrierte E-Mail-Adresse."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Fehler beim Speichern der Adressbestätigung."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4457,126 +5006,121 @@ msgstr ""
"Anweisungen für die Wiederherstellung deines Passworts wurden an deine "
"hinterlegte E-Mail-Adresse geschickt."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Unerwarteter Passwortreset."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Passwort muss mehr als 6 Zeichen enthalten."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Passwort und seine Bestätigung stimmen nicht überein."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Fehler bei den Benutzereinstellungen."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Neues Passwort erfolgreich gespeichert. Du bist jetzt angemeldet."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Es tut uns leid, zum Registrieren benötigst du eine Einladung."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Entschuldigung, ungültiger Einladungscode."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registrierung erfolgreich"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registrieren"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registrierung nicht erlaubt."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr ""
"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Diese E-Mail-Adresse existiert bereits."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Benutzername oder Passwort falsch."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Hier kannst du einen neuen Zugang einrichten. Anschließend kannst du "
"Nachrichten und Links mit deinen Freunden und Kollegen teilen. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen. Pflicht."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 oder mehr Buchstaben. Pflicht."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Gleiches Passwort wie zuvor. Pflichteingabe."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-Mail"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Wird nur für Updates, wichtige Mitteilungen und zur "
"Passwortwiederherstellung verwendet"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Längerer Name, bevorzugt dein bürgerlicher Name"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr ""
-"URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen "
-"Website"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
"Mir ist bewusst, dass Inhalte und Daten von %1$s privat und vertraulich sind."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Meine Texte und Dateien sind urheberrechtlich geschützt durch %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Meine Texte und Dateien verbleiben unter meinem eigenen Urheberrecht."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Alle Rechte vorbehalten."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4585,7 +5129,7 @@ msgstr ""
"Abgesehen von den folgenden Daten: Passwort, E-Mail-Adresse, IM-Adresse und "
"Telefonnummer, sind all meine Texte und Dateien unter %s verfügbar."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4618,7 +5162,7 @@ msgstr ""
"\n"
"Danke für deine Anmeldung, wir hoffen, dass dir der Service gefällt."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4626,7 +5170,7 @@ msgstr ""
"(Du solltest in Kürze eine E-Mail mit der Anleitung zur Überprüfung deiner "
"Mailadresse erhalten.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4638,78 +5182,87 @@ msgstr ""
"auf einer [kompatiblen Mikrobloggingsite](%%doc.openmublog%%) hast, dann gib "
"deine Profil-URL unten an."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Entferntes Abonnement"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Abonniere diesen Benutzer"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Benutzername"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Name des Benutzers, dem du folgen möchtest"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profil-URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "Profil-URL bei einem anderen kompatiblen Mikrobloggingdienst"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Abonnieren"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Ungültige Profil-URL (falsches Format)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Ungültige Profil-URL (kein YADIS-Dokument oder ungültige XRDS definiert)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Konnte keinen Anfrage-Token bekommen."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Nur angemeldete Benutzer können Nachrichten wiederholen."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Keine Nachricht angegeben."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Du kannst deine eigene Nachricht nicht wiederholen."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Nachricht bereits wiederholt"
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Wiederholt"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Wiederholt!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Antworten an %s"
@@ -4761,11 +5314,105 @@ msgstr ""
"Du kannst versuchen [%1$s einen Stups zu geben](../%s) oder [ihm etwas "
"posten](%%%%action.newnotice%%%%?status_textarea=%s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Antworten an %1$s auf %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Nur angemeldete Benutzer können Nachrichten wiederholen."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Du hast noch keine Programme registriert"
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Datei hochladen"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Die Größe der hochgeladenen Datei überschreitet die upload_max_filesize "
+"Angabe in der php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Die Größe der hochgeladenen Datei überschreitet die MAX_FILE_SIZE Angabe, "
+"die im HTML-Formular angegeben wurde."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Die Datei wurde nur teilweise auf den Server geladen."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Kein temporäres Verzeichnis gefunden."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Konnte die Datei nicht auf die Festplatte schreiben."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Upload der Datei wurde wegen der Dateiendung gestoppt."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Systemfehler beim Hochladen der Datei."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Kein Mitglied"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "Datei hochladen"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Du kannst die Rollen von Benutzern dieser Seite nicht widerrufen."
@@ -4774,7 +5421,7 @@ msgstr "Du kannst die Rollen von Benutzern dieser Seite nicht widerrufen."
msgid "User doesn't have this role."
msgstr "Benutzer verfügt nicht über diese Rolle."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4816,85 +5463,87 @@ msgstr "Fehleruntersuchung für Sitzungen aktivieren"
msgid "Save site settings"
msgstr "Website-Einstellungen speichern"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Du musst angemeldet sein, um dieses Programm zu betrachten."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Anwendungsprofil"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Symbol"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Name"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organisation"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Beschreibung"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistik"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Erstellt von %1$s - %2$s Standard Zugang - %3$d Benutzer"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Programmaktionen"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Schlüssel zurücksetzen"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Löschen"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Programminformation"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Anwender-Schlüssel"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Anwender-Geheimnis"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "Anfrage-Token Adresse"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "Zugriffs-Token-Adresse"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Autorisationadresse"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4902,35 +5551,42 @@ msgstr ""
"Hinweis: Wir unterstützen HMAC-SHA1-Signaturen. Wir unterstützen keine "
"Klartext-Signaturen."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Bist du sicher, dass du den Schlüssel zurücksetzen willst?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Favorisierte Nachrichten von %1$s, Seite %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Konnte Favoriten nicht abrufen."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Feed der Freunde von %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Feed der Freunde von %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Feed der Freunde von %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4939,7 +5595,9 @@ msgstr ""
"Button bei einer Nachricht, die dir gefällt um die Aufmerksamkeit auf sie zu "
"richten und sie in deine Lesezeichen aufzunehmen."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4948,7 +5606,10 @@ msgstr ""
"%s hat noch keine Nachricht zu den Favoriten hinzugefügt. Sende doch einfach "
"eine interessante Nachricht, damit sich daran etwas ändert :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4959,7 +5620,8 @@ msgstr ""
"[meldest du dich nicht an](%%%%action.register%%%%) und schreibst etwas, was "
"%s hinzufügen kann!"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Dies ist ein Weg, Dinge zu teilen, die dir gefallen."
@@ -4977,81 +5639,88 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s Gruppe, Seite %d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Gruppenprofil"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Nachricht"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Pseudonyme"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Gruppenaktionen"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Nachrichtenfeed der Gruppe %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Nachrichtenfeed der Gruppe %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Nachrichtenfeed der Gruppe %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Postausgang von %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Mitglieder"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Kein)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Alle Mitglieder"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Erstellt"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Mitglieder"
@@ -5060,7 +5729,7 @@ msgstr "Mitglieder"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5078,7 +5747,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5092,30 +5761,30 @@ msgstr ""
"Nachrichten über ihr Leben und Interessen. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Admins"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Keine derartige Nachricht."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Nur der Absender und der Empfänger können diese Nachricht lesen."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Nachricht an %1$s auf %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Nachricht von %1$s auf %2$s"
@@ -5131,7 +5800,7 @@ msgid "%1$s tagged %2$s"
msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5382,74 +6051,76 @@ msgstr "Systembenachrichtigung (maximal 255 Zeichen; HTML erlaubt)"
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Systemnachricht speichern"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS-Einstellungen"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Du kannst SMS von %%site.name%% per E-Mail empfangen."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS ist nicht verfügbar."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS-Adresse"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Aktuelle für den SMS-Dienst bestätigte Telefonnummer."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Warte auf die Bestätigung dieser Telefonnummer."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Bestätigungscode"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Gib den Code ein, den du auf deinem Handy via SMS bekommen hast."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Bestätigen"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMS-Telefonnummer"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Telefonnummer, keine Sonder- oder Leerzeichen mit Vorwahl"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMS-Einstellungen"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5458,32 +6129,32 @@ msgstr ""
"meinem Netzbetreiber entstehen können."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "SMS-Einstellungen gesichert."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Keine Telefonnummer."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Kein Netzanbieter ausgewählt."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Dies ist bereits deine Telefonnummer."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Diese Telefonnummer wird bereits von einem anderen Benutzer verwendet."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5493,39 +6164,39 @@ msgstr ""
"die Anweisungen, um ihn zu benutzen."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Die Bestätigungsnummer ist falsch."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS-Bestätigung abgebrochen."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Dies ist nicht deine Telefonnummer."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "SMS-Telefonnummer wurde entfernt."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Netzanbieter"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Wähle einen Netzanbieter"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5536,8 +6207,9 @@ msgstr ""
"s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Kein Code eingegeben"
#. TRANS: Menu item for site administration
@@ -5609,15 +6281,19 @@ msgstr "Du hast dieses Profil nicht abonniert."
msgid "Could not save subscription."
msgstr "Konnte Abonnement nicht erstellen."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Diese Aktion nimmt nur POST-Requests"
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Du hast dieses OMB 0.1 Profil nicht abonniert."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Abonniert"
@@ -5649,7 +6325,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Dies sind die Leute, die Nachrichten von %s lesen."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5659,7 +6335,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s hat keine Abonnenten. Willst du der erste sein?"
@@ -5669,7 +6345,7 @@ msgstr "%s hat keine Abonnenten. Willst du der erste sein?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5702,7 +6378,7 @@ msgstr "Dies sind die Leute, deren Nachrichten %s liest."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5721,23 +6397,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s hat niemanden abonniert."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Feed der Nachrichten von %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5770,12 +6447,15 @@ msgstr "Kein ID-Argument."
msgid "Tag %s"
msgstr "Tag „%s“"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Benutzerprofil"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Foto"
@@ -5791,6 +6471,11 @@ msgstr ""
"Tags dieses Benutzers (Buchstaben, Nummer, -, ., und _), durch Komma oder "
"Leerzeichen getrennt"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Ungültiges Stichwort: „%s“"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5798,10 +6483,6 @@ 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 ""
@@ -5812,6 +6493,7 @@ msgstr ""
msgid "No such tag."
msgstr "Tag nicht vorhanden."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Du hast diesen Benutzer nicht blockiert."
@@ -5832,7 +6514,7 @@ msgstr "Keine Profil-ID in der Anfrage."
msgid "Unsubscribed"
msgstr "Abbestellt"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5864,13 +6546,12 @@ msgstr "Willkommens-Nachricht ungültig. Maximale Länge sind 255 Zeichen."
#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
-#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+#, fuzzy, php-format
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Ungültiges Standard-Abonnement: „%1$s“ ist kein Benutzer."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5926,55 +6607,71 @@ msgstr "Ist es Benutzern erlaubt, neue Benutzer einzuladen."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "Benutzer-Einstellungen speichern"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Abonnement bestätigen"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die Nachrichten "
"dieses Benutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf "
"„Abbrechen“."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Lizenz"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Akzeptieren"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Abonniere diesen Benutzer"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Ablehnen"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Abonnement ablehnen"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Keine Bestätigungsanfrage!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Abonnement autorisiert"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5984,11 +6681,12 @@ msgstr ""
"Lies nochmal die Anweisungen auf der Seite wie Abonnements bestätigt werden. "
"Dein Abonnement-Token ist:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Abonnement abgelehnt"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5998,48 +6696,73 @@ msgstr ""
"zurückgegeben. Lies nochmal die Anweisungen der Seite, wie Abonnements "
"vollständig abgelehnt werden. Dein Abonnement-Token ist:"
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "Eine Listener-URI „%s“ wurde hier nicht gefunden."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "Die URI „%s“ für den Stream ist zu lang."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "Die URI „%s“ für den Stream ist ein lokaler Benutzer."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "Profiladresse „%s“ ist für einen lokalen Benutzer."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Die Benutzerlizenz „%1$s“ ist nicht kompatibel mit der Lizenz der Seite „%2"
+"$s“."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "Avataradresse „%s“ ist nicht gültig."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Konnte Avatar-URL nicht öffnen „%s“"
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Falscher Bildtyp für „%s“"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Profil-Design-Einstellungen"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6047,7 +6770,7 @@ msgstr ""
"Stelle ein wie deine Profilseite aussehen soll. Hintergrundbild und "
"Farbpalette sind frei wählbar."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Hab Spaß!"
@@ -6078,7 +6801,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Aktualisierungen von %1$s auf %2$s!"
@@ -6139,7 +6862,7 @@ msgid "Plugins"
msgstr "Erweiterungen"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Version"
@@ -6148,32 +6871,32 @@ msgid "Author(s)"
msgstr "Autor(en)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Zu Favoriten hinzufügen"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s markierte Nachricht %2$s als Favorit."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Die URL „%s“ konnte nicht verarbeitet werden"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin denkt, dass etwas unmöglich ist."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6190,7 +6913,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6201,7 +6924,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6213,7 +6936,7 @@ msgstr[1] ""
"überschreiten."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Ungültiger Dateiname."
@@ -6271,7 +6994,7 @@ msgid "Could not create login token for %s"
msgstr "Konnte keinen Login-Token für %s erstellen"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Nirgendwo einen Datenbanknamen oder DSN gefunden."
@@ -6298,23 +7021,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Kein Profil (%1$d) für eine Notiz gefunden (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Datenbankfehler beim Einfügen des Hashtags: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problem bei Speichern der Nachricht. Sie ist zu lang."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6322,7 +7045,7 @@ msgstr ""
"ein paar Minuten ab."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6331,45 +7054,45 @@ msgstr ""
"ein paar Minuten ab."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr ""
"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problem bei Speichern der Nachricht."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
"Der Methode „saveKnownGroups“ wurde ein schlechter Typ zur Verfügung "
"gestellt."
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problem bei Speichern der Nachricht."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Konnte Antwort auf %1$d, %2$d nicht speichern."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6377,7 +7100,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
@@ -6386,7 +7109,7 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6458,35 +7181,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Herzlich willkommen bei %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Kein einzelner Benutzer für den Ein-Benutzer-Modus ausgewählt."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Konnte Gruppe nicht erstellen."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Konnte die Gruppen-URI nicht setzen."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Konnte Gruppenmitgliedschaft nicht setzen."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Konnte die lokale Gruppen Information nicht speichern."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Du kannst keine Benutzer löschen."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6523,211 +7267,214 @@ msgid "Other"
msgstr "Sonstige"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s – %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Seite ohne Titel"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Mehr anzeigen"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Hauptnavigation"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Persönliches Profil und Freundes-Zeitleiste"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Eigene"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Ändere deine E-Mail, Avatar, Passwort und Profil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Profil"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Zum Dienst verbinden"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Verbinden"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Seiteneinstellung ändern"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Admin"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Einladen"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Von der Seite abmelden"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Abmelden"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Neues Benutzerkonto erstellen"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registrieren"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Auf der Seite anmelden"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Anmelden"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Hilf mir!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Hilfe"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Suche nach Leuten oder Text"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Suchen"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Seitennachricht"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Lokale Ansichten"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Neue Nachricht"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Unternavigation"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Hilfe"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Über"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "AGB"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Privatsphäre"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Quellcode"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Kontakt"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Plakette"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet-Software-Lizenz"
@@ -6735,7 +7482,7 @@ msgstr "StatusNet-Software-Lizenz"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6745,7 +7492,7 @@ msgstr ""
"site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** ist ein Mikrobloggingdienst."
@@ -6754,7 +7501,7 @@ msgstr "**%%site.name%%** ist ein Mikrobloggingdienst."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6766,20 +7513,20 @@ msgstr ""
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "StatusNet-Software-Lizenz"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Inhalte und Daten von %1$s sind privat und vertraulich."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
@@ -6787,7 +7534,7 @@ msgstr ""
"vorbehalten."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Urheberrecht von Inhalt und Daten liegt bei den Beteiligten. Alle Rechte "
@@ -6795,25 +7542,25 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "Alle Inhalte und Daten von %1$s sind unter der %2$s Lizenz verfügbar."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Seitenerstellung"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Später"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Vorher"
@@ -6822,10 +7569,80 @@ msgstr "Vorher"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "Root-Element eines Feeds erwartet, aber ganzes XML-Dokument erhalten."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Unbekannte Sprache „%s“"
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Foto"
+msgid "Cannot force remote user to subscribe."
+msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Profil %s ist unbekannt"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Du bist bereits Mitglied dieser Gruppe"
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Kein Inhalt für Nachricht %d."
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Unbekannter Benutzer."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s – %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6897,7 +7714,7 @@ msgid "User configuration"
msgstr "Benutzereinstellung"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Benutzer"
@@ -6941,19 +7758,23 @@ msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte."
msgid "No application for that consumer key."
msgstr "Kein Programm mit diesem Anwender-Schlüssel."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Schlechter Zugangstoken."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Kein Benutzer mit diesem Token."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Konnte dich nicht authentifizieren."
@@ -6974,28 +7795,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Konnte Nachricht nicht einfügen."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Datenbankfehler beim Einfügen des OAuth-Programm-Benutzers."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Versuchte, unbekanntes Token ungültig zu machen."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Konnte ungültig gemachtes Token nicht löschen."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Programmsymbol"
@@ -7108,17 +7933,24 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Widerrufen"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+#, fuzzy
+msgid "Author element must contain a name element."
msgstr "Das „author“-Element muss ein „name“-Element erhaten."
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Diese Gruppe nicht löschen"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autor"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Anbieter"
@@ -7147,6 +7979,11 @@ msgstr "Passwort kann nicht geändert werden."
msgid "Block"
msgstr "Blockieren"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Diesen Benutzer blockieren"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7260,7 +8097,7 @@ msgstr "Bürgerlicher Name: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Standort: %s"
@@ -7268,7 +8105,7 @@ msgstr "Standort: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Homepage: %s"
@@ -7542,24 +8379,24 @@ msgstr ""
"tracking - noch nicht implementiert\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "Keine Konfigurationsdatei gefunden."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "Ich habe an folgenden Stellen nach Konfigurationsdateien gesucht:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Bitte die Installation erneut starten, um das Problem zu beheben."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Zur Installation gehen."
@@ -7600,14 +8437,19 @@ msgstr "Programme mit Zugriffserlaubnis"
msgid "Database error"
msgstr "Datenbankfehler."
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Diesen Benutzer löschen"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Datei hochladen"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7626,25 +8468,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Aus"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Zurücksetzen"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Farben ändern"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Standardeinstellungen benutzen"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Standard-Design wiederherstellen"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Standard wiederherstellen"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Design speichern"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Konnte dein Design nicht aktualisieren."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Standard-Design wieder hergestellt."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Kann Zugang dieses Programm nicht entfernen: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Aus Favoriten entfernen"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Aus Favoriten entfernen"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Zu den Favoriten hinzufügen"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Zu Favoriten hinzufügen"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7661,6 +8552,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Kein Mitglied"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7695,31 +8599,31 @@ msgstr "Los geht's"
msgid "Grant this user the \"%s\" role"
msgstr "Teile dem Benutzer die „%s“-Rolle zu"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "Adresse der Homepage oder Blogs der Gruppe oder des Themas."
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Beschreibe die Gruppe oder das Thema"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Beschreibe die Gruppe oder das Thema in einem Zeichen"
msgstr[1] "Beschreibe die Gruppe oder das Thema in %d Zeichen"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "Ort der Gruppe, optional, beispielsweise „Stadt, Region, Land“."
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7828,40 +8732,41 @@ msgstr "Tags in den Nachrichten der Gruppe „%s“"
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:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Bildformat wird nicht unterstützt."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Diese Datei ist zu groß. Die maximale Dateigröße ist %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Unvollständiges Hochladen."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Systemfehler beim Hochladen der Datei."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Kein Bild oder defekte Datei."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Daten verloren."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Unbekannter Dateityp"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7869,7 +8774,7 @@ msgstr[0] "%d MB"
msgstr[1] "%d MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7877,7 +8782,7 @@ msgstr[0] "%d KB"
msgstr[1] "%d KB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7898,23 +8803,25 @@ msgstr "Unbekannte inbox-Quelle %d."
msgid "Leave"
msgstr "Verlassen"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Mit Benutzernamen und Passwort anmelden"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Registriere ein neues Benutzerkonto"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Bestätigung der E-Mail-Adresse"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7946,14 +8853,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s hat deine Nachrichten auf „%2$s“ abonniert."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7968,7 +8875,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7996,14 +8903,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Biografie: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Neue E-Mail-Adresse, um auf „%s“ zu schreiben"
@@ -8011,7 +8918,7 @@ msgstr "Neue E-Mail-Adresse, um auf „%s“ zu schreiben"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8034,19 +8941,19 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s Status"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS-Konfiguration"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
@@ -8055,15 +8962,15 @@ msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "Du wurdest von „%s“ angestupst"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8092,7 +8999,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Neue private Nachricht von „%s“"
@@ -8101,7 +9008,7 @@ msgstr "Neue private Nachricht von „%s“"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8136,7 +9043,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) hat deine Nachricht als Favorit gespeichert"
@@ -8146,7 +9053,7 @@ msgstr "%1$s (@%2$s) hat deine Nachricht als Favorit gespeichert"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8178,7 +9085,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8191,7 +9098,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr ""
@@ -8204,7 +9111,7 @@ msgstr ""
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8254,11 +9161,11 @@ msgstr ""
"\n"
"P.S. Diese E-Mail Benachrichtigung kannst du hier deaktivieren: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8267,10 +9174,6 @@ msgstr ""
"schicken, um sie in eine Konversation zu verwickeln. Andere Leute können dir "
"Nachrichten schicken, die nur du sehen kannst."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "von"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Konnte Nachricht nicht parsen."
@@ -8299,42 +9202,6 @@ msgstr ""
"Beim Speichern der Datei trat ein Datenbankfehler auf. Bitte versuche es "
"noch einmal."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Die Größe der hochgeladenen Datei überschreitet die upload_max_filesize "
-"Angabe in der php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Die Größe der hochgeladenen Datei überschreitet die MAX_FILE_SIZE Angabe, "
-"die im HTML-Formular angegeben wurde."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Die Datei wurde nur teilweise auf den Server geladen."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Kein temporäres Verzeichnis gefunden."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Konnte die Datei nicht auf die Festplatte schreiben."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Upload der Datei wurde wegen der Dateiendung gestoppt."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8355,7 +9222,7 @@ msgstr "Konnte den MIME-Typ nicht feststellen."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8366,7 +9233,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "„%s“ ist kein unterstütztes Dateiformat auf diesem Server."
@@ -8377,9 +9244,8 @@ msgstr "Versende eine direkte Nachricht"
#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list.
#: lib/messageform.php:137
-#, fuzzy
msgid "Select recipient:"
-msgstr "Lizenz auswählen"
+msgstr "Empfänger auswählen"
#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message.
#: lib/messageform.php:150
@@ -8400,20 +9266,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Senden"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Nachricht"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "von"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Der Benutzername darf nur aus Kleinbuchstaben und Zahlen bestehen. "
"Leerzeichen sind nicht erlaubt."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8429,11 +9304,11 @@ msgstr "Nachricht senden"
msgid "What's up, %s?"
msgstr "Was geht, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Anhängen"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Datei anhängen"
@@ -8454,55 +9329,59 @@ msgstr ""
"Bitte versuche es später wieder."
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "O"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "W"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "in"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "Web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "im Zusammenhang"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Wiederholt von"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Auf diese Nachricht antworten"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Antworten"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Nachricht löschen"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Nachricht wiederholt"
@@ -8539,77 +9418,112 @@ msgstr "Doppelte Nachricht."
msgid "Couldn't insert new subscription."
msgstr "Konnte neues Abonnement nicht eintragen."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Meine Zeitleiste"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Antworten"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favoriten"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr "Posteingang"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Deine eingehenden Nachrichten"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Postausgang"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Deine gesendeten Nachrichten"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Tags in den Nachrichten von „%s“"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Unbekannt"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Abonnements"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Alle Abonnements"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Abonnenten"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Alle Abonnenten"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Benutzer-ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Mitglied seit"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Gruppen"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Tagesdurchschnitt"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Alle Gruppen"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Nicht unterstützte Methode."
@@ -8656,7 +9570,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Widerrufe die „%s“-Rolle von diesem Benutzer"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "Seite nicht gefunden."
@@ -8746,6 +9660,10 @@ msgstr "Einladen"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Lade Freunde und Kollegen ein, dir auf „%s“ zu folgen"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Abonniere diesen Benutzer"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8862,64 +9780,81 @@ msgstr "Abbestellen"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Benutzer „%1$s“ (%2$d) hat kein Profil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Avatar bearbeiten"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Benutzeraktionen"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Löschung des Benutzers in Arbeit …"
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Profil-Einstellungen ändern"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Bearbeiten"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Direkte Nachricht an Benutzer versenden"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Nachricht"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderieren"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Benutzerrolle"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrator"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderator"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Nicht angemeldet."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "vor wenigen Sekunden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "vor einer Minute"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8927,12 +9862,12 @@ msgstr[0] "vor ca. einer Minute"
msgstr[1] "vor ca. %d Minuten"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "vor einer Stunde"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8940,12 +9875,12 @@ msgstr[0] "vor ca. einer Stunde"
msgstr[1] "vor ca. %d Stunden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "vor einem Tag"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8953,12 +9888,12 @@ msgstr[0] "vor ca. einem Tag"
msgstr[1] "vor ca. %d Tagen"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "vor einem Monat"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8966,18 +9901,13 @@ msgstr[0] "vor ca. einem Monat"
msgstr[1] "vor ca. %d Monaten"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "vor ca. einem Jahr"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "„%s“ ist keine gültige Farbe!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "„%s“ ist keine gültige Farbe! Verwende 3 oder 6 Hex-Zeichen."
@@ -9002,31 +9932,17 @@ msgstr[1] ""
"Nachricht zu lang - maximal %1$d Zeichen erlaubt, du hast %2$d gesendet."
#. TRANS: Exception.
-#: lib/xrd.php:64
-#, fuzzy
+#: lib/xrd.php:63
msgid "Invalid XML."
-msgstr "Ungültige Größe."
+msgstr "Ungültiges XML."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Hole Backup von der Datei „%s“."
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Kein Benutzer angegeben; hole Backup-Benutzer."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "Ein Eintrag im Backup."
-msgstr[1] "%d Einträge im Backup."
diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po
index 5543c1f24c..260bdbdfd3 100644
--- a/locale/el/LC_MESSAGES/statusnet.po
+++ b/locale/el/LC_MESSAGES/statusnet.po
@@ -3,6 +3,7 @@
#
# Author: Crazymadlover
# Author: Dead3y3
+# Author: Evropi
# Author: Omnipaedista
# --
# This file is distributed under the same license as the StatusNet package.
@@ -11,149 +12,185 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-18 22:06+0000\n"
-"PO-Revision-Date: 2010-09-18 22:07:34+0000\n"
+"POT-Creation-Date: 2011-01-15 00:20+0000\n"
+"PO-Revision-Date: 2011-01-15 00:22:28+0000\n"
"Language-Team: Greek \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: el\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 1284-74-75 38::+0000\n"
+"X-POT-Import-Date: 2011-01-15 00:06:50+0000\n"
-#. TRANS: Page title
+#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
-#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:363
+#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363
msgid "Access"
msgstr "Πρόσβαση"
-#. TRANS: Page notice
-#: actions/accessadminpanel.php:67
+#. TRANS: Page notice.
+#: actions/accessadminpanel.php:64
msgid "Site access settings"
msgstr "Ρυθμίσεις πρόσβασης ιστοτόπου"
#. TRANS: Form legend for registration form.
-#: actions/accessadminpanel.php:161
+#: actions/accessadminpanel.php:151
msgid "Registration"
msgstr "Εγγραφή"
-#. TRANS: Checkbox instructions for admin setting "Private"
-#: actions/accessadminpanel.php:165
+#. TRANS: Checkbox instructions for admin setting "Private".
+#: actions/accessadminpanel.php:155
msgid "Prohibit anonymous users (not logged in) from viewing site?"
msgstr ""
"Απαγόρευση ανωνύμων χρηστών (μη συνδεδεμένων) από το να βλέπουν τον ιστότοπο;"
#. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
-#: actions/accessadminpanel.php:167
+#: actions/accessadminpanel.php:157
msgctxt "LABEL"
msgid "Private"
msgstr "Ιδιωτικό"
-#. TRANS: Checkbox instructions for admin setting "Invite only"
-#: actions/accessadminpanel.php:174
+#. TRANS: Checkbox instructions for admin setting "Invite only".
+#: actions/accessadminpanel.php:164
msgid "Make registration invitation only."
msgstr "Κάντε την εγγραφή να είναι με πρόσκληση μόνο."
#. TRANS: Checkbox label for configuring site as invite only.
-#: actions/accessadminpanel.php:176
+#: actions/accessadminpanel.php:166
msgid "Invite only"
msgstr "Μόνο με πρόσκληση"
-#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations)
-#: actions/accessadminpanel.php:183
+#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations).
+#: actions/accessadminpanel.php:173
msgid "Disable new registrations."
msgstr "Απενεργοποίηση των νέων εγγραφών"
#. TRANS: Checkbox label for disabling new user registrations.
-#: actions/accessadminpanel.php:185
+#: actions/accessadminpanel.php:175
msgid "Closed"
msgstr "Κλειστό"
-#. TRANS: Title / tooltip for button to save access settings in site admin panel
-#: actions/accessadminpanel.php:202
+#. TRANS: Title for button to save access settings in site admin panel.
+#: actions/accessadminpanel.php:191
msgid "Save access settings"
msgstr "Αποθήκευση ρυθμίσεων πρόσβασης"
+#. TRANS: Tooltip for button to save access settings in site admin panel.
#. TRANS: Button label to save e-mail preferences.
#. TRANS: Button label to save IM preferences.
+#. TRANS: Button text for saving "Other settings" in profile.
+#. TRANS: Button text to store form data in the Paths admin panel.
+#. TRANS: Button to save input in profile settings.
+#. TRANS: Button text for saving site notice in admin panel.
#. TRANS: Button label to save SMS preferences.
+#. TRANS: Save button for settings for a profile in a subscriptions list.
+#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
-#: actions/accessadminpanel.php:203 actions/emailsettings.php:228
-#: actions/imsettings.php:187 actions/smssettings.php:209
-#: lib/applicationeditform.php:351
+#. TRANS: Button text on profile design page to save settings.
+#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
+#: actions/imsettings.php:187 actions/othersettings.php:134
+#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
+#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
+#: actions/subscriptions.php:262 actions/useradminpanel.php:298
+#: lib/applicationeditform.php:355 lib/designsettings.php:270
+#: lib/groupeditform.php:207
msgctxt "BUTTON"
msgid "Save"
msgstr "Αποθήκευση"
+#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
#: actions/showfavorites.php:138 actions/tag.php:52
msgid "No such page."
msgstr "Κανένας τέτοιος χρήστης."
+#. TRANS: Client error when user not found for an action.
+#. TRANS: Client error when user not found for an rss related action.
+#. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting.
+#. TRANS: Client error displayed if a user could not be found.
+#. TRANS: Client error when user not found updating a profile background image.
+#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error when user not found for an API action to remove a block for a user.
+#. TRANS: Client error given when a user was not found (404).
+#. TRANS: Client error when user not found for an API direct message action.
+#. TRANS: Client error given when a user was not found (404).
+#. TRANS: Client error displayed when checking group membership for a non-existing user.
+#. TRANS: Client error displayed when trying to have a non-existing user join a group.
+#. TRANS: Client error displayed when trying to have a non-existing user leave a group.
+#. TRANS: Client error displayed when updating a status for a non-existing user.
+#. TRANS: Client error displayed when requesting a list of followers for a non-existing user.
+#. TRANS: Client error displayed when requesting most recent favourite notices by a user for a non-existing user.
+#. TRANS: Client error displayed when requesting dents of a user and friends for a user that does not exist.
+#. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user.
+#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
+#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
+#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
-#: actions/all.php:79 actions/allrss.php:68
-#: actions/apiaccountupdatedeliverydevice.php:115
-#: actions/apiaccountupdateprofile.php:106
-#: actions/apiaccountupdateprofilebackgroundimage.php:117
-#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
-#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
-#: actions/apigroupleave.php:101 actions/apigrouplist.php:73
-#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
-#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174
-#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80
-#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75
-#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
-#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116
-#: actions/otp.php:76 actions/remotesubscribe.php:145
-#: actions/remotesubscribe.php:154 actions/replies.php:73
-#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105
-#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40
-#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59
+#: actions/all.php:80 actions/allrss.php:69
+#: actions/apiaccountupdatedeliverydevice.php:110
+#: actions/apiaccountupdateprofile.php:103
+#: actions/apiaccountupdateprofilebackgroundimage.php:118
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
+#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
+#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
+#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
+#: actions/apigrouplist.php:70 actions/apistatusesupdate.php:230
+#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
+#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
+#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
+#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
+#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
+#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
+#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
#: lib/mailbox.php:82 lib/profileaction.php:77
msgid "No such user."
msgstr "Κανένας τέτοιος χρήστης."
#. TRANS: Page title. %1$s is user nickname, %2$d is page number
-#: actions/all.php:90
+#: actions/all.php:91
#, php-format
msgid "%1$s and friends, page %2$d"
msgstr "%1$s και φίλοι, σελίδα 2%$d"
-#. TRANS: Page title. %1$s is user nickname
-#. TRANS: H1 text. %1$s is user nickname
+#. TRANS: Page title. %s is user nickname
+#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
-#: actions/all.php:93 actions/all.php:185 actions/allrss.php:116
-#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116
-#: lib/personalgroupnav.php:100
+#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
+#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
+#: lib/personalgroupnav.php:103
#, php-format
msgid "%s and friends"
msgstr "%s και οι φίλοι του/της"
-#. TRANS: %1$s is user nickname
-#: actions/all.php:107
+#. TRANS: %s is user nickname.
+#: actions/all.php:108
#, php-format
msgid "Feed for friends of %s (RSS 1.0)"
msgstr "Ροή φίλων του/της %s (RSS 1.0)"
-#. TRANS: %1$s is user nickname
-#: actions/all.php:116
+#. TRANS: %s is user nickname.
+#: actions/all.php:117
#, php-format
msgid "Feed for friends of %s (RSS 2.0)"
msgstr "Ροή φίλων του/της %s (RSS 2.0)"
-#. TRANS: %1$s is user nickname
-#: actions/all.php:125
+#. TRANS: %s is user nickname.
+#: actions/all.php:126
#, php-format
msgid "Feed for friends of %s (Atom)"
msgstr "Ροή φίλων του/της %s (Atom)"
-#. TRANS: %1$s is user nickname
-#: actions/all.php:138
+#. TRANS: Empty list message. %s is a user nickname.
+#: actions/all.php:139
#, php-format
msgid ""
"This is the timeline for %s and friends but no one has posted anything yet."
@@ -161,315 +198,643 @@ msgstr ""
"Αυτό είναι το χρονοδιάγραμμα για %s και φίλους, αλλά κανείς δεν έχει κάνει "
"καμία αποστολή ακόμα."
-#: actions/all.php:143
+#. TRANS: Encouragement displayed on logged in user's empty timeline.
+#. TRANS: This message contains Markdown links. Keep "](" together.
+#: actions/all.php:146
#, php-format
msgid ""
"Try subscribing to more people, [join a group](%%action.groups%%) or post "
"something yourself."
msgstr ""
-"Δοκιμάστε την εγγραφή σε περισσότερους ανθρώπους, [ενταχθείτε σε μια ομάδα] "
-"(%%action.groups%%) ή αποστείλετε κάτι ο ίδιος."
+"Δοκιμάστε την εγγραφή σε περισσότερους ανθρώπους, [ενταχθείτε σε μια ομάδα](%"
+"%action.groups%%) ή αποστείλετε κάτι ο ίδιος."
-#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@"
-#: actions/all.php:146
+#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@".
+#. TRANS: This message contains Markdown links. Keep "](" together.
+#: actions/all.php:150
#, php-format
msgid ""
"You can try to [nudge %1$s](../%2$s) from their profile or [post something "
"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211
+#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users.
+#. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together.
+#. TRANS: Second sentence of empty message for anonymous users. %s is a user nickname.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:227
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
"post a notice to them."
msgstr ""
-#. TRANS: H1 text
-#: actions/all.php:182
+#. TRANS: H1 text for page when viewing a list for self.
+#: actions/all.php:188
msgid "You and friends"
msgstr "Εσείς και οι φίλοι σας"
+#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
+#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name.
+#: actions/allrss.php:122 actions/apitimelinefriends.php:213
+#: actions/apitimelinehome.php:119
+#, fuzzy, php-format
+msgid "Updates from %1$s and friends on %2$s!"
+msgstr "%1$s και φίλοι, σελίδα 2%$d"
+
+#. TRANS: Client error displayed handling a non-existing API method.
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours.
+#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials.
+#. TRANS: Client error given when an API method was not found (404).
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#. TRANS: Client error displayed trying to execute an unknown API method showing friendship.
+#. TRANS: Client error given when an API method was not found (404).
+#. TRANS: Client error displayed trying to execute an unknown API method showing group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method joining a group.
+#. TRANS: Client error displayed trying to execute an unknown API method leaving a group.
+#. TRANS: Client error displayed trying to execute an unknown API method checking group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups.
+#. TRANS: Client error displayed trying to execute an unknown API method showing group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method showing a group.
+#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity.
+#. TRANS: Client error displayed trying to execute an unknown API method deleting a status.
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#: actions/apiaccountratelimitstatus.php:69
+#: actions/apiaccountupdatedeliverydevice.php:92
+#: actions/apiaccountupdateprofile.php:94
+#: actions/apiaccountupdateprofilebackgroundimage.php:92
+#: actions/apiaccountupdateprofilecolors.php:115
+#: actions/apiaccountverifycredentials.php:68 actions/apidirectmessage.php:157
+#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:98
+#: actions/apifriendshipscreate.php:99 actions/apifriendshipsdestroy.php:99
+#: actions/apifriendshipsshow.php:124 actions/apigroupcreate.php:138
+#: actions/apigroupismember.php:115 actions/apigroupjoin.php:160
+#: actions/apigroupleave.php:145 actions/apigrouplist.php:134
+#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:105
+#: actions/apigroupshow.php:114 actions/apihelptest.php:84
+#: actions/apistatusesdestroy.php:101 actions/apistatusesretweets.php:110
+#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
+#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
+#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
+#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
+#: actions/apitimelineretweetedtome.php:118
+#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
+#: actions/apitimelineuser.php:206 actions/apiusershow.php:100
+#, fuzzy
+msgid "API method not found."
+msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!"
+
#. TRANS: Client error message. POST is a HTTP command. It should not be translated.
#. TRANS: Client error. POST is a HTTP command. It should not be translated.
-#: actions/apiaccountupdatedeliverydevice.php:87
-#: actions/apiaccountupdateprofile.php:90
-#: actions/apiaccountupdateprofilebackgroundimage.php:87
-#: actions/apiaccountupdateprofilecolors.php:111
-#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
-#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
-#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
-#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
-#: actions/apigroupleave.php:93 actions/apimediaupload.php:68
-#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199
+#: actions/apiaccountupdatedeliverydevice.php:83
+#: actions/apiaccountupdateprofile.php:85
+#: actions/apiaccountupdateprofilebackgroundimage.php:83
+#: actions/apiaccountupdateprofilecolors.php:106
+#: actions/apiaccountupdateprofileimage.php:80 actions/apiblockcreate.php:87
+#: actions/apiblockdestroy.php:85 actions/apidirectmessagenew.php:107
+#: actions/apifavoritecreate.php:88 actions/apifavoritedestroy.php:88
+#: actions/apifriendshipscreate.php:89 actions/apifriendshipsdestroy.php:89
+#: actions/apigroupcreate.php:102 actions/apigroupjoin.php:89
+#: actions/apigroupleave.php:89 actions/apimediaupload.php:66
+#: actions/apistatusesretweet.php:63 actions/apistatusesupdate.php:194
msgid "This method requires a POST."
msgstr ""
-#: actions/apiaccountupdatedeliverydevice.php:107
+#. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting.
+#: actions/apiaccountupdatedeliverydevice.php:103
msgid ""
"You must specify a parameter named 'device' with a value of one of: sms, im, "
"none."
msgstr ""
-#: actions/apiaccountupdateprofilebackgroundimage.php:109
-#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81
-#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257
-#: actions/designadminpanel.php:123 actions/editapplication.php:118
-#: actions/newapplication.php:101 actions/newnotice.php:94
-#: lib/designsettings.php:283
+#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#: actions/apiaccountupdatedeliverydevice.php:130
+#, fuzzy
+msgid "Could not update user."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
+#. TRANS: Client error displayed if a user profile could not be found.
+#. TRANS: Client error displayed when a user has no profile.
+#. TRANS: Client error displayed a user has no profile updating profile colours.
+#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
+#. TRANS: Client error displayed when requesting user information for a user without a profile.
+#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#: actions/apiaccountupdateprofile.php:111
+#: actions/apiaccountupdateprofilebackgroundimage.php:199
+#: actions/apiaccountupdateprofilecolors.php:183
+#: actions/apiaccountupdateprofileimage.php:130
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
+#: lib/profileaction.php:84
+#, fuzzy
+msgid "User has no profile."
+msgstr "Προφίλ χρήστη"
+
+#. TRANS: Server error displayed if a user profile could not be saved.
+#: actions/apiaccountupdateprofile.php:147
+#, fuzzy
+msgid "Could not save profile."
+msgstr "Απέτυχε η αποθήκευση του προφίλ."
+
+#. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
+#. TRANS: %s is the number of bytes of the CONTENT_LENGTH.
+#. TRANS: Form validation error in design settings form. POST should remain untranslated.
+#: actions/apiaccountupdateprofilebackgroundimage.php:108
+#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
+#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
+#: actions/designadminpanel.php:125 actions/editapplication.php:121
+#: actions/newapplication.php:104 actions/newnotice.php:95
+#: lib/designsettings.php:298
#, php-format
msgid ""
+"The server was unable to handle that much POST data (%s byte) due to its "
+"current configuration."
+msgid_plural ""
"The server was unable to handle that much POST data (%s bytes) due to its "
"current configuration."
-msgstr ""
+msgstr[0] ""
+msgstr[1] ""
-#: actions/apiaccountupdateprofilebackgroundimage.php:137
-#: actions/apiaccountupdateprofilebackgroundimage.php:147
-#: actions/apiaccountupdateprofilecolors.php:165
-#: actions/apiaccountupdateprofilecolors.php:175
+#. TRANS: Client error displayed when saving design settings fails because of an empty id.
+#. TRANS: Client error displayed when saving design settings fails because of an empty result.
+#. TRANS: Client error displayed when a database error occurs inserting profile colours.
+#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#: actions/apiaccountupdateprofilebackgroundimage.php:138
+#: actions/apiaccountupdateprofilebackgroundimage.php:149
+#: actions/apiaccountupdateprofilecolors.php:160
+#: actions/apiaccountupdateprofilecolors.php:171
#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
#: 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/apiblockcreate.php:106
+#. TRANS: Error displayed when updating design settings fails.
+#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#: actions/apiaccountupdateprofilebackgroundimage.php:191
+#: actions/apiaccountupdateprofilecolors.php:139
+#, fuzzy
+msgid "Could not update your design."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
+#: actions/apiatomservice.php:86
+msgid "Main"
+msgstr ""
+
+#. TRANS: Message is used as link title. %s is a user nickname.
+#. TRANS: Title in atom group notice feed. %s is a group name.
+#. TRANS: Title in atom user notice feed. %s is a user name.
+#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
+#: lib/atomusernoticefeed.php:68
+#, php-format
+msgid "%s timeline"
+msgstr "χρονοδιάγραμμα του χρήστη %s"
+
+#. TRANS: Header for subscriptions overview for a user (first page).
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/subscriptions.php:51
+#, php-format
+msgid "%s subscriptions"
+msgstr "Όλες οι συνδρομές"
+
+#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#, php-format
+msgid "%s favorites"
+msgstr ""
+
+#: actions/apiatomservice.php:123
+#, php-format
+msgid "%s memberships"
+msgstr ""
+
+#. TRANS: Client error displayed when users try to block themselves.
+#: actions/apiblockcreate.php:104
msgid "You cannot block yourself!"
msgstr "Δεν μπορείτε να κάνετε φραγή στον εαυτό σας!"
-#: actions/apiblockcreate.php:127
+#. TRANS: Server error displayed when blocking a user has failed.
+#: actions/apiblockcreate.php:126
msgid "Block user failed."
msgstr ""
-#: actions/apiblockdestroy.php:115
+#. TRANS: Server error displayed when unblocking a user has failed.
+#: actions/apiblockdestroy.php:113
msgid "Unblock user failed."
msgstr ""
-#: actions/apidirectmessage.php:89
+#. TRANS: Title. %s is a user nickname.
+#: actions/apidirectmessage.php:88
#, php-format
msgid "Direct messages from %s"
msgstr ""
+#. TRANS: Subtitle. %s is a user nickname.
#: actions/apidirectmessage.php:93
#, php-format
msgid "All the direct messages sent from %s"
msgstr ""
-#: actions/apidirectmessage.php:101
+#. TRANS: Title. %s is a user nickname.
+#: actions/apidirectmessage.php:102
#, php-format
msgid "Direct messages to %s"
msgstr ""
-#: actions/apidirectmessage.php:105
+#. TRANS: Subtitle. %s is a user nickname.
+#: actions/apidirectmessage.php:107
#, php-format
msgid "All the direct messages sent to %s"
msgstr ""
-#: actions/apidirectmessagenew.php:119
+#. TRANS: Client error displayed when no message text was submitted (406).
+#: actions/apidirectmessagenew.php:117
msgid "No message text!"
msgstr ""
-#: actions/apidirectmessagenew.php:128 actions/newmessage.php:150
+#. TRANS: Client error displayed when message content is too long.
+#. TRANS: %d is the maximum number of characters for a message.
+#. TRANS: Form validation error displayed when message content is too long.
+#. TRANS: %d is the maximum number of characters for a message.
+#: actions/apidirectmessagenew.php:127 actions/newmessage.php:152
#, php-format
-msgid "That's too long. Max message size is %d chars."
-msgstr ""
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] ""
+msgstr[1] ""
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed if a recipient user could not be found (403).
+#: actions/apidirectmessagenew.php:139
+#, fuzzy
+msgid "Recipient user not found."
+msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
+
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
msgid "Can't send direct messages to users who aren't your friend."
msgstr ""
-#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
+#. TRANS: Client error displayed when requesting a status with a non-existing ID.
+#. TRANS: Client error displayed when trying to remove a favourite with an invalid ID.
+#. TRANS: Client error displayed trying to delete a status with an invalid ID.
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:108
#: actions/apistatusesdestroy.php:121
msgid "No status found with that ID."
msgstr ""
-#: actions/apifavoritecreate.php:121
+#. TRANS: Client error displayed when trying to mark a notice favourite that already is a favourite.
+#: actions/apifavoritecreate.php:120
msgid "This status is already a favorite."
msgstr ""
-#: actions/apifavoritedestroy.php:124
+#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Error message text shown when a favorite could not be set.
+#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#, fuzzy
+msgid "Could not create favorite."
+msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
+
+#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite.
+#: actions/apifavoritedestroy.php:122
msgid "That status is not a favorite."
msgstr ""
-#: actions/apifriendshipscreate.php:110
+#. TRANS: Client error displayed when removing a favourite has failed.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#, fuzzy
+msgid "Could not delete favorite."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
+#. TRANS: Client error displayed when trying follow who's profile could not be found.
+#: actions/apifriendshipscreate.php:109
msgid "Could not follow user: profile not found."
msgstr ""
"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου."
-#: actions/apifriendshipscreate.php:119
+#. TRANS: Client error displayed when trying to follow a user that's already being followed.
+#. TRANS: %s is the nickname of the user that is already being followed.
+#: actions/apifriendshipscreate.php:120
#, php-format
msgid "Could not follow user: %s is already on your list."
msgstr ""
"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου."
-#: actions/apifriendshipsdestroy.php:110
+#. TRANS: Client error displayed when trying to unfollow a user that cannot be found.
+#: actions/apifriendshipsdestroy.php:109
msgid "Could not unfollow user: User not found."
msgstr ""
"Δε μπορώ να ακολουθήσω το χρήστη: ο χρήστης %s είναι ήδη στη λίστα σου."
+#. TRANS: Client error displayed when trying to unfollow self.
#: actions/apifriendshipsdestroy.php:121
msgid "You cannot unfollow yourself."
msgstr "Δεν μπορείτε να κάνετε φραγή στον εαυτό σας!"
-#: actions/apifriendshipsexists.php:91
-msgid "Two valid IDs or screen_names must be supplied."
+#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
+#: actions/apifriendshipsexists.php:88
+msgid "Two valid IDs or nick names must be supplied."
msgstr ""
-#: actions/apifriendshipsshow.php:142
+#. TRANS: Client error displayed when a source user could not be determined showing friendship.
+#: actions/apifriendshipsshow.php:131
+#, fuzzy
+msgid "Could not determine source user."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
+#. TRANS: Client error displayed when a target user could not be determined showing friendship.
+#: actions/apifriendshipsshow.php:140
msgid "Could not find target user."
msgstr "Απέτυχε η ενημέρωση του χρήστη."
-#: actions/apigroupcreate.php:168 actions/editgroup.php:186
-#: actions/newgroup.php:126 actions/profilesettings.php:215
-#: actions/register.php:212
-msgid "Nickname must have only lowercase letters and numbers and no spaces."
-msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά."
-
-#: actions/apigroupcreate.php:177 actions/editgroup.php:190
-#: actions/newgroup.php:130 actions/profilesettings.php:238
-#: actions/register.php:215
+#. TRANS: Client error trying to create a group with a nickname this is already in use.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:156 actions/editgroup.php:189
+#: actions/newgroup.php:136 actions/profilesettings.php:277
+#: actions/register.php:214
msgid "Nickname already in use. Try another one."
msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
-#: actions/apigroupcreate.php:184 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:218
-#: actions/register.php:217
+#. TRANS: Client error in form for group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:164 actions/editgroup.php:193
+#: actions/newgroup.php:140 actions/profilesettings.php:247
+#: actions/register.php:216
msgid "Not a valid nickname."
msgstr ""
-#: actions/apigroupcreate.php:200 actions/editapplication.php:215
-#: actions/editgroup.php:199 actions/newapplication.php:203
-#: actions/newgroup.php:139 actions/profilesettings.php:222
-#: actions/register.php:224
+#. TRANS: Client error in form for group creation.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:181 actions/editapplication.php:233
+#: actions/editgroup.php:200 actions/newapplication.php:211
+#: actions/newgroup.php:147 actions/profilesettings.php:252
+#: actions/register.php:223
msgid "Homepage is not a valid URL."
msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
-#: actions/apigroupcreate.php:209 actions/editgroup.php:202
-#: actions/newgroup.php:142 actions/profilesettings.php:225
-#: actions/register.php:227
-msgid "Full name is too long (max 255 chars)."
-msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)."
-
-#: actions/apigroupcreate.php:217 actions/editapplication.php:190
-#: actions/newapplication.php:172
-#, php-format
-msgid "Description is too long (max %d chars)."
-msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)."
-
-#: actions/apigroupcreate.php:228 actions/editgroup.php:208
-#: actions/newgroup.php:148 actions/profilesettings.php:232
-#: actions/register.php:234
-msgid "Location is too long (max 255 chars)."
-msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)."
-
-#: actions/apigroupcreate.php:247 actions/editgroup.php:219
-#: actions/newgroup.php:159
-#, php-format
-msgid "Too many aliases! Maximum %d."
+#. TRANS: Client error in form for group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:191 actions/editgroup.php:204
+#: actions/newgroup.php:151 actions/profilesettings.php:256
+#: actions/register.php:226
+msgid "Full name is too long (maximum 255 characters)."
msgstr ""
-#: actions/apigroupcreate.php:290 actions/editgroup.php:238
-#: actions/newgroup.php:178
+#. TRANS: Client error shown when providing too long a description during group creation.
+#. TRANS: %d is the maximum number of allowed characters.
+#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: Group edit form validation error.
+#. TRANS: Form validation error in New application form.
+#. TRANS: %d is the maximum number of characters for the description.
+#. TRANS: Group create form validation error.
+#. TRANS: %d is the maximum number of allowed characters.
+#: actions/apigroupcreate.php:201 actions/editapplication.php:201
+#: actions/editgroup.php:209 actions/newapplication.php:178
+#: actions/newgroup.php:156
+#, php-format
+msgid "Description is too long (maximum %d character)."
+msgid_plural "Description is too long (maximum %d characters)."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error shown when providing too long a location during group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:215 actions/editgroup.php:216
+#: actions/newgroup.php:163 actions/profilesettings.php:269
+#: actions/register.php:235
+msgid "Location is too long (maximum 255 characters)."
+msgstr ""
+
+#. TRANS: Client error shown when providing too many aliases during group creation.
+#. TRANS: %d is the maximum number of allowed aliases.
+#. TRANS: Group edit form validation error.
+#. TRANS: %d is the maximum number of allowed aliases.
+#. TRANS: Group create form validation error.
+#. TRANS: %d is the maximum number of allowed aliases.
+#: actions/apigroupcreate.php:236 actions/editgroup.php:229
+#: actions/newgroup.php:176
+#, php-format
+msgid "Too many aliases! Maximum %d allowed."
+msgid_plural "Too many aliases! Maximum %d allowed."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error shown when providing an invalid alias during group creation.
+#. TRANS: %s is the invalid alias.
+#: actions/apigroupcreate.php:253
+#, fuzzy, php-format
+msgid "Invalid alias: \"%s\"."
+msgstr "Μήνυμα"
+
+#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
+#. TRANS: %s is the alias that is already in use.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:244
+#: actions/newgroup.php:191
+#, fuzzy, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
+
+#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#: actions/apigroupcreate.php:278 actions/editgroup.php:251
+#: actions/newgroup.php:198
msgid "Alias can't be the same as nickname."
msgstr ""
-#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106
-#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92
-#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92
+#. TRANS: Client error displayed when checking group membership for a non-existing group.
+#. TRANS: Client error displayed when trying to join a group that does not exist.
+#. TRANS: Client error displayed when trying to leave a group that does not exist.
+#. TRANS: Client error displayed trying to show group membership on a non-existing group.
+#. TRANS: Client error displayed when trying to show a group that could not be found.
+#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
+#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!"
+#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Error text shown a user tries to join a group they already are a member of.
+#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#, fuzzy
+msgid "You are already a member of that group."
+msgstr "Ομάδες με τα περισσότερα μέλη"
+
+#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341
+#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr ""
+#. TRANS: Server error displayed when joining a group fails.
+#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:140 actions/joingroup.php:134 lib/command.php:353
+#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
+#. TRANS: Server error displayed when trying to leave a group the user is not a member of.
+#: actions/apigroupleave.php:115
+#, fuzzy
+msgid "You are not a member of this group."
+msgstr "Ομάδες με τα περισσότερα μέλη"
+
+#. TRANS: Server error displayed when leaving a group fails.
+#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:126 actions/leavegroup.php:129
-#: lib/command.php:401
+#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
-#. TRANS: %s is a user name
-#: actions/apigrouplist.php:98
+#. TRANS: Used as title in check for group membership. %s is a user name.
+#: actions/apigrouplist.php:94
#, php-format
msgid "%s's groups"
msgstr "ομάδες των χρηστών %s"
-#: actions/apigrouplistall.php:96
+#. TRANS: Used as subtitle in check for group membership. %1$s is a user name, %2$s is the site name.
+#: actions/apigrouplist.php:104
+#, fuzzy, php-format
+msgid "%1$s groups %2$s is a member of."
+msgstr "Δεν είστε μέλος καμίας ομάδας."
+
+#. TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name.
+#. TRANS: Message is used as a page title. %s is a nick name.
+#: actions/apigrouplistall.php:88 actions/usergroups.php:63
+#, fuzzy, php-format
+msgid "%s groups"
+msgstr "ομάδες των χρηστών %s"
+
+#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name.
+#: actions/apigrouplistall.php:93
#, php-format
msgid "groups on %s"
msgstr "ομάδες του χρήστη %s"
-#: actions/apioauthauthorize.php:101
+#. TRANS: Client error displayed when uploading a media file has failed.
+#: actions/apimediaupload.php:101
+#, fuzzy
+msgid "Upload failed."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
+#: actions/apioauthaccesstoken.php:101
+msgid "Invalid request token or verifier."
+msgstr ""
+
+#. TRANS: Client error given when no oauth_token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:107
msgid "No oauth_token parameter provided."
msgstr ""
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
-#: actions/deletenotice.php:169 actions/disfavor.php:74
-#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55
+#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129
+msgid "Invalid request token."
+msgstr ""
+
+#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:121
+msgid "Request token already authorized."
+msgstr ""
+
+#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
+#: actions/deletenotice.php:177 actions/disfavor.php:74
+#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:66 actions/imsettings.php:230
-#: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66
-#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
-#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
-#: actions/othersettings.php:145 actions/passwordsettings.php:138
-#: actions/profilesettings.php:194 actions/recoverpassword.php:350
+#: actions/groupunblock.php:65 actions/imsettings.php:230
+#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
+#: actions/othersettings.php:153 actions/passwordsettings.php:138
+#: actions/profilesettings.php:221 actions/recoverpassword.php:350
#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38
+#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
#: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52
-#: lib/designsettings.php:294
+#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
-#: actions/apioauthauthorize.php:135
+#. TRANS: Form validation error given when an invalid username and/or password was passed to the OAuth API.
+#: actions/apioauthauthorize.php:168
msgid "Invalid nickname / password!"
msgstr ""
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
+#. TRANS: Server error displayed when a database action fails.
+#: actions/apioauthauthorize.php:217
+msgid "Database error inserting oauth_token_association."
msgstr ""
+#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
+#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Client error when submitting a form with unexpected information.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
-#: actions/designadminpanel.php:104 actions/editapplication.php:139
-#: actions/emailsettings.php:290 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:121
+#. TRANS: Unknown form validation error in design settings form.
+#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
+#: actions/designadminpanel.php:104 actions/editapplication.php:144
+#: actions/emailsettings.php:316 actions/grouplogo.php:322
+#: actions/imsettings.php:245 actions/newapplication.php:125
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:304
+#: actions/smssettings.php:277 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr ""
-#: actions/apioauthauthorize.php:259
+#. TRANS: Title for a page where a user can confirm/deny account access by an external application.
+#: actions/apioauthauthorize.php:387
msgid "An application would like to connect to your account"
msgstr ""
-#: actions/apioauthauthorize.php:276
+#. TRANS: Fieldset legend.
+#: actions/apioauthauthorize.php:404
msgid "Allow or deny access"
msgstr ""
-#: actions/apioauthauthorize.php:292
+#. TRANS: User notification of external application requesting account access.
+#. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename.
+#: actions/apioauthauthorize.php:425
+#, php-format
+msgid ""
+"An application would like the ability to %3$s your %4$s "
+"account data. You should only give access to your %4$s account to third "
+"parties you trust."
+msgstr ""
+
+#. TRANS: User notification of external application requesting account access.
+#. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application,
+#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename.
+#: actions/apioauthauthorize.php:433
#, php-format
msgid ""
"The application %1$s by %2$s would like "
@@ -477,194 +842,647 @@ msgid ""
"give access to your %4$s account to third parties you trust."
msgstr ""
-#. TRANS: Main menu option when logged in for access to user settings
-#: actions/apioauthauthorize.php:310 lib/action.php:463
+#. TRANS: Fieldset legend.
+#: actions/apioauthauthorize.php:455
+msgctxt "LEGEND"
msgid "Account"
-msgstr "Λογαριασμός"
+msgstr ""
-#: actions/apioauthauthorize.php:313 actions/login.php:252
-#: actions/profilesettings.php:106 actions/register.php:431
-#: actions/showgroup.php:245 actions/tagother.php:94
+#. TRANS: Field label on OAuth API authorisation form.
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for group nickname (dt). Text hidden by default.
+#: actions/apioauthauthorize.php:459 actions/login.php:252
+#: actions/profilesettings.php:110 actions/register.php:432
+#: actions/showgroup.php:240 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:132
+#: lib/userprofile.php:134
msgid "Nickname"
msgstr "Ψευδώνυμο"
+#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
-#: actions/register.php:436 lib/accountsettingsaction.php:125
+#: actions/apioauthauthorize.php:463 actions/login.php:255
+#: actions/register.php:437 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Κωδικός"
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr ""
+#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
+#. TRANS: by an external application.
+#. TRANS: Button label to cancel an e-mail address confirmation procedure.
+#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel a SMS address confirmation procedure.
+#. TRANS: Button label in the "Edit application" form.
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
+#: actions/imsettings.php:131 actions/smssettings.php:137
+#: lib/applicationeditform.php:351
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Cancel"
+msgstr "Ακύρωση"
-#: actions/apioauthauthorize.php:334
+#. TRANS: Button text that when clicked will allow access to an account by an external application.
+#: actions/apioauthauthorize.php:485
+msgctxt "BUTTON"
msgid "Allow"
-msgstr "Να επιτραπεί"
-
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
msgstr ""
-#: actions/apistatusesdestroy.php:112
+#. TRANS: Form instructions.
+#: actions/apioauthauthorize.php:502
+msgid "Authorize access to your account information."
+msgstr ""
+
+#. TRANS: Header for user notification after revoking OAuth access to an application.
+#: actions/apioauthauthorize.php:594
+msgid "Authorization canceled."
+msgstr ""
+
+#. TRANS: User notification after revoking OAuth access to an application.
+#. TRANS: %s is an OAuth token.
+#: actions/apioauthauthorize.php:598
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
+#: actions/apioauthauthorize.php:621
+msgid "You have successfully authorized the application"
+msgstr ""
+
+#. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
+#: actions/apioauthauthorize.php:625
+msgid ""
+"Please return to the application and enter the following security code to "
+"complete the process."
+msgstr ""
+
+#. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth.
+#. TRANS: %s is the authorised application name.
+#: actions/apioauthauthorize.php:632
+#, php-format
+msgid "You have successfully authorized %s"
+msgstr ""
+
+#. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth.
+#. TRANS: %s is the authorised application name.
+#: actions/apioauthauthorize.php:639
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete a status not using POST or DELETE.
+#. TRANS: POST and DELETE should not be translated.
+#: actions/apistatusesdestroy.php:111
msgid "This method requires a POST or DELETE."
msgstr ""
-#: actions/apistatusesdestroy.php:135
+#. TRANS: Client error displayed trying to delete a status of another user.
+#: actions/apistatusesdestroy.php:136
msgid "You may not delete another user's status."
msgstr ""
-#: actions/apistatusesshow.php:139
+#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
+#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Error message displayed trying to delete a non-existing notice.
+#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
+#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
+#: actions/shownotice.php:92
+#, fuzzy
+msgid "No such notice."
+msgstr "Κανένας τέτοιος χρήστης."
+
+#. TRANS: Client error displayed trying to repeat an own notice through the API.
+#. TRANS: Error text shown when trying to repeat an own notice.
+#: actions/apistatusesretweet.php:83 lib/command.php:537
+#, fuzzy
+msgid "Cannot repeat your own notice."
+msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
+
+#. TRANS: Client error displayed trying to re-repeat a notice through the API.
+#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user.
+#: actions/apistatusesretweet.php:92 lib/command.php:543
+#, fuzzy
+msgid "Already repeated that notice."
+msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
+
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
+#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
+#: actions/atompubshowsubscription.php:122
+#: actions/atompubsubscriptionfeed.php:109
+msgid "HTTP method not supported."
+msgstr ""
+
+#: actions/apistatusesshow.php:141
+#, php-format
+msgid "Unsupported format: %s"
+msgstr ""
+
+#. TRANS: Client error displayed requesting a deleted status.
+#: actions/apistatusesshow.php:152
msgid "Status deleted."
msgstr "Η κατάσταση διεγράφη."
-#: actions/apistatusesshow.php:145
+#. TRANS: Client error displayed requesting a status with an invalid ID.
+#: actions/apistatusesshow.php:159
msgid "No status with that ID found."
msgstr ""
-#: actions/apistatusesupdate.php:222
+#: actions/apistatusesshow.php:223
+msgid "Can only delete using the Atom format."
+msgstr ""
+
+#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
+#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
+msgid "Can't delete this notice."
+msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;"
+
+#: actions/apistatusesshow.php:243
+#, php-format
+msgid "Deleted notice %d"
+msgstr ""
+
+#. TRANS: Client error displayed when the parameter "status" is missing.
+#: actions/apistatusesupdate.php:221
msgid "Client must provide a 'status' parameter with a value."
msgstr ""
-#: actions/apistatusesupdate.php:243 actions/newnotice.php:157
+#. TRANS: Client error displayed when the parameter "status" is missing.
+#. TRANS: %d is the maximum number of character for a notice.
+#: actions/apistatusesupdate.php:244 actions/newnotice.php:161
#: lib/mailhandler.php:60
#, php-format
-msgid "That's too long. Max notice size is %d chars."
+msgid "That's too long. Maximum notice size is %d character."
+msgid_plural "That's too long. Maximum notice size is %d characters."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error displayed when replying to a non-existing notice.
+#: actions/apistatusesupdate.php:284
+msgid "Parent notice not found."
msgstr ""
-#: actions/apistatusesupdate.php:284 actions/apiusershow.php:96
-msgid "Not found."
-msgstr ""
-
-#: actions/apistatusesupdate.php:307 actions/newnotice.php:181
+#. TRANS: Client error displayed exceeding the maximum notice length.
+#. TRANS: %d is the maximum lenth for a notice.
+#: actions/apistatusesupdate.php:308 actions/newnotice.php:184
#, php-format
-msgid "Max notice size is %d chars, including attachment URL."
-msgstr ""
+msgid "Maximum notice size is %d character, including attachment URL."
+msgid_plural "Maximum notice size is %d characters, including attachment URL."
+msgstr[0] ""
+msgstr[1] ""
-#: actions/apisubscriptions.php:232 actions/apisubscriptions.php:262
+#. TRANS: Client error displayed when requesting profiles of followers in an unsupported format.
+#. TRANS: Client error displayed when requesting IDs of followers in an unsupported format.
+#: actions/apisubscriptions.php:228 actions/apisubscriptions.php:258
msgid "Unsupported format."
msgstr ""
-#: actions/apitimelinefavorites.php:110
+#. TRANS: Title for timeline of most recent favourite notices by a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
+#: actions/apitimelinefavorites.php:108
#, php-format
msgid "%1$s / Favorites from %2$s"
msgstr ""
-#: actions/apitimelinefavorites.php:119
+#. TRANS: Subtitle for timeline of most recent favourite notices by a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name,
+#. TRANS: %3$s is a user nickname.
+#: actions/apitimelinefavorites.php:120
#, php-format
-msgid "%1$s updates favorited by %2$s / %2$s."
+msgid "%1$s updates favorited by %2$s / %3$s."
msgstr ""
-#: actions/apitimelinementions.php:118
+#. TRANS: Server error displayed when generating an Atom feed fails.
+#. TRANS: %s is the error.
+#: actions/apitimelinegroup.php:134
+#, php-format
+msgid "Could not generate feed for group - %s"
+msgstr ""
+
+#. TRANS: Title for timeline of most recent mentions of a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
+#: actions/apitimelinementions.php:115
#, php-format
msgid "%1$s / Updates mentioning %2$s"
msgstr ""
+#. TRANS: Subtitle for timeline of most recent mentions of a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname,
+#. TRANS: %3$s is a user's full name.
#: actions/apitimelinementions.php:131
#, php-format
msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
-#: actions/apitimelinepublic.php:202 actions/publicrss.php:105
+#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
+#, fuzzy, php-format
+msgid "%s public timeline"
+msgstr "χρονοδιάγραμμα του χρήστη %s"
+
+#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
+#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
#, php-format
msgid "%s updates from everyone!"
msgstr ""
-#: actions/apitimelineretweetsofme.php:114
+#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'.
+#: actions/apitimelineretweetedbyme.php:71
+msgid "Unimplemented."
+msgstr ""
+
+#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname.
+#: actions/apitimelineretweetedtome.php:108
+#, fuzzy, php-format
+msgid "Repeated to %s"
+msgstr "Επαναλαμβάνεται από"
+
+#. TRANS: Title of list of repeated notices of the logged in user.
+#. TRANS: %s is the nickname of the logged in user.
+#: actions/apitimelineretweetsofme.php:112
#, php-format
msgid "Repeats of %s"
msgstr ""
-#: actions/apitimelinetag.php:105 actions/tag.php:67
+#. TRANS: Title for timeline with lastest notices with a given tag.
+#. TRANS: %s is the tag.
+#: actions/apitimelinetag.php:101 actions/tag.php:67
#, php-format
msgid "Notices tagged with %s"
msgstr ""
-#: actions/apitimelinetag.php:107 actions/tagrss.php:65
+#. TRANS: Subtitle for timeline with lastest notices with a given tag.
+#. TRANS: %1$s is the tag, $2$s is the StatusNet sitename.
+#: actions/apitimelinetag.php:105 actions/tagrss.php:65
#, php-format
msgid "Updates tagged with %1$s on %2$s!"
msgstr ""
-#: actions/apitrends.php:87
+#. TRANS: Client error displayed trying to add a notice to another user's timeline.
+#: actions/apitimelineuser.php:297
+msgid "Only the user can add to their own timeline."
+msgstr ""
+
+#. TRANS: Client error displayed when using another format than AtomPub.
+#: actions/apitimelineuser.php:304
+msgid "Only accept AtomPub for Atom feeds."
+msgstr ""
+
+#: actions/apitimelineuser.php:310
+msgid "Atom post must not be empty."
+msgstr ""
+
+#: actions/apitimelineuser.php:315
+msgid "Atom post must be well-formed XML."
+msgstr ""
+
+#. TRANS: Client error displayed when not using an Atom entry.
+#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
+#: actions/atompubmembershipfeed.php:228
+#: actions/atompubsubscriptionfeed.php:233
+msgid "Atom post must be an Atom entry."
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/apitimelineuser.php:334
+msgid "Can only handle POST activities."
+msgstr ""
+
+#. TRANS: Client error displayed when using an unsupported activity object type.
+#. TRANS: %s is the unsupported activity object type.
+#: actions/apitimelineuser.php:345
+#, php-format
+msgid "Cannot handle activity object type \"%s\"."
+msgstr ""
+
+#. TRANS: Client error displayed when posting a notice without content through the API.
+#: actions/apitimelineuser.php:378
+#, php-format
+msgid "No content for notice %d."
+msgstr ""
+
+#. TRANS: Client error displayed when using another format than AtomPub.
+#: actions/apitimelineuser.php:406
+#, php-format
+msgid "Notice with URI \"%s\" already exists."
+msgstr ""
+
+#: actions/apitimelineuser.php:437
+#, php-format
+msgid "AtomPub post with unknown attention URI %s"
+msgstr ""
+
+#. TRANS: Server error for unfinished API method showTrends.
+#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή."
-#: actions/avatarbynickname.php:64
+#. TRANS: Client error displayed when requesting user information for a non-existing user.
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
+msgid "User not found."
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:70
+msgid "No such profile"
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:145
+#, php-format
+msgid "Notices %s has favorited to on %s"
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+msgid "Can't add someone else's subscription"
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/atompubfavoritefeed.php:239
+msgid "Can only handle Favorite activities."
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+msgid "Can only fave notices."
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:256
+msgid "Unknown note."
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:263
+msgid "Already a favorite."
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
+#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+msgid "No such profile."
+msgstr "Κανένας τέτοιος χρήστης."
+
+#: actions/atompubmembershipfeed.php:144
+#, php-format
+msgid "%s group memberships"
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:147
+#, php-format
+msgid "Groups %s is a member of on %s"
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:217
+msgid "Can't add someone else's membership"
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/atompubmembershipfeed.php:241
+msgid "Can only handle Join activities."
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:256
+msgid "Unknown group."
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:263
+msgid "Already a member."
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:270
+msgid "Blocked by admin."
+msgstr ""
+
+#: actions/atompubshowfavorite.php:89
+msgid "No such favorite."
+msgstr ""
+
+#: actions/atompubshowfavorite.php:151
+msgid "Can't delete someone else's favorite"
+msgstr ""
+
+#: actions/atompubshowmembership.php:81
+msgid "No such group"
+msgstr "Δεν υπάρχει τέτοια ομάδα"
+
+#: actions/atompubshowmembership.php:90
+msgid "Not a member"
+msgstr ""
+
+#: actions/atompubshowmembership.php:115
+msgid "Method not supported"
+msgstr ""
+
+#: actions/atompubshowmembership.php:150
+msgid "Can't delete someone else's membership"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
+#, php-format
+msgid "No such profile id: %d"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription"
+msgstr ""
+
+#: actions/atompubsubscriptionfeed.php:150
+#, php-format
+msgid "People %s has subscribed to on %s"
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/atompubsubscriptionfeed.php:246
+msgid "Can only handle Follow activities."
+msgstr ""
+
+#: actions/atompubsubscriptionfeed.php:253
+msgid "Can only follow people."
+msgstr ""
+
+#: actions/atompubsubscriptionfeed.php:262
+#, php-format
+msgid "Unknown profile %s"
+msgstr ""
+
+#. TRANS: Client error displayed trying to get a non-existing attachment.
+#: actions/attachment.php:73
+#, fuzzy
+msgid "No such attachment."
+msgstr "Κανένας τέτοιος χρήστης."
+
+#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
+#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
+#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
+#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
+#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
+#: actions/grouplogo.php:86 actions/groupmembers.php:76
+#: actions/grouprss.php:91 actions/showgroup.php:116
+#, fuzzy
+msgid "No nickname."
+msgstr "Ψευδώνυμο"
+
+#. TRANS: Client error displayed trying to get an avatar without providing an avatar size.
+#: actions/avatarbynickname.php:66
msgid "No size."
msgstr ""
-#: actions/avatarbynickname.php:69
+#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size.
+#: actions/avatarbynickname.php:72
msgid "Invalid size."
msgstr ""
+#. TRANS: Title for avatar upload page.
+#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:67 actions/showgroup.php:230
-#: lib/accountsettingsaction.php:118
+#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr ""
+#. TRANS: Instruction for avatar upload page.
+#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
#: 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:185
+#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
#: actions/userauthorization.php:72 actions/userrss.php:108
msgid "User without matching profile."
msgstr ""
-#: actions/avatarsettings.php:119 actions/avatarsettings.php:197
+#. TRANS: Avatar upload page form legend.
+#. TRANS: Avatar upload page crop form legend.
+#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
#: actions/grouplogo.php:254
msgid "Avatar settings"
msgstr "Ρυθμίσεις του άβαταρ"
-#: actions/avatarsettings.php:127 actions/avatarsettings.php:205
+#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
#: actions/grouplogo.php:202 actions/grouplogo.php:262
msgid "Original"
msgstr ""
-#: actions/avatarsettings.php:142 actions/avatarsettings.php:217
+#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
#: actions/grouplogo.php:213 actions/grouplogo.php:274
msgid "Preview"
msgstr ""
-#: actions/avatarsettings.php:149 actions/showapplication.php:252
-#: lib/deleteuserform.php:66 lib/noticelist.php:657
+#. TRANS: Button on avatar upload page to delete current avatar.
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
+msgctxt "BUTTON"
msgid "Delete"
-msgstr "Διαγραφή"
+msgstr ""
-#: actions/avatarsettings.php:166 actions/grouplogo.php:236
+#. TRANS: Button on avatar upload page to upload an avatar.
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
+msgctxt "BUTTON"
msgid "Upload"
msgstr ""
-#: actions/avatarsettings.php:305
+#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar.
+#: actions/avatarsettings.php:243
+msgctxt "BUTTON"
+msgid "Crop"
+msgstr ""
+
+#. TRANS: Validation error on avatar upload form when no file was uploaded.
+#: actions/avatarsettings.php:318
msgid "No file uploaded."
msgstr ""
-#: actions/avatarsettings.php:332
+#. TRANS: Avatar upload form unstruction after uploading a file.
+#: actions/avatarsettings.php:346
msgid "Pick a square area of the image to be your avatar"
msgstr ""
-#: actions/avatarsettings.php:347 actions/grouplogo.php:380
+#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
+#: actions/avatarsettings.php:361 actions/grouplogo.php:380
msgid "Lost our file data."
msgstr ""
-#: actions/avatarsettings.php:370
+#. TRANS: Success message for having updated a user avatar.
+#: actions/avatarsettings.php:385
msgid "Avatar updated."
msgstr ""
-#: actions/avatarsettings.php:373
+#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
+#: actions/avatarsettings.php:389
msgid "Failed updating avatar."
msgstr ""
-#: actions/avatarsettings.php:397
+#. TRANS: Success message for deleting a user avatar.
+#: actions/avatarsettings.php:413
msgid "Avatar deleted."
msgstr "Η κατάσταση διεγράφη."
-#: actions/block.php:138
+#: actions/backupaccount.php:62 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#: actions/backupaccount.php:80
+msgid "Only logged-in users can backup their account."
+msgstr ""
+
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#: actions/backupaccount.php:232
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and "
+"provides an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#: actions/backupaccount.php:255
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr ""
+
+#: actions/backupaccount.php:258
+msgid "Backup your account"
+msgstr ""
+
+#. TRANS: Client error displayed when blocking a user that has already been blocked.
+#: actions/block.php:68
+#, fuzzy
+msgid "You already blocked that user."
+msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
+
+#. TRANS: Title for block user page.
+#. TRANS: Legend for block user form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#, fuzzy
+msgid "Block user"
+msgstr "Κανένας τέτοιος χρήστης."
+
+#. TRANS: Explanation of consequences when blocking a user on the block user page.
+#: actions/block.php:139
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 "
@@ -673,156 +1491,415 @@ msgstr ""
#. TRANS: Button label on the user block form.
#. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
#. TRANS: Button label on the delete notice form.
#. TRANS: Button label on the delete user form.
#. TRANS: Button label on the form to block a user from a group.
-#: actions/block.php:153 actions/deleteapplication.php:154
-#: actions/deletenotice.php:147 actions/deleteuser.php:152
-#: actions/groupblock.php:178
+#: actions/block.php:154 actions/deleteapplication.php:157
+#: actions/deletegroup.php:220 actions/deletenotice.php:155
+#: actions/deleteuser.php:152 actions/groupblock.php:178
msgctxt "BUTTON"
msgid "No"
msgstr "Κανένα"
#. TRANS: Submit button title for 'No' when blocking a user.
#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:157 actions/deleteuser.php:156
+#: actions/block.php:158 actions/deleteuser.php:156
msgid "Do not block this user"
msgstr "Διαγράψτε αυτόν τον χρήστη"
-#: actions/block.php:187
+#. TRANS: Button label on the user block form.
+#. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
+#. TRANS: Button label on the delete notice form.
+#. TRANS: Button label on the delete user form.
+#. TRANS: Button label on the form to block a user from a group.
+#: actions/block.php:161 actions/deleteapplication.php:164
+#: actions/deletegroup.php:227 actions/deletenotice.php:162
+#: actions/deleteuser.php:159 actions/groupblock.php:185
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Yes"
+msgstr "Ναι"
+
+#. TRANS: Submit button title for 'Yes' when blocking a user.
+#. TRANS: Description of the form to block a user.
+#: actions/block.php:165 lib/blockform.php:79
+#, fuzzy
+msgid "Block this user"
+msgstr "Διαγράψτε αυτόν τον χρήστη"
+
+#. TRANS: Server error displayed when blocking a user fails.
+#: actions/block.php:189
msgid "Failed to save block information."
msgstr ""
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
#. TRANS: Command exception text shown when a group is requested that does not exist.
#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87
-#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62
+#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
+#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
#: actions/groupmembers.php:83 actions/groupmembers.php:90
#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:86 actions/joingroup.php:82
+#: actions/groupunblock.php:88 actions/joingroup.php:82
#: actions/joingroup.php:93 actions/leavegroup.php:82
#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170
-#: lib/command.php:383
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
msgid "No such group."
msgstr "Κανένας τέτοιος χρήστης."
-#: actions/blockedfromgroup.php:97
+#. TRANS: Title for first page with list of users blocked from a group.
+#. TRANS: %s is a group nickname.
+#: actions/blockedfromgroup.php:101
#, php-format
msgid "%s blocked profiles"
msgstr "Προφίλ χρήστη"
-#: actions/blockedfromgroup.php:100
+#. TRANS: Title for any but the first page with list of users blocked from a group.
+#. TRANS: %1$s is a group nickname, %2$d is a page number.
+#: actions/blockedfromgroup.php:106
#, php-format
msgid "%1$s blocked profiles, page %2$d"
msgstr "%1$s και φίλοι, σελίδα 2%$d"
-#: actions/blockedfromgroup.php:115
+#. TRANS: Instructions for list of users blocked from a group.
+#: actions/blockedfromgroup.php:122
msgid "A list of the users blocked from joining this group."
msgstr ""
-#: actions/blockedfromgroup.php:288
+#. TRANS: Form legend for unblocking a user from a group.
+#: actions/blockedfromgroup.php:291
msgid "Unblock user from group"
msgstr ""
-#. TRANS: Title for the form to unblock a user.
-#: actions/blockedfromgroup.php:320 lib/unblockform.php:70
+#. TRANS: Button text for unblocking a user from a group.
+#: actions/blockedfromgroup.php:323
+msgctxt "BUTTON"
msgid "Unblock"
msgstr ""
+#. TRANS: Tooltip for button for unblocking a user from a group.
+#. TRANS: Description of the form to unblock a user.
+#: actions/blockedfromgroup.php:327 lib/unblockform.php:78
+#, fuzzy
+msgid "Unblock this user"
+msgstr "Διαγράψτε αυτόν τον χρήστη"
+
+#. TRANS: Title for mini-posting window loaded from bookmarklet.
+#. TRANS: %s is the StatusNet site name.
+#: actions/bookmarklet.php:51
+#, fuzzy, php-format
+msgid "Post to %s"
+msgstr "ομάδες του χρήστη %s"
+
+#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action.
+#: actions/confirmaddress.php:74
+#, fuzzy
+msgid "No confirmation code."
+msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης."
+
+#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action.
#: actions/confirmaddress.php:80
msgid "Confirmation code not found."
msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
-#. TRANS: Server error for an unknow address type, which can be 'email', 'jabber', or 'sms'.
-#: actions/confirmaddress.php:91
+#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action.
+#: actions/confirmaddress.php:86
+#, fuzzy
+msgid "That confirmation code is not for you!"
+msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
+
+#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'.
+#: actions/confirmaddress.php:92
#, php-format
msgid "Unrecognized address type %s."
msgstr ""
+#. TRANS: Client error for an already confirmed email/jabber/sms address.
+#: actions/confirmaddress.php:97
+#, fuzzy
+msgid "That address has already been confirmed."
+msgstr "Η διεύθυνση email υπάρχει ήδη."
+
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
#. TRANS: Server error thrown on database error updating e-mail preferences.
#. TRANS: Server error thrown on database error removing a registered e-mail address.
#. TRANS: Server error thrown on database error updating IM preferences.
#. TRANS: Server error thrown on database error removing a registered IM address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
#. TRANS: Server error thrown on database error updating SMS preferences.
#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:116 actions/emailsettings.php:331
-#: actions/emailsettings.php:477 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:174
-#: actions/profilesettings.php:283 actions/smssettings.php:308
+#: actions/confirmaddress.php:118 actions/emailsettings.php:359
+#: actions/emailsettings.php:508 actions/imsettings.php:283
+#: actions/imsettings.php:442 actions/othersettings.php:184
+#: actions/profilesettings.php:326 actions/smssettings.php:308
#: actions/smssettings.php:464
msgid "Couldn't update user."
msgstr "Απέτυχε η ενημέρωση του χρήστη."
-#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
-#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/confirmaddress.php:128 actions/emailsettings.php:437
-#: actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
-msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης."
+#. TRANS: Server error displayed when an address confirmation code deletion from the
+#. TRANS: database fails in the contact address confirmation action.
+#: actions/confirmaddress.php:132
+msgid "Could not delete address confirmation."
+msgstr ""
-#: actions/confirmaddress.php:146
+#. TRANS: Title for the contact address confirmation action.
+#: actions/confirmaddress.php:150
msgid "Confirm address"
msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση."
-#: actions/confirmaddress.php:161
+#. TRANS: Success message for the contact address confirmation action.
+#. TRANS: %s can be 'email', 'jabber', or 'sms'.
+#: actions/confirmaddress.php:166
#, php-format
msgid "The address \"%s\" has been confirmed for your account."
msgstr ""
-#: actions/conversation.php:99
+#. TRANS: Title for page with a conversion (multiple notices in context).
+#: actions/conversation.php:96
msgid "Conversation"
msgstr "Συζήτηση"
-#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
+#. TRANS: Header on conversation page. Hidden by default (h2).
+#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
msgid "Notices"
msgstr ""
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr ""
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr ""
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:474
+msgid "Delete account"
+msgstr ""
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:239 actions/register.php:441
+msgid "Confirm"
+msgstr "Επιβεβαίωση"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr ""
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete an application while not logged in.
+#: actions/deleteapplication.php:62
+#, fuzzy
+msgid "You must be logged in to delete an application."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#. TRANS: Client error displayed trying to delete an application that does not exist.
+#: actions/deleteapplication.php:71
+#, fuzzy
+msgid "Application not found."
+msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
+
+#. TRANS: Client error displayed trying to delete an application the current user does not own.
+#. TRANS: Client error displayed trying to edit an application while not being its owner.
+#: actions/deleteapplication.php:79 actions/editapplication.php:78
+#: actions/showapplication.php:94
+#, fuzzy
+msgid "You are not the owner of this application."
+msgstr "Ομάδες με τα περισσότερα μέλη"
+
#. TRANS: Client error text when there is a problem with the session token.
-#: actions/deleteapplication.php:102 actions/editapplication.php:127
-#: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1315
+#: actions/deleteapplication.php:102 actions/editapplication.php:131
+#: actions/newapplication.php:114 actions/showapplication.php:118
+#: lib/action.php:1409
msgid "There was a problem with your session token."
msgstr ""
-#: actions/deleteapplication.php:149
+#. TRANS: Title for delete application page.
+#. TRANS: Fieldset legend on delete application page.
+#: actions/deleteapplication.php:124 actions/deleteapplication.php:149
+#, fuzzy
+msgid "Delete application"
+msgstr "Δεν υπάρχει τέτοιο σελίδα."
+
+#. TRANS: Confirmation text on delete application page.
+#: actions/deleteapplication.php:152
msgid ""
"Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user "
"connections."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting an application.
+#: actions/deleteapplication.php:161
+#, fuzzy
+msgid "Do not delete this application"
+msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
+
#. TRANS: Submit button title for 'Yes' when deleting an application.
-#: actions/deleteapplication.php:164
+#: actions/deleteapplication.php:167
msgid "Delete this application"
msgstr "Διαγράψτε αυτόν τον χρήστη"
-#: actions/deletenotice.php:71
-msgid "Can't delete this notice."
-msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;"
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
+msgid "You must be logged in to delete a group."
+msgstr ""
-#: actions/deletenotice.php:103
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+msgid "No nickname or ID."
+msgstr "Ψευδώνυμο"
+
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
+msgid "You are not allowed to delete this group."
+msgstr ""
+
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
+#, php-format
+msgid "Could not delete group %s."
+msgstr ""
+
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
+#, php-format
+msgid "Deleted group %s"
+msgstr ""
+
+#. TRANS: Title of delete group page.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
+msgid "Delete group"
+msgstr ""
+
+#. TRANS: Warning in form for deleleting a group.
+#: actions/deletegroup.php:206
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:224
+msgid "Do not delete this group"
+msgstr ""
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:231
+msgid "Delete this group"
+msgstr ""
+
+#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
+#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/tagother.php:33 actions/unsubscribe.php:52
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/settingsaction.php:72
+#, fuzzy
+msgid "Not logged in."
+msgstr "Ήδη συνδεδεμένος."
+
+#. TRANS: Instructions for deleting a notice.
+#: actions/deletenotice.php:110
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
+#. TRANS: Page title when deleting a notice.
+#. TRANS: Fieldset legend for the delete notice form.
+#: actions/deletenotice.php:117 actions/deletenotice.php:148
msgid "Delete notice"
msgstr "Διαγραφή μηνύματος"
-#: actions/deletenotice.php:144
+#. TRANS: Message for the delete notice form.
+#: actions/deletenotice.php:152
msgid "Are you sure you want to delete this notice?"
msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;"
#. TRANS: Submit button title for 'No' when deleting a notice.
-#: actions/deletenotice.php:151
+#: actions/deletenotice.php:159
msgid "Do not delete this notice"
msgstr "Διαγραφή μηνύματος"
+#. TRANS: Submit button title for 'Yes' when deleting a notice.
+#: actions/deletenotice.php:166 lib/noticelist.php:673
+#, fuzzy
+msgid "Delete this notice"
+msgstr "Διαγραφή μηνύματος"
+
+#: actions/deleteuser.php:67
+#, fuzzy
+msgid "You cannot delete users."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr ""
@@ -840,48 +1917,78 @@ msgstr ""
#. TRANS: Submit button title for 'Yes' when deleting a user.
#: actions/deleteuser.php:163 lib/deleteuserform.php:77
msgid "Delete this user"
-msgstr "Διαγράψτε αυτόν τον χρήστη"
+msgstr "Διαγραφή αυτού του χρήστη"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139
+#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
msgid "Design"
msgstr ""
#: actions/designadminpanel.php:74
-msgid "Design settings for this StatusNet site."
+msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:318
+#: actions/designadminpanel.php:335
msgid "Invalid logo URL."
msgstr ""
-#: actions/designadminpanel.php:426
+#: actions/designadminpanel.php:340
+msgid "Invalid SSL logo URL."
+msgstr ""
+
+#: actions/designadminpanel.php:344
+#, fuzzy, php-format
+msgid "Theme not available: %s."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
+#: actions/designadminpanel.php:448
msgid "Change logo"
msgstr "Αλλαγή χρωμάτων"
-#: actions/designadminpanel.php:431
+#: actions/designadminpanel.php:453
msgid "Site logo"
msgstr ""
-#: actions/designadminpanel.php:461
+#: actions/designadminpanel.php:457
+msgid "SSL logo"
+msgstr ""
+
+#: actions/designadminpanel.php:469
+#, fuzzy
+msgid "Change theme"
+msgstr "Αλλαγή"
+
+#: actions/designadminpanel.php:486
+#, fuzzy
+msgid "Site theme"
+msgstr "Αλλαγή"
+
+#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr ""
-#: actions/designadminpanel.php:471
+#: actions/designadminpanel.php:493
+#, fuzzy
+msgid "Custom theme"
+msgstr "Αλλαγή"
+
+#: actions/designadminpanel.php:497
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
-#: actions/designadminpanel.php:486 lib/designsettings.php:101
+#. TRANS: Fieldset legend on profile design page.
+#: actions/designadminpanel.php:512 lib/designsettings.php:98
msgid "Change background image"
msgstr ""
-#: actions/designadminpanel.php:491 actions/designadminpanel.php:574
-#: lib/designsettings.php:178
+#. TRANS: Label on profile design page for setting a profile page background colour.
+#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: lib/designsettings.php:183
msgid "Background"
msgstr ""
-#: actions/designadminpanel.php:496
+#: actions/designadminpanel.php:522
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -889,64 +1996,85 @@ msgid ""
msgstr ""
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:527 lib/designsettings.php:139
+#: actions/designadminpanel.php:553
msgid "On"
msgstr ""
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:544 lib/designsettings.php:155
+#: actions/designadminpanel.php:570
msgid "Off"
msgstr ""
-#: actions/designadminpanel.php:545 lib/designsettings.php:156
+#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
+#. TRANS: use of the uploaded profile image.
+#: actions/designadminpanel.php:571 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr ""
-#: actions/designadminpanel.php:550 lib/designsettings.php:161
+#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
+#: actions/designadminpanel.php:576 lib/designsettings.php:165
msgid "Tile background image"
msgstr ""
-#: actions/designadminpanel.php:564 lib/designsettings.php:170
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: actions/designadminpanel.php:590 lib/designsettings.php:175
msgid "Change colours"
msgstr "Αλλαγή χρωμάτων"
-#: actions/designadminpanel.php:587 lib/designsettings.php:191
+#. TRANS: Label on profile design page for setting a profile page content colour.
+#: actions/designadminpanel.php:613 lib/designsettings.php:197
msgid "Content"
msgstr "Περιεχόμενο"
-#: actions/designadminpanel.php:600 lib/designsettings.php:204
+#. TRANS: Label on profile design page for setting a profile page sidebar colour.
+#: actions/designadminpanel.php:626 lib/designsettings.php:211
msgid "Sidebar"
msgstr ""
-#: actions/designadminpanel.php:613 lib/designsettings.php:217
+#. TRANS: Label on profile design page for setting a profile page text colour.
+#: actions/designadminpanel.php:639 lib/designsettings.php:225
msgid "Text"
msgstr ""
-#: actions/designadminpanel.php:626 lib/designsettings.php:230
+#. TRANS: Label on profile design page for setting a profile page links colour.
+#: actions/designadminpanel.php:652 lib/designsettings.php:239
msgid "Links"
msgstr "Σύνδεσμοι"
-#: actions/designadminpanel.php:651
+#: actions/designadminpanel.php:677
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:655
+#: actions/designadminpanel.php:681
msgid "Custom CSS"
msgstr ""
-#: actions/designadminpanel.php:676 lib/designsettings.php:247
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: actions/designadminpanel.php:702 lib/designsettings.php:257
msgid "Use defaults"
msgstr ""
-#: actions/designadminpanel.php:677 lib/designsettings.php:248
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: actions/designadminpanel.php:703 lib/designsettings.php:259
msgid "Restore default designs"
msgstr ""
-#: actions/designadminpanel.php:683 lib/designsettings.php:254
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: actions/designadminpanel.php:709 lib/designsettings.php:267
msgid "Reset back to default"
msgstr ""
-#: actions/designadminpanel.php:686 lib/designsettings.php:257
+#. TRANS: Submit button title.
+#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
+#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
+#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
+#: lib/applicationeditform.php:357
+#, fuzzy
+msgid "Save"
+msgstr "Αποθήκευση"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: actions/designadminpanel.php:712 lib/designsettings.php:272
msgid "Save design"
msgstr ""
@@ -963,71 +2091,134 @@ msgstr ""
msgid "No such document \"%s\""
msgstr ""
+#. TRANS: Title for "Edit application" form.
+#. TRANS: Form legend.
+#: actions/editapplication.php:54 lib/applicationeditform.php:129
+msgid "Edit application"
+msgstr ""
+
+#. TRANS: Client error displayed trying to edit an application while not logged in.
#: actions/editapplication.php:66
msgid "You must be logged in to edit an application."
msgstr ""
-#: actions/editapplication.php:161
+#. TRANS: Client error displayed trying to edit an application that does not exist.
+#: actions/editapplication.php:83 actions/showapplication.php:87
+#, fuzzy
+msgid "No such application."
+msgstr "Δεν υπάρχει τέτοιο σελίδα."
+
+#. TRANS: Instructions for "Edit application" form.
+#: actions/editapplication.php:167
msgid "Use this form to edit your application."
msgstr ""
-#: actions/editapplication.php:177 actions/newapplication.php:159
+#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:163
msgid "Name is required."
msgstr ""
-#: actions/editapplication.php:194
+#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:169
+msgid "Name is too long (maximum 255 characters)."
+msgstr ""
+
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:166
+#, fuzzy
+msgid "Name already in use. Try another one."
+msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
+
+#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:172
+#, fuzzy
+msgid "Description is required."
+msgstr "Περιγραφή"
+
+#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
+#: actions/editapplication.php:208
msgid "Source URL is too long."
msgstr ""
-#: actions/editapplication.php:203 actions/newapplication.php:188
+#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
+#: actions/editapplication.php:215 actions/newapplication.php:193
+#, fuzzy
+msgid "Source URL is not valid."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
+#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
+#: actions/editapplication.php:219 actions/newapplication.php:196
msgid "Organization is required."
msgstr ""
-#: actions/editapplication.php:209 actions/newapplication.php:194
+#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
+#: actions/editapplication.php:223 actions/newapplication.php:199
+msgid "Organization is too long (maximum 255 characters)."
+msgstr ""
+
+#: actions/editapplication.php:226 actions/newapplication.php:202
msgid "Organization homepage is required."
msgstr ""
-#: actions/editapplication.php:218 actions/newapplication.php:206
+#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
+#: actions/editapplication.php:237 actions/newapplication.php:214
msgid "Callback is too long."
msgstr ""
-#: actions/editapplication.php:225 actions/newapplication.php:215
+#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
+#: actions/editapplication.php:245 actions/newapplication.php:223
msgid "Callback URL is not valid."
msgstr ""
-#: actions/editapplication.php:258
+#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
+#: actions/editapplication.php:282
msgid "Could not update application."
msgstr "Απέτυχε η ενημέρωση του χρήστη."
-#: actions/editgroup.php:107 actions/editgroup.php:172
+#. TRANS: Title for form to edit a group. %s is a group nickname.
+#: actions/editgroup.php:55
+#, fuzzy, php-format
+msgid "Edit %s group"
+msgstr "Επεξεργασία ιδιοτήτων της ομάδας %s"
+
+#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed trying to create a group while not logged in.
+#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#, fuzzy
+msgid "You must be logged in to create a group."
+msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
+
+#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#: actions/editgroup.php:110 actions/editgroup.php:176
#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
msgid "You must be an admin to edit the group."
msgstr ""
-#: actions/editgroup.php:158
+#. TRANS: Form instructions for group edit form.
+#: actions/editgroup.php:161
msgid "Use this form to edit the group."
msgstr ""
-#: actions/editgroup.php:205 actions/newgroup.php:145
-#, php-format
-msgid "description is too long (max %d chars)."
-msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)."
-
-#: actions/editgroup.php:228 actions/newgroup.php:168
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#: actions/editgroup.php:239 actions/newgroup.php:186
#, php-format
msgid "Invalid alias: \"%s\""
msgstr ""
-#: actions/editgroup.php:258
+#. TRANS: Server error displayed when editing a group fails.
+#: actions/editgroup.php:272
msgid "Could not update group."
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
+#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:264 classes/User_group.php:514
+#: actions/editgroup.php:279 classes/User_group.php:534
msgid "Could not create aliases."
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
-#: actions/editgroup.php:280
+#. TRANS: Group edit form success message.
+#: actions/editgroup.php:296
msgid "Options saved."
msgstr ""
@@ -1043,8 +2234,14 @@ msgstr "Ρυθμίσεις του άβαταρ"
msgid "Manage how you get email from %%site.name%%."
msgstr ""
+#. TRANS: Form legend for e-mail settings form.
+#. TRANS: Field label for e-mail address input in e-mail settings form.
+#: actions/emailsettings.php:107 actions/emailsettings.php:133
+msgid "Email address"
+msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου"
+
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:112
+#: actions/emailsettings.php:113
msgid "Current confirmed email address."
msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση."
@@ -1053,14 +2250,14 @@ msgstr "Τρέχουσα επιβεβαιωμένη email διεύθυνση."
#. TRANS: Button label to remove a confirmed IM address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:115 actions/emailsettings.php:162
+#: actions/emailsettings.php:116 actions/emailsettings.php:183
#: actions/imsettings.php:116 actions/smssettings.php:124
#: actions/smssettings.php:180
msgctxt "BUTTON"
msgid "Remove"
msgstr ""
-#: actions/emailsettings.php:122
+#: actions/emailsettings.php:123
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -1074,85 +2271,139 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:139
+#: actions/emailsettings.php:140
msgid "Email address, like \"UserName@example.org\""
msgstr "Διεύθυνση email, π.χ: \"UserName@example.org\""
+#. TRANS: Button label for adding an e-mail address in e-mail settings form.
+#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding a SMS phone number in SMS settings form.
+#: actions/emailsettings.php:144 actions/imsettings.php:151
+#: actions/smssettings.php:162
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Add"
+msgstr "Προσθήκη"
+
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:151 actions/smssettings.php:171
+#: actions/emailsettings.php:152 actions/smssettings.php:171
msgid "Incoming email"
msgstr "Εισερχόμενο email"
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:158
+msgid "I want to post notices by email."
+msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email"
+
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:159 actions/smssettings.php:178
+#: actions/emailsettings.php:180 actions/smssettings.php:178
msgid "Send email to this address to post new notices."
msgstr ""
-#. TRANS: Instructions for incoming e-mail address input form.
+#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:168 actions/smssettings.php:186
+#: actions/emailsettings.php:189 actions/smssettings.php:186
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
+#. TRANS: Instructions for incoming e-mail address input form.
+#: actions/emailsettings.php:193
+msgid ""
+"To send notices via email, we need to create a unique email address for you "
+"on this server:"
+msgstr ""
+
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:172 actions/smssettings.php:189
+#: actions/emailsettings.php:199 actions/smssettings.php:189
msgctxt "BUTTON"
msgid "New"
msgstr ""
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:178
+#: actions/emailsettings.php:208
msgid "Email preferences"
msgstr "Διευθύνσεις email"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:184
+#: actions/emailsettings.php:216
msgid "Send me notices of new subscriptions through email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:190
+#: actions/emailsettings.php:222
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:197
+#: actions/emailsettings.php:229
msgid "Send me email when someone sends me a private message."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:203
+#: actions/emailsettings.php:235
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:209
+#: actions/emailsettings.php:241
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
-msgid "I want to post notices by email."
-msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email"
+#: actions/emailsettings.php:247
+#, fuzzy
+msgid "Publish a MicroID for my email address."
+msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email."
+
+#. TRANS: Confirmation message for successful e-mail preferences save.
+#: actions/emailsettings.php:368
+#, fuzzy
+msgid "Email preferences saved."
+msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
+
+#. TRANS: Message given saving e-mail address without having provided one.
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "No email address."
+msgstr "Διευθύνσεις email"
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:365
+#: actions/emailsettings.php:396
msgid "Cannot normalize that email address"
msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης"
+#. TRANS: Message given saving e-mail address that not valid.
+#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/siteadminpanel.php:144
+#, fuzzy
+msgid "Not a valid email address."
+msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email."
+
+#. TRANS: Message given saving e-mail address that is already set.
+#: actions/emailsettings.php:405
+#, fuzzy
+msgid "That is already your email address."
+msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email."
+
+#. TRANS: Message given saving e-mail address that is already set for another user.
+#: actions/emailsettings.php:409
+#, fuzzy
+msgid "That email address already belongs to another user."
+msgstr "Η διεύθυνση email υπάρχει ήδη."
+
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
#. TRANS: Server error thrown on database error adding IM confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:395 actions/imsettings.php:351
+#: actions/emailsettings.php:426 actions/imsettings.php:351
#: actions/smssettings.php:373
msgid "Couldn't insert confirmation code."
msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:402
+#: actions/emailsettings.php:433
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."
@@ -1161,31 +2412,82 @@ msgstr ""
"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης "
"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε."
+#. TRANS: Message given canceling e-mail address confirmation that is not pending.
+#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
+#: actions/emailsettings.php:454 actions/imsettings.php:386
+#: actions/smssettings.php:408
+#, fuzzy
+msgid "No pending confirmation to cancel."
+msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυτίζονται."
+
+#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
+#: actions/emailsettings.php:459
+#, fuzzy
+msgid "That is the wrong email address."
+msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email."
+
+#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
+#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
+#: actions/emailsettings.php:468 actions/smssettings.php:422
+msgid "Couldn't delete email confirmation."
+msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης."
+
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:442
+#: actions/emailsettings.php:473
msgid "Email confirmation cancelled."
msgstr "Επιβεβαίωση διεύθυνσης email"
+#. TRANS: Message given trying to remove an e-mail address that is not
+#. TRANS: registered for the active user.
+#: actions/emailsettings.php:493
+#, fuzzy
+msgid "That is not your email address."
+msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email."
+
+#. TRANS: Message given after successfully removing a registered e-mail address.
+#: actions/emailsettings.php:514
+#, fuzzy
+msgid "The email address was removed."
+msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε."
+
+#: actions/emailsettings.php:528 actions/smssettings.php:568
+#, fuzzy
+msgid "No incoming email address."
+msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε."
+
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:508 actions/emailsettings.php:532
+#: actions/emailsettings.php:540 actions/emailsettings.php:565
#: actions/smssettings.php:578 actions/smssettings.php:602
msgid "Couldn't update user record."
msgstr "Απέτυχε η ενημέρωση εγγραφής του χρήστη."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:512 actions/smssettings.php:581
+#: actions/emailsettings.php:544 actions/smssettings.php:581
msgid "Incoming email address removed."
msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε."
+#. TRANS: Message given after successfully adding an incoming e-mail address.
+#: actions/emailsettings.php:569 actions/smssettings.php:605
+#, fuzzy
+msgid "New incoming email address added."
+msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε."
+
#: actions/favor.php:79
msgid "This notice is already a favorite!"
msgstr ""
-#: actions/favor.php:92 lib/disfavorform.php:140
+#: actions/favor.php:92 lib/disfavorform.php:144
msgid "Disfavor favorite"
msgstr ""
+#: actions/favorited.php:65 lib/popularnoticesection.php:62
+#: lib/publicgroupnav.php:93
+#, fuzzy
+msgid "Popular notices"
+msgstr "Δημοφιλή"
+
#: actions/favorited.php:67
#, php-format
msgid "Popular notices, page %d"
@@ -1213,7 +2515,7 @@ msgid ""
msgstr ""
#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:115
+#: lib/personalgroupnav.php:118
#, php-format
msgid "%s's favorite notices"
msgstr ""
@@ -1223,6 +2525,12 @@ msgstr ""
msgid "Updates favored by %1$s on %2$s!"
msgstr ""
+#: actions/featured.php:69 lib/featureduserssection.php:87
+#: lib/publicgroupnav.php:89
+#, fuzzy
+msgid "Featured users"
+msgstr "Προτεινόμενα"
+
#: actions/featured.php:71
#, php-format
msgid "Featured users, page %d"
@@ -1233,6 +2541,11 @@ msgstr ""
msgid "A selection of some great users on %s"
msgstr ""
+#: actions/file.php:34
+#, fuzzy
+msgid "No notice ID."
+msgstr "Μήνυμα"
+
#: actions/file.php:38
msgid "No notice."
msgstr "Διαγραφή μηνύματος"
@@ -1253,6 +2566,11 @@ msgstr ""
msgid "User being listened to does not exist."
msgstr ""
+#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#, fuzzy
+msgid "You can use the local subscription!"
+msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
+
#: actions/finishremotesubscribe.php:99
msgid "That user has blocked you from subscribing."
msgstr ""
@@ -1261,10 +2579,20 @@ msgstr ""
msgid "You are not authorized."
msgstr ""
+#: actions/finishremotesubscribe.php:113
+#, fuzzy
+msgid "Could not convert request token to access token."
+msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης."
+
#: actions/finishremotesubscribe.php:118
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#, fuzzy
+msgid "Error updating remote profile."
+msgstr "Απέτυχε η αποθήκευση του προφίλ."
+
#: actions/getfile.php:79
msgid "No such file."
msgstr "Κανένας τέτοιος χρήστης."
@@ -1273,27 +2601,41 @@ msgstr "Κανένας τέτοιος χρήστης."
msgid "Cannot read file."
msgstr "Απέτυχε η αποθήκευση του προφίλ."
+#: actions/grantrole.php:62 actions/revokerole.php:62
+#, fuzzy
+msgid "Invalid role."
+msgstr "Μήνυμα"
+
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
+#: actions/grantrole.php:75
+#, fuzzy
+msgid "You cannot grant user roles on this site."
+msgstr "Ομάδες με τα περισσότερα μέλη"
+
#: actions/grantrole.php:82
msgid "User already has this role."
msgstr ""
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
+#. TRANS: Client error displayed trying a change a subscription without providing a profile.
#: actions/groupblock.php:71 actions/groupunblock.php:71
-#: actions/makeadmin.php:71 actions/subedit.php:46
+#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr ""
-#: actions/groupblock.php:76 actions/groupunblock.php:76
-#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
+#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
+#: actions/groupblock.php:76 actions/groupunblock.php:77
+#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
#: actions/unsubscribe.php:84 lib/profileformaction.php:86
msgid "No profile with that ID."
msgstr ""
-#: actions/groupblock.php:81 actions/groupunblock.php:81
+#: actions/groupblock.php:81 actions/groupunblock.php:82
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr ""
@@ -1306,6 +2648,11 @@ msgstr ""
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:134 actions/groupmembers.php:364
msgid "Block user from group"
msgstr ""
@@ -1350,20 +2697,66 @@ msgid ""
"palette of your choice."
msgstr ""
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
+#: lib/designsettings.php:405 lib/designsettings.php:427
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
+#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#, fuzzy
+msgid "Design preferences saved."
+msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
+
+#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#, fuzzy
+msgid "Group logo"
+msgstr "Ομάδα"
+
#: actions/grouplogo.php:153
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr ""
+#: actions/grouplogo.php:236
+msgid "Upload"
+msgstr ""
+
+#: actions/grouplogo.php:289
+#, fuzzy
+msgid "Crop"
+msgstr "Ομάδα"
+
#: actions/grouplogo.php:365
msgid "Pick a square area of the image to be the logo."
msgstr ""
+#: actions/grouplogo.php:399
+#, fuzzy
+msgid "Logo updated."
+msgstr "Αποσύνδεση"
+
#: actions/grouplogo.php:401
msgid "Failed updating logo."
msgstr ""
+#. TRANS: Title of the page showing group members.
+#. TRANS: %s is the name of the group.
+#: actions/groupmembers.php:102
+#, fuzzy, php-format
+msgid "%s group members"
+msgstr "ομάδες των χρηστών %s"
+
+#. TRANS: Title of the page showing group members.
+#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
+#: actions/groupmembers.php:107
+#, fuzzy, php-format
+msgid "%1$s group members, page %2$d"
+msgstr "%1$s και φίλοι, σελίδα 2%$d"
+
#: actions/groupmembers.php:122
msgid "A list of the users in this group."
msgstr ""
@@ -1378,6 +2771,12 @@ msgctxt "BUTTON"
msgid "Block"
msgstr ""
+#. TRANS: Submit button title.
+#: actions/groupmembers.php:403
+msgctxt "TOOLTIP"
+msgid "Block this user"
+msgstr ""
+
#: actions/groupmembers.php:498
msgid "Make user an admin of the group"
msgstr ""
@@ -1394,21 +2793,18 @@ msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
-#. TRANS: Message is used as link title. %s is a user nickname.
-#. TRANS: Title in atom group notice feed. %s is a group name.
-#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/grouprss.php:139 actions/userrss.php:94
-#: lib/atomgroupnoticefeed.php:63 lib/atomusernoticefeed.php:69
-#, php-format
-msgid "%s timeline"
-msgstr "χρονοδιάγραμμα του χρήστη %s"
-
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
#: actions/grouprss.php:142
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr ""
+#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#, fuzzy
+msgid "Groups"
+msgstr "Ομάδα"
+
#: actions/groups.php:64
#, php-format
msgid "Groups, page %d"
@@ -1424,6 +2820,11 @@ msgid ""
"%%%%)"
msgstr ""
+#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#, fuzzy
+msgid "Create a new group"
+msgstr "Δημιουργία νέου λογαριασμού"
+
#: actions/groupsearch.php:52
#, php-format
msgid ""
@@ -1454,15 +2855,18 @@ msgid ""
"action.newgroup%%) yourself!"
msgstr ""
-#: actions/groupunblock.php:91
+#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
+#: actions/groupunblock.php:94
msgid "Only an admin can unblock group members."
msgstr ""
-#: actions/groupunblock.php:95
+#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
+#: actions/groupunblock.php:99
msgid "User is not blocked from group."
msgstr ""
-#: actions/groupunblock.php:128 actions/unblock.php:86
+#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
+#: actions/groupunblock.php:131 actions/unblock.php:86
msgid "Error removing the block."
msgstr ""
@@ -1481,6 +2885,12 @@ msgid ""
"doc.im%%). Configure your address and settings below."
msgstr ""
+#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:94
+#, fuzzy
+msgid "IM is not available."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
#. TRANS: Form legend for IM settings form.
#. TRANS: Field label for IM address input in IM settings form.
#: actions/imsettings.php:106 actions/imsettings.php:136
@@ -1491,6 +2901,18 @@ msgstr "Διευθύνσεις email"
msgid "Current confirmed Jabber/GTalk address."
msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυνση."
+#. TRANS: Form note in IM settings form.
+#. TRANS: %s is the IM address set for the site.
+#: actions/imsettings.php:124
+#, 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 στη "
+"λίστα φίλων?)"
+
#. TRANS: IM address input field instructions in IM settings form.
#. TRANS: %s is the IM address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
@@ -1523,8 +2945,14 @@ msgstr ""
msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
msgstr ""
+#. TRANS: Checkbox label in IM preferences form.
+#: actions/imsettings.php:182
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/GTalk address."
+msgstr "Τρέχουσα επιβεβαιωμένη Jabber/GTalk διεύθυνση."
+
#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:180
+#: actions/imsettings.php:290 actions/othersettings.php:190
msgid "Preferences saved."
msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
@@ -1538,11 +2966,23 @@ msgstr ""
msgid "Cannot normalize that Jabber ID"
msgstr "Αδυναμία κανονικοποίησης του Jabber ID"
+#. TRANS: Message given saving IM address that not valid.
+#: actions/imsettings.php:325
+#, fuzzy
+msgid "Not a valid Jabber ID"
+msgstr "Αδυναμία κανονικοποίησης του Jabber ID"
+
#. TRANS: Message given saving IM address that is already set.
#: actions/imsettings.php:329
msgid "That is already your Jabber ID."
msgstr ""
+#. TRANS: Message given saving IM address that is already set for another user.
+#: actions/imsettings.php:333
+#, fuzzy
+msgid "Jabber ID already belongs to another user."
+msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
+
#. TRANS: Message given saving valid IM address that is to be confirmed.
#. TRANS: %s is the IM address set for the site.
#: actions/imsettings.php:361
@@ -1559,12 +2999,30 @@ msgstr ""
msgid "That is the wrong IM address."
msgstr ""
+#. TRANS: Server error thrown on database error canceling IM address confirmation.
+#: actions/imsettings.php:400
+#, fuzzy
+msgid "Couldn't delete IM confirmation."
+msgstr "Απέτυχε η διαγραφή email επιβεβαίωσης."
+
+#. TRANS: Message given after successfully canceling IM address confirmation.
+#: actions/imsettings.php:405
+#, fuzzy
+msgid "IM confirmation cancelled."
+msgstr "Η επιβεβαίωση ακυρώθηκε."
+
#. TRANS: Message given trying to remove an IM address that is not
#. TRANS: registered for the active user.
#: actions/imsettings.php:427
msgid "That is not your Jabber ID."
msgstr ""
+#. TRANS: Message given after successfully removing a registered IM address.
+#: actions/imsettings.php:450
+#, fuzzy
+msgid "The IM address was removed."
+msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε."
+
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
@@ -1579,58 +3037,129 @@ msgstr ""
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
-#: actions/invite.php:39
+#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
+#: actions/invite.php:40
msgid "Invites have been disabled."
msgstr ""
-#. TRANS: Whois output.
-#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
-#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430
+#. TRANS: Client error displayed when trying to sent invites while not logged in.
+#. TRANS: %s is the StatusNet site name.
+#: actions/invite.php:44
+#, fuzzy, php-format
+msgid "You must be logged in to invite other users to use %s."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#. TRANS: Form validation message when providing an e-mail address that does not validate.
+#. TRANS: %s is an invalid e-mail address.
+#: actions/invite.php:77
#, php-format
+msgid "Invalid email address: %s."
+msgstr ""
+
+#. TRANS: Page title when invitations have been sent.
+#: actions/invite.php:116
+msgid "Invitations sent"
+msgstr ""
+
+#. TRANS: Page title when inviting potential users.
+#: actions/invite.php:119
+#, fuzzy
+msgid "Invite new users"
+msgstr "Νέοι χρήστες"
+
+#. TRANS: Message displayed inviting users to use a StatusNet site while the inviting user
+#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
+#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
+#. TRANS: Followed by a bullet list.
+#: actions/invite.php:139
+msgid "You are already subscribed to this user:"
+msgid_plural "You are already subscribed to these users:"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
+#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
+#: actions/invite.php:145 actions/invite.php:159
+#, php-format
+msgctxt "INVITE"
msgid "%1$s (%2$s)"
msgstr ""
-#: actions/invite.php:136
-msgid ""
+#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
+#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
+#. TRANS: reported already present people. Followed by a bullet list.
+#: actions/invite.php:153
+msgid "This person is already a user and you were automatically subscribed:"
+msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
-msgstr ""
+msgstr[0] ""
+msgstr[1] ""
-#: actions/invite.php:144
-msgid "Invitation(s) sent to the following people:"
-msgstr ""
+#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
+#. TRANS: based on the number of invitations sent. Followed by a bullet list of
+#. TRANS: e-mail addresses to which invitations were sent.
+#: actions/invite.php:167
+msgid "Invitation sent to the following person:"
+msgid_plural "Invitations sent to the following people:"
+msgstr[0] ""
+msgstr[1] ""
-#: actions/invite.php:150
+#. TRANS: Generic message displayed after sending out one or more invitations to
+#. TRANS: people to join a StatusNet site.
+#: actions/invite.php:177
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:187
-msgid "Email addresses"
-msgstr "Διευθύνσεις email"
+#. TRANS: Form instructions.
+#: actions/invite.php:190
+#, fuzzy
+msgid ""
+"Use this form to invite your friends and colleagues to use this service."
+msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s"
-#: actions/invite.php:189
+#. TRANS: Field label for a list of e-mail addresses.
+#: actions/invite.php:217
+msgid "Email addresses"
+msgstr "Διευθύνσεις ηλεκτρονικού ταχυδρομείου:"
+
+#. TRANS: Tooltip for field label for a list of e-mail addresses.
+#: actions/invite.php:220
msgid "Addresses of friends to invite (one per line)"
msgstr "Διευθύνσεις φίλων σου που θες να προσκαλέσεις (μία ανά γραμμή)"
-#: actions/invite.php:194
+#. TRANS: Field label for a personal message to send to invitees.
+#: actions/invite.php:224
+#, fuzzy
+msgid "Personal message"
+msgstr "Προσωπικά"
+
+#. TRANS: Tooltip for field label for a personal message to send to invitees.
+#: actions/invite.php:227
msgid "Optionally add a personal message to the invitation."
msgstr ""
#. TRANS: Send button for inviting friends
-#: actions/invite.php:198
+#: actions/invite.php:231
msgctxt "BUTTON"
msgid "Send"
msgstr ""
-#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English.
-#: actions/invite.php:228
+#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
+#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
+#. TRANS: the StatusNet sitename.
+#: actions/invite.php:263
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr ""
-#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English.
-#: actions/invite.php:231
+#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral
+#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, %2$s is the
+#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
+#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
+#. TRANS: to register with the StatusNet site.
+#: actions/invite.php:270
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -1665,10 +3194,6 @@ msgstr ""
msgid "You must be logged in to join a group."
msgstr ""
-#: actions/joingroup.php:88 actions/leavegroup.php:88
-msgid "No nickname or ID."
-msgstr "Ψευδώνυμο"
-
#: actions/joingroup.php:141
#, php-format
msgid "%1$s joined group %2$s"
@@ -1678,11 +3203,121 @@ msgstr ""
msgid "You must be logged in to leave a group."
msgstr ""
+#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
+#: actions/leavegroup.php:100 lib/command.php:386
+#, fuzzy
+msgid "You are not a member of that group."
+msgstr "Δεν είστε μέλος καμίας ομάδας."
+
#: actions/leavegroup.php:137
#, php-format
msgid "%1$s left group %2$s"
msgstr ""
+#. TRANS: User admin panel title
+#: actions/licenseadminpanel.php:56
+msgctxt "TITLE"
+msgid "License"
+msgstr ""
+
+#: actions/licenseadminpanel.php:67
+msgid "License for this StatusNet site"
+msgstr ""
+
+#: actions/licenseadminpanel.php:139
+msgid "Invalid license selection."
+msgstr ""
+
+#: actions/licenseadminpanel.php:149
+msgid ""
+"You must specify the owner of the content when using the All Rights Reserved "
+"license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:156
+msgid "Invalid license title. Maximum length is 255 characters."
+msgstr ""
+
+#: actions/licenseadminpanel.php:168
+msgid "Invalid license URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:171
+msgid "Invalid license image URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:179
+msgid "License URL must be blank or a valid URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:187
+msgid "License image must be blank or valid URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:239
+msgid "License selection"
+msgstr ""
+
+#: actions/licenseadminpanel.php:245
+msgid "Private"
+msgstr ""
+
+#: actions/licenseadminpanel.php:246
+msgid "All Rights Reserved"
+msgstr ""
+
+#: actions/licenseadminpanel.php:247
+msgid "Creative Commons"
+msgstr ""
+
+#: actions/licenseadminpanel.php:252
+msgid "Type"
+msgstr ""
+
+#: actions/licenseadminpanel.php:254
+msgid "Select license"
+msgstr ""
+
+#: actions/licenseadminpanel.php:268
+msgid "License details"
+msgstr ""
+
+#: actions/licenseadminpanel.php:274
+msgid "Owner"
+msgstr ""
+
+#: actions/licenseadminpanel.php:275
+msgid "Name of the owner of the site's content (if applicable)."
+msgstr ""
+
+#: actions/licenseadminpanel.php:283
+msgid "License Title"
+msgstr ""
+
+#: actions/licenseadminpanel.php:284
+msgid "The title of the license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:292
+msgid "License URL"
+msgstr ""
+
+#: actions/licenseadminpanel.php:293
+msgid "URL for more information about the license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:300
+msgid "License Image URL"
+msgstr ""
+
+#: actions/licenseadminpanel.php:301
+msgid "URL for an image to display with the license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:319
+msgid "Save license settings"
+msgstr ""
+
#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
msgid "Already logged in."
msgstr "Ήδη συνδεδεμένος."
@@ -1697,13 +3332,18 @@ msgstr ""
#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
msgid "Login"
-msgstr "Σύνδεση"
+msgstr "Είσοδος"
#: actions/login.php:249
msgid "Login to site"
msgstr ""
-#: actions/login.php:259 actions/register.php:487
+#: actions/login.php:258 actions/register.php:491
+#, fuzzy
+msgid "Remember me"
+msgstr "Μέλος από"
+
+#: actions/login.php:259 actions/register.php:493
msgid "Automatically login in the future; not for shared computers!"
msgstr "Αυτόματη σύνδεση στο μέλλον. ΟΧΙ για κοινόχρηστους υπολογιστές!"
@@ -1719,6 +3359,20 @@ msgstr ""
"Για λόγους ασφαλείας, παρακαλώ εισάγετε ξανά το όνομα χρήστη και τον κωδικό "
"σας, πριν αλλάξετε τις ρυθμίσεις σας."
+#: actions/login.php:292
+#, fuzzy
+msgid "Login with your username and password."
+msgstr "Σύνδεση με όνομα χρήστη και κωδικό"
+
+#: actions/login.php:295
+#, fuzzy, php-format
+msgid ""
+"Don't have a username yet? [Register](%%action.register%%) a new account."
+msgstr ""
+"Συνδεθείτε με το όνομα χρήστη και τον κωδικό σας. Δεν έχετε όνομα χρήστη "
+"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή "
+"δοκιμάστε το [OpenID](%%action.openidlogin%%). "
+
#: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin."
msgstr ""
@@ -1728,52 +3382,109 @@ msgstr ""
msgid "%1$s is already an admin for group \"%2$s\"."
msgstr ""
+#: actions/makeadmin.php:133
+#, fuzzy, php-format
+msgid "Can't get membership record for %1$s in group %2$s."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/makeadmin.php:146
+#, fuzzy, php-format
+msgid "Can't make %1$s an admin for group %2$s."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
#: actions/microsummary.php:69
msgid "No current status."
msgstr ""
-#: actions/newapplication.php:64
+#. TRANS: This is the title of the form for adding a new application.
+#: actions/newapplication.php:52
+msgid "New application"
+msgstr ""
+
+#. TRANS: Client error displayed trying to add a new application while not logged in.
+#: actions/newapplication.php:65
msgid "You must be logged in to register an application."
msgstr ""
-#: actions/newapplication.php:143
+#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr ""
-#: actions/newapplication.php:176
+#: actions/newapplication.php:184
msgid "Source URL is required."
msgstr ""
-#: actions/newapplication.php:258 actions/newapplication.php:267
+#: actions/newapplication.php:266 actions/newapplication.php:275
msgid "Could not create application."
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
-#: actions/newgroup.php:110
+#. TRANS: Title for form to create a group.
+#: actions/newgroup.php:53
+#, fuzzy
+msgid "New group"
+msgstr "Ομάδες χρηστών"
+
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr ""
+
+#. TRANS: Form instructions for group create form.
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr ""
-#: actions/newmessage.php:158
+#: actions/newmessage.php:71 actions/newmessage.php:234
+#, fuzzy
+msgid "New message"
+msgstr "Μήνυμα"
+
+#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other).
+#: actions/newmessage.php:121 actions/newmessage.php:164 lib/command.php:501
+#, fuzzy
+msgid "You can't send a message to this user."
+msgstr "Ομάδες με τα περισσότερα μέλη"
+
+#. TRANS: Command exception text shown when trying to send a direct message to another user without content.
+#. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply.
+#: actions/newmessage.php:144 actions/newnotice.php:140 lib/command.php:478
+#: lib/command.php:581
+#, fuzzy
+msgid "No content!"
+msgstr "Περιεχόμενο"
+
+#: actions/newmessage.php:161
msgid "No recipient specified."
msgstr ""
#. TRANS: Error text shown when trying to send a direct message to self.
-#: actions/newmessage.php:164 lib/command.php:506
+#: actions/newmessage.php:167 lib/command.php:505
msgid ""
"Don't send a message to yourself; just say it to yourself quietly instead."
msgstr ""
+#: actions/newmessage.php:184
+#, fuzzy
+msgid "Message sent"
+msgstr "Μήνυμα"
+
#. TRANS: Message given have sent a direct message to another user.
#. TRANS: %s is the name of the other user.
-#: actions/newmessage.php:185 lib/command.php:514
+#: actions/newmessage.php:188 lib/command.php:513
#, php-format
msgid "Direct message to %s sent."
msgstr ""
-#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189
+#: actions/newmessage.php:213 actions/newnotice.php:264
msgid "Ajax Error"
msgstr ""
-#: actions/newnotice.php:227
+#: actions/newnotice.php:69
+#, fuzzy
+msgid "New notice"
+msgstr "Διαγραφή μηνύματος"
+
+#: actions/newnotice.php:230
msgid "Notice posted"
msgstr ""
@@ -1788,6 +3499,11 @@ msgstr ""
msgid "Text search"
msgstr ""
+#: actions/noticesearch.php:91
+#, fuzzy, php-format
+msgid "Search results for \"%1$s\" on %2$s"
+msgstr "Αναζήτηση ροής για \"%s\""
+
#: actions/noticesearch.php:121
#, php-format
msgid ""
@@ -1807,9 +3523,15 @@ msgstr ""
msgid "Updates with \"%s\""
msgstr ""
+#: actions/noticesearchrss.php:98
+#, 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 their email yet."
+"This user doesn't allow nudges or hasn't confirmed or set their email "
+"address yet."
msgstr ""
#: actions/nudge.php:94
@@ -1820,88 +3542,172 @@ msgstr ""
msgid "Nudge sent!"
msgstr ""
-#: actions/oauthappssettings.php:59
+#. TRANS: Message displayed to an anonymous user trying to view OAuth application list.
+#: actions/oauthappssettings.php:60
msgid "You must be logged in to list your applications."
msgstr ""
-#: actions/oauthappssettings.php:74
+#. TRANS: Page title for OAuth applications
+#: actions/oauthappssettings.php:76
msgid "OAuth applications"
msgstr ""
-#: actions/oauthappssettings.php:85
+#. TRANS: Page instructions for OAuth applications
+#: actions/oauthappssettings.php:88
msgid "Applications you have registered"
msgstr ""
-#: actions/oauthappssettings.php:135
+#. TRANS: Empty list message on page with OAuth applications.
+#: actions/oauthappssettings.php:141
#, php-format
msgid "You have not registered any applications yet."
msgstr ""
-#: actions/oauthconnectionssettings.php:72
+#. TRANS: Title for OAuth connection settings.
+#: actions/oauthconnectionssettings.php:71
msgid "Connected applications"
msgstr ""
+#. TRANS: Instructions for OAuth connection settings.
#: actions/oauthconnectionssettings.php:83
-msgid "You have allowed the following applications to access you account."
+msgid "The following connections exist for your account."
msgstr ""
-#: actions/oauthconnectionssettings.php:186
+#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
+#: actions/oauthconnectionssettings.php:168
+#, fuzzy
+msgid "You are not a user of that application."
+msgstr "Δεν είστε μέλος καμίας ομάδας."
+
+#. TRANS: Client error when revoking access has failed for some reason.
+#. TRANS: %s is the application ID revoking access failed for.
+#: actions/oauthconnectionssettings.php:183
#, php-format
-msgid "Unable to revoke access for app: %s."
+msgid "Unable to revoke access for application: %s."
msgstr ""
-#: actions/oauthconnectionssettings.php:198
+#. TRANS: Success message after revoking access for an application.
+#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
+#: actions/oauthconnectionssettings.php:202
+#, php-format
+msgid ""
+"You have successfully revoked access for %1$s and the access token starting "
+"with %2$s."
+msgstr ""
+
+#. TRANS: Empty list message when no applications have been authorised yet.
+#: actions/oauthconnectionssettings.php:213
msgid "You have not authorized any applications to use your account."
msgstr ""
-#: actions/oauthconnectionssettings.php:211
-msgid "Developers can edit the registration settings for their applications "
+#. TRANS: Note for developers in the OAuth connection settings form.
+#. TRANS: This message contains a Markdown link. Do not separate "](".
+#. TRANS: %s is the URL to the OAuth settings.
+#: actions/oauthconnectionssettings.php:233
+#, php-format
+msgid ""
+"Are you a developer? [Register an OAuth client application](%s) to use with "
+"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:80 actions/shownotice.php:100
+#, fuzzy
+msgid "Notice has no profile."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: actions/oembed.php:83 actions/shownotice.php:172
+#, fuzzy, php-format
+msgid "%1$s's status on %2$s"
+msgstr "Κατάσταση του/της %s"
+
+#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
+#: actions/oembed.php:168
+#, fuzzy, php-format
+msgid "Content type %s not supported."
+msgstr "Σύνδεση"
+
#. TRANS: Error message displaying attachments. %s is the site's base URL.
-#: actions/oembed.php:163
+#: actions/oembed.php:172
#, php-format
msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:184 actions/oembed.php:203 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1356
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
+#: lib/apiaction.php:1233 lib/apiaction.php:1362
msgid "Not a supported data format."
msgstr ""
+#: actions/opensearch.php:64
+#, fuzzy
+msgid "People Search"
+msgstr "Δημοφιλή"
+
#: actions/opensearch.php:67
msgid "Notice Search"
msgstr ""
-#: actions/othersettings.php:60
+#: actions/othersettings.php:59
msgid "Other settings"
msgstr "Ρυθμίσεις του άβαταρ"
+#. TRANS: Instructions for tab "Other" in user profile settings.
#: actions/othersettings.php:71
msgid "Manage various other options."
msgstr ""
-#: actions/othersettings.php:108
+#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
+#. TRANS: user's profile settings. This message has one space at the beginning. Use your
+#. TRANS: language's word separator here if it has one (most likely a single space).
+#: actions/othersettings.php:111
msgid " (free service)"
msgstr ""
-#: actions/othersettings.php:116
+#. TRANS: Label for dropdown with URL shortener services.
+#: actions/othersettings.php:120
msgid "Shorten URLs with"
msgstr ""
-#: actions/othersettings.php:117
+#. TRANS: Tooltip for for dropdown with URL shortener services.
+#: actions/othersettings.php:122
msgid "Automatic shortening service to use."
msgstr ""
-#: actions/othersettings.php:123
+#. TRANS: Label for checkbox.
+#: actions/othersettings.php:128
+#, fuzzy
+msgid "View profile designs"
+msgstr "Επεξεργασία ρυθμίσεων προφίλ"
+
+#. TRANS: Tooltip for checkbox.
+#: actions/othersettings.php:130
msgid "Show or hide profile designs."
msgstr ""
+#. TRANS: Form validation error for form "Other settings" in user profile.
+#: actions/othersettings.php:162
+msgid "URL shortening service is too long (maximum 50 characters)."
+msgstr ""
+
+#: actions/otp.php:69
+#, fuzzy
+msgid "No user ID specified."
+msgstr "Μήνυμα"
+
+#: actions/otp.php:83
+#, fuzzy
+msgid "No login token specified."
+msgstr "Μήνυμα"
+
#: actions/otp.php:90
msgid "No login token requested."
msgstr ""
+#: actions/otp.php:95
+#, fuzzy
+msgid "Invalid login token specified."
+msgstr "Μήνυμα"
+
#: actions/otp.php:104
msgid "Login token expired."
msgstr ""
@@ -1928,6 +3734,16 @@ msgstr "Αλλαγή κωδικού"
msgid "Change your password."
msgstr "Αλλάξτε τον κωδικό σας"
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#, fuzzy
+msgid "Password change"
+msgstr "Ο κωδικός αποθηκεύτηκε."
+
+#: actions/passwordsettings.php:104
+#, fuzzy
+msgid "Old password"
+msgstr "Νέος κωδικός"
+
#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
msgid "New password"
msgstr "Νέος κωδικός"
@@ -1936,11 +3752,6 @@ msgstr "Νέος κωδικός"
msgid "6 or more characters"
msgstr "6 ή περισσότεροι χαρακτήρες"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:440
-msgid "Confirm"
-msgstr "Επιβεβαίωση"
-
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
msgid "Same as password above"
msgstr ""
@@ -1949,7 +3760,12 @@ msgstr ""
msgid "Change"
msgstr "Αλλαγή"
-#: actions/passwordsettings.php:157 actions/register.php:240
+#: actions/passwordsettings.php:154 actions/register.php:238
+#, fuzzy
+msgid "Password must be 6 or more characters."
+msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι."
+
+#: actions/passwordsettings.php:157 actions/register.php:241
msgid "Passwords don't match."
msgstr "Οι κωδικοί δεν ταυτίζονται."
@@ -1969,120 +3785,277 @@ msgstr "Αδύνατη η αποθήκευση του νέου κωδικού"
msgid "Password saved."
msgstr "Ο κωδικός αποθηκεύτηκε."
+#. TRANS: Title for Paths admin panel.
#. TRANS: Menu item for site administration
-#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371
+#: actions/pathsadminpanel.php:58 lib/adminpanelaction.php:371
msgid "Paths"
msgstr ""
-#: actions/pathsadminpanel.php:70
-msgid "Path and server settings for this StatusNet site."
+#. TRANS: Form instructions for Path admin panel.
+#: actions/pathsadminpanel.php:69
+msgid "Path and server settings for this StatusNet site"
msgstr ""
-#: actions/pathsadminpanel.php:183
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the directory that could not be read from.
+#: actions/pathsadminpanel.php:155
+#, fuzzy, php-format
+msgid "Theme directory not readable: %s."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the avatar directory that could not be written to.
+#: actions/pathsadminpanel.php:163
+#, fuzzy, php-format
+msgid "Avatar directory not writable: %s."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the background directory that could not be written to.
+#: actions/pathsadminpanel.php:171
+#, fuzzy, php-format
+msgid "Background directory not writable: %s."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the locales directory that could not be read from.
+#: actions/pathsadminpanel.php:181
+#, fuzzy, php-format
+msgid "Locales directory not readable: %s."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the SSL server URL that is too long.
+#: actions/pathsadminpanel.php:189
msgid "Invalid SSL server. The maximum length is 255 characters."
msgstr ""
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
msgid "Site"
msgstr ""
-#: actions/pathsadminpanel.php:238
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:241 actions/pathsadminpanel.php:279
+#: actions/pathsadminpanel.php:370 actions/pathsadminpanel.php:425
+#, fuzzy
+msgid "Server"
+msgstr "Αποχώρηση"
+
+#: actions/pathsadminpanel.php:242
msgid "Site's server hostname."
msgstr ""
-#: actions/pathsadminpanel.php:242
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:248 actions/pathsadminpanel.php:288
+#: actions/pathsadminpanel.php:379 actions/pathsadminpanel.php:434
msgid "Path"
msgstr ""
-#: actions/pathsadminpanel.php:242
-msgid "Site path"
+#: actions/pathsadminpanel.php:249
+msgid "Site path."
msgstr ""
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:255
+msgid "Locale directory"
msgstr ""
-#: actions/pathsadminpanel.php:246
-msgid "Directory path to locales"
+#: actions/pathsadminpanel.php:256
+msgid "Directory path to locales."
msgstr ""
-#: actions/pathsadminpanel.php:250
+#. TRANS: Checkbox label in Paths admin panel.
+#: actions/pathsadminpanel.php:263
msgid "Fancy URLs"
msgstr ""
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:265
msgid "Use fancy (more readable and memorable) URLs?"
msgstr ""
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:272
msgid "Theme"
msgstr ""
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:281
+msgid "Server for themes."
msgstr ""
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:290
+msgid "Web path to themes."
msgstr ""
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:297 actions/pathsadminpanel.php:388
+#: actions/pathsadminpanel.php:443 actions/pathsadminpanel.php:495
+#, fuzzy
+msgid "SSL server"
+msgstr "Αποχώρηση"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:299
+msgid "SSL server for themes (default: SSL server)."
msgstr ""
-#: actions/pathsadminpanel.php:279
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:306 actions/pathsadminpanel.php:397
+#: actions/pathsadminpanel.php:452
+msgid "SSL path"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:308
+msgid "SSL path to themes (default: /theme/)."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:315 actions/pathsadminpanel.php:406
+#: actions/pathsadminpanel.php:461
+msgid "Directory"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:317
+msgid "Directory where themes are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:326
msgid "Avatars"
msgstr "Ρυθμίσεις του άβαταρ"
-#: actions/pathsadminpanel.php:284
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:333
msgid "Avatar server"
msgstr "Ρυθμίσεις του άβαταρ"
-#: actions/pathsadminpanel.php:288
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:335
+msgid "Server for avatars."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:342
msgid "Avatar path"
msgstr "Ρυθμίσεις του άβαταρ"
-#: actions/pathsadminpanel.php:301
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:344
+msgid "Web path to avatars."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:351
+#, fuzzy
+msgid "Avatar directory"
+msgstr "Ρυθμίσεις OpenID"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:353
+msgid "Directory where avatars are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:364
msgid "Backgrounds"
msgstr ""
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:372
+msgid "Server for backgrounds."
msgstr ""
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:381
+msgid "Web path to backgrounds."
msgstr ""
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:390
+msgid "Server for backgrounds on SSL pages."
msgstr ""
-#: actions/pathsadminpanel.php:320
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:399
+msgid "Web path to backgrounds on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:408
+msgid "Directory where backgrounds are located."
+msgstr ""
+
+#. TRANS: Fieldset legens in Paths admin panel.
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+msgid "Attachments"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:427
+msgid "Server for attachments."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:436
+msgid "Web path to attachments."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:445
+msgid "Server for attachments on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:454
+msgid "Web path to attachments on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:463
+msgid "Directory where attachments are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:472
msgid "SSL"
msgstr ""
-#: actions/pathsadminpanel.php:324
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:477 actions/snapshotadminpanel.php:202
+#, fuzzy
+msgid "Never"
+msgstr "Αποχώρηση"
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:479
msgid "Sometimes"
msgstr ""
-#: actions/pathsadminpanel.php:325
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:481
msgid "Always"
msgstr ""
-#: actions/pathsadminpanel.php:329
+#: actions/pathsadminpanel.php:485
msgid "Use SSL"
msgstr ""
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:487
+msgid "When to use SSL."
msgstr ""
-#: actions/pathsadminpanel.php:336
-msgid "Server to direct SSL requests to"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:497
+msgid "Server to direct SSL requests to."
msgstr ""
-#: actions/pathsadminpanel.php:352
+#. TRANS: Button title text to store form data in the Paths admin panel.
+#: actions/pathsadminpanel.php:514
msgid "Save paths"
msgstr ""
@@ -2093,6 +4066,11 @@ msgid ""
"Separate the terms by spaces; they must be 3 characters or more."
msgstr ""
+#: actions/peoplesearch.php:58
+#, fuzzy
+msgid "People search"
+msgstr "Δημοφιλή"
+
#: actions/peopletag.php:68
#, php-format
msgid "Not a valid people tag: %s."
@@ -2103,127 +4081,222 @@ msgstr ""
msgid "Users self-tagged with %1$s - page %2$d"
msgstr ""
+#: actions/postnotice.php:95
+#, fuzzy
+msgid "Invalid notice content."
+msgstr "Μήνυμα"
+
#: actions/postnotice.php:101
#, php-format
msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’."
msgstr ""
-#: actions/profilesettings.php:71
+#. TRANS: Page title for profile settings.
+#: actions/profilesettings.php:61
+#, fuzzy
+msgid "Profile settings"
+msgstr "Επεξεργασία ρυθμίσεων προφίλ"
+
+#. TRANS: Usage instructions for profile settings.
+#: actions/profilesettings.php:73
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
-#: actions/profilesettings.php:99
+#. TRANS: Profile settings form legend.
+#: actions/profilesettings.php:102
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 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά"
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:113
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
+msgstr ""
-#: actions/profilesettings.php:111 actions/register.php:455
-#: actions/showgroup.php:256 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:150
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for full group name (dt). Text hidden by default.
+#: actions/profilesettings.php:117 actions/register.php:456
+#: actions/showgroup.php:252 actions/tagother.php:104
+#: lib/groupeditform.php:157 lib/userprofile.php:152
msgid "Full name"
msgstr "Ονοματεπώνυμο"
+#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:115 actions/register.php:460
-#: lib/applicationeditform.php:235 lib/groupeditform.php:161
+#: actions/profilesettings.php:122 actions/register.php:461
+#: lib/applicationeditform.php:236 lib/groupeditform.php:161
msgid "Homepage"
msgstr "Αρχική σελίδα"
-#: actions/profilesettings.php:117 actions/register.php:462
-msgid "URL of your homepage, blog, or profile on another site"
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:125
+msgid "URL of your homepage, blog, or profile on another site."
msgstr ""
-#: actions/profilesettings.php:122 actions/register.php:468
+#. TRANS: Tooltip for field label in form for profile settings. Plural
+#. TRANS: is decided by the number of characters available for the
+#. TRANS: biography (%d).
+#: actions/profilesettings.php:133 actions/register.php:472
#, php-format
-msgid "Describe yourself and your interests in %d chars"
-msgstr "Περιγράψτε την ομάδα ή το θέμα χρησιμοποιώντας μέχρι %d χαρακτήρες"
+msgid "Describe yourself and your interests in %d character"
+msgid_plural "Describe yourself and your interests in %d characters"
+msgstr[0] ""
+msgstr[1] ""
-#: actions/profilesettings.php:127 actions/register.php:473
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:139 actions/register.php:477
+#, fuzzy
+msgid "Describe yourself and your interests"
+msgstr "Περιέγραψε τον εαυτό σου και τα ενδιαφέροντά σου σε 140 χαρακτήρες"
+
+#. TRANS: Text area label in form for profile settings where users can provide.
+#. TRANS: their biography.
+#: actions/profilesettings.php:143 actions/register.php:479
msgid "Bio"
msgstr "Βιογραφικό"
-#: actions/profilesettings.php:132 actions/register.php:478
-#: actions/showgroup.php:265 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:177
-#: lib/userprofile.php:165
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for group location (dt). Text hidden by default.
+#: actions/profilesettings.php:149 actions/register.php:484
+#: actions/showgroup.php:262 actions/tagother.php:112
+#: actions/userauthorization.php:166 lib/groupeditform.php:180
+#: lib/userprofile.php:167
msgid "Location"
msgstr "Τοποθεσία"
-#: actions/profilesettings.php:138
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:152 actions/register.php:486
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\""
+msgstr "Τοποθεσία της ομάδας (εάν υπάρχει), πχ: \"Πόλη, Περιοχή, Χώρα)"
+
+#. TRANS: Checkbox label in form for profile settings.
+#: actions/profilesettings.php:157
msgid "Share my current location when posting notices"
msgstr ""
-#: actions/profilesettings.php:145 actions/tagother.php:149
+#. TRANS: Field label in form for profile settings.
+#: actions/profilesettings.php:165 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:210
+#: lib/subscriptionlist.php:108 lib/userprofile.php:212
msgid "Tags"
msgstr ""
-#: actions/profilesettings.php:147
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:168
msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr ""
-#: actions/profilesettings.php:151
+#. TRANS: Dropdownlist label in form for profile settings.
+#: actions/profilesettings.php:173
msgid "Language"
msgstr ""
-#: actions/profilesettings.php:152
+#. TRANS: Tooltip for dropdown list label in form for profile settings.
+#: actions/profilesettings.php:175
msgid "Preferred language"
msgstr ""
-#: actions/profilesettings.php:161
+#. TRANS: Dropdownlist label in form for profile settings.
+#: actions/profilesettings.php:185
msgid "Timezone"
msgstr ""
-#: actions/profilesettings.php:162
+#. TRANS: Tooltip for dropdown list label in form for profile settings.
+#: actions/profilesettings.php:187
msgid "What timezone are you normally in?"
msgstr ""
-#: actions/profilesettings.php:228 actions/register.php:230
-#, php-format
-msgid "Bio is too long (max %d chars)."
-msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)."
+#. TRANS: Checkbox label in form for profile settings.
+#: actions/profilesettings.php:193
+#, fuzzy
+msgid ""
+"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+msgstr ""
+"Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση "
+"κυρίως από λογισμικό και όχι ανθρώπους)"
-#: actions/profilesettings.php:235 actions/siteadminpanel.php:151
+#. TRANS: Validation error in form for profile settings.
+#. TRANS: Plural form is used based on the maximum number of allowed
+#. TRANS: characters for the biography (%d).
+#: actions/profilesettings.php:262 actions/register.php:229
+#, php-format
+msgid "Bio is too long (maximum %d character)."
+msgid_plural "Bio is too long (maximum %d characters)."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Validation error in form for profile settings.
+#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr ""
-#: actions/profilesettings.php:253 actions/tagother.php:178
+#. TRANS: Validation error in form for profile settings.
+#: actions/profilesettings.php:281
+msgid "Language is too long (maximum 50 characters)."
+msgstr ""
+
+#. TRANS: Validation error in form for profile settings.
+#. TRANS: %s is an invalid tag.
+#: actions/profilesettings.php:295 actions/tagother.php:178
#, php-format
msgid "Invalid tag: \"%s\""
msgstr ""
-#: actions/profilesettings.php:306
+#. TRANS: Server error thrown when user profile settings could not be updated to
+#. TRANS: automatically subscribe to any subscriber.
+#: actions/profilesettings.php:351
msgid "Couldn't update user for autosubscribe."
msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή."
-#: actions/profilesettings.php:363
+#. TRANS: Server error thrown when user profile location preference settings could not be updated.
+#: actions/profilesettings.php:409
msgid "Couldn't save location prefs."
msgstr "Απέτυχε η αποθήκευση του προφίλ."
-#: actions/profilesettings.php:375
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/profilesettings.php:422
msgid "Couldn't save profile."
msgstr "Απέτυχε η αποθήκευση του προφίλ."
-#: actions/profilesettings.php:383
+#. TRANS: Server error thrown when user profile settings tags could not be saved.
+#: actions/profilesettings.php:431
msgid "Couldn't save tags."
msgstr "Απέτυχε η αποθήκευση του προφίλ."
+#. TRANS: Confirmation shown when user profile settings are saved.
+#. TRANS: Message after successful saving of administrative settings.
+#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#, fuzzy
+msgid "Settings saved."
+msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
+
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:481 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr ""
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
msgstr ""
+#: actions/public.php:92
+#, fuzzy
+msgid "Could not retrieve public stream."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
#: actions/public.php:130
#, php-format
msgid "Public timeline, page %d"
msgstr ""
+#: actions/public.php:132 lib/publicgroupnav.php:79
+#, fuzzy
+msgid "Public timeline"
+msgstr "χρονοδιάγραμμα του χρήστη %s"
+
#: actions/public.php:160
msgid "Public Stream Feed (RSS 1.0)"
msgstr ""
@@ -2232,6 +4305,20 @@ msgstr ""
msgid "Public Stream Feed (RSS 2.0)"
msgstr ""
+#: actions/public.php:168
+#, fuzzy
+msgid "Public Stream Feed (Atom)"
+msgstr "Δημόσια ροή %s"
+
+#: actions/public.php:188
+#, fuzzy, php-format
+msgid ""
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
+msgstr ""
+"Αυτό είναι το χρονοδιάγραμμα για %s και φίλους, αλλά κανείς δεν έχει κάνει "
+"καμία αποστολή ακόμα."
+
#: actions/public.php:191
msgid "Be the first to post!"
msgstr ""
@@ -2259,31 +4346,59 @@ msgid ""
"tool."
msgstr ""
+#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
msgstr ""
-#: actions/publictagcloud.php:63
+#. TRANS: Instructions (more used like an explanation/header).
+#. TRANS: %s is the StatusNet sitename.
+#: actions/publictagcloud.php:65
#, php-format
-msgid "These are most popular recent tags on %s "
+msgid "These are most popular recent tags on %s"
msgstr ""
-#: actions/publictagcloud.php:69
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/publictagcloud.php:74
#, php-format
msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
msgstr ""
-#: actions/publictagcloud.php:72
+#. TRANS: Message shown to a logged in user for the public tag cloud
+#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
+#: actions/publictagcloud.php:79
msgid "Be the first to post one!"
msgstr ""
-#: actions/publictagcloud.php:75
+#. TRANS: Message shown to a anonymous user for the public tag cloud
+#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/publictagcloud.php:87
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to post "
"one!"
msgstr ""
+#: actions/publictagcloud.php:146
+#, fuzzy
+msgid "Tag cloud"
+msgstr "Αλλαγή χρωμάτων"
+
+#: actions/recoverpassword.php:36
+#, fuzzy
+msgid "You are already logged in!"
+msgstr "Ήδη συνδεδεμένος."
+
+#: actions/recoverpassword.php:62
+#, fuzzy
+msgid "No such recovery code."
+msgstr "Κανένας τέτοιος χρήστης."
+
#: actions/recoverpassword.php:66
msgid "Not a recovery code."
msgstr ""
@@ -2292,6 +4407,11 @@ msgstr ""
msgid "Recovery code for unknown user."
msgstr ""
+#: actions/recoverpassword.php:86
+#, fuzzy
+msgid "Error with confirmation code."
+msgstr "Απέτυχε η εισαγωγή κωδικού επιβεβαίωσης."
+
#: actions/recoverpassword.php:97
msgid "This confirmation code is too old. Please start again."
msgstr ""
@@ -2300,10 +4420,29 @@ msgstr ""
msgid "Could not update user with confirmed email address."
msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης."
+#: actions/recoverpassword.php:152
+#, fuzzy
+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 ""
+"Οδηγίες για την ανάκτηση του κωδικού σας έχουν σταλεί στην διεύθυνση email "
+"που έχετε καταχωρίσει στον λογαριασμό σας."
+
#: actions/recoverpassword.php:158
msgid "You have been identified. Enter a new password below. "
msgstr ""
+#: actions/recoverpassword.php:188
+#, fuzzy
+msgid "Password recovery"
+msgstr "Ο κωδικός αποθηκεύτηκε."
+
+#: actions/recoverpassword.php:191
+#, fuzzy
+msgid "Nickname or email address"
+msgstr "Εισάγετε ψευδώνυμο ή διεύθυνση email."
+
#: actions/recoverpassword.php:193
msgid "Your nickname on this server, or your registered email address."
msgstr ""
@@ -2312,6 +4451,16 @@ msgstr ""
msgid "Recover"
msgstr ""
+#: actions/recoverpassword.php:208
+#, fuzzy
+msgid "Reset password"
+msgstr "Νέος κωδικός"
+
+#: actions/recoverpassword.php:209
+#, fuzzy
+msgid "Recover password"
+msgstr "Νέος κωδικός"
+
#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
msgid "Password recovery requested"
msgstr ""
@@ -2340,6 +4489,11 @@ msgstr ""
msgid "No registered email address for that user."
msgstr ""
+#: actions/recoverpassword.php:313
+#, fuzzy
+msgid "Error saving address confirmation."
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
#: actions/recoverpassword.php:338
msgid ""
"Instructions for recovering your password have been sent to the email "
@@ -2353,18 +4507,23 @@ msgid "Unexpected password reset."
msgstr ""
#: actions/recoverpassword.php:365
-msgid "Password must be 6 chars or more."
-msgstr "Ο κωδικός πρέπει να είναι 6 χαρακτήρες ή περισσότεροι."
+msgid "Password must be 6 characters or more."
+msgstr ""
#: actions/recoverpassword.php:369
msgid "Password and confirmation do not match."
msgstr "Ο κωδικός και η επιβεβαίωση του δεν ταυτίζονται."
+#: actions/recoverpassword.php:388 actions/register.php:256
+#, fuzzy
+msgid "Error setting user."
+msgstr "Επεξεργασία ρυθμίσεων προφίλ"
+
#: actions/recoverpassword.php:395
msgid "New password successfully saved. You are now logged in."
msgstr ""
-#: actions/register.php:92 actions/register.php:196 actions/register.php:412
+#: actions/register.php:92 actions/register.php:196 actions/register.php:413
msgid "Sorry, only invited people can register."
msgstr ""
@@ -2372,68 +4531,136 @@ msgstr ""
msgid "Sorry, invalid invitation code."
msgstr ""
-#: actions/register.php:205
+#: actions/register.php:119
+#, fuzzy
+msgid "Registration successful"
+msgstr "Εγγραφή"
+
+#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#, fuzzy
+msgid "Register"
+msgstr "Εγγραφή"
+
+#: actions/register.php:142
+#, fuzzy
+msgid "Registration not allowed."
+msgstr "Εγγραφή"
+
+#: actions/register.php:209
msgid "You can't register if you don't agree to the license."
msgstr ""
-#: actions/register.php:219
+#: actions/register.php:218
msgid "Email address already exists."
msgstr "Η διεύθυνση email υπάρχει ήδη."
-#: actions/register.php:350
+#: actions/register.php:251 actions/register.php:273
+#, fuzzy
+msgid "Invalid username or password."
+msgstr "Λάθος όνομα χρήστη ή κωδικός"
+
+#: actions/register.php:351
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:432
+#: actions/register.php:433
msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά. Απαραίτητο."
-#: actions/register.php:437
+#: actions/register.php:438
msgid "6 or more characters. Required."
msgstr "6 ή περισσότεροι χαρακτήρες. Απαραίτητο."
-#: actions/register.php:441
+#: actions/register.php:442
msgid "Same as password above. Required."
msgstr ""
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:445 actions/register.php:449
-#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132
+#: actions/register.php:446 actions/register.php:450
+#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Email"
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:447 actions/register.php:451
msgid "Used only for updates, announcements, and password recovery"
msgstr ""
-#: actions/register.php:457
+#: actions/register.php:458
msgid "Longer name, preferably your \"real\" name"
msgstr ""
-#: actions/register.php:518
+#: actions/register.php:463
+msgid "URL of your homepage, blog, or profile on another site"
+msgstr ""
+
+#: actions/register.php:524
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:528
+#: actions/register.php:534
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:532
+#: actions/register.php:538
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:535
+#: actions/register.php:541
msgid "All rights reserved."
msgstr ""
-#: actions/register.php:607
+#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
+#: actions/register.php:546
+#, fuzzy, php-format
+msgid ""
+"My text and files are available under %s except this private data: password, "
+"email address, IM address, and phone number."
+msgstr ""
+"εκτός από τα εξής προσωπικά δεδομένα: κωδικός πρόσβασης, διεύθυνση email, "
+"διεύθυνση IM, τηλεφωνικό νούμερο."
+
+#: actions/register.php:589
+#, fuzzy, php-format
+msgid ""
+"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
+"want to...\n"
+"\n"
+"* Go to [your profile](%2$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 ""
+"Συγχαρητήρια, %s! και καλωσήρθες στο %%%%site.name%%%%. Από εδώ μπορείς "
+"να...\n"
+"\n"
+"* Πας στο [your profile](%s) και να στείλεις το πρώτο σου μήνυμα.\n"
+"* Προσθέσεις ένα [Jabber/GTalk address](%%%%action.imsettings%%%%) ώστε να "
+"δέχεσε μηνύματα στο instant messager σου.\n"
+"* [Search for people](%%%%action.peoplesearch%%%%) που μπορεί να ξέρεις ή "
+"που έχουν τα ίδια ενδιαφέροντα με σένα. \n"
+"* Ενημερώσεις το προφίλ σου [profile settings](%%%%action.profilesettings%%%"
+"%) για να μάθουν οι άλλοι περισσότερα για σένα. \n"
+"* Διαβάσεις τα [online docs](%%%%doc.help%%%%) για λειτουργίες που μπορεί να "
+"μην έχεις μάθει ακόμα. \n"
+"\n"
+"Ευχαριστούμε που εγγράφηκες και ευχόμαστε να περάσεις καλά με την υπηρεσία "
+"μας."
+
+#: actions/register.php:613
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -2449,6 +4676,21 @@ msgid ""
"microblogging site](%%doc.openmublog%%), enter your profile URL below."
msgstr ""
+#: actions/remotesubscribe.php:112
+#, fuzzy
+msgid "Remote subscribe"
+msgstr "Απέτυχε η συνδρομή."
+
+#: actions/remotesubscribe.php:124
+#, fuzzy
+msgid "Subscribe to a remote user"
+msgstr "Γίνε συνδρομητής αυτού του χρήστη"
+
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "User nickname"
+msgstr "Ψευδώνυμο"
+
#: actions/remotesubscribe.php:130
msgid "Nickname of the user you want to follow"
msgstr "Το ψευδώνυμο του χρήστη που θέλετε να παρακολουθήσετε"
@@ -2461,6 +4703,12 @@ msgstr ""
msgid "URL of your profile on another compatible microblogging service"
msgstr ""
+#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
+#: lib/userprofile.php:411
+#, fuzzy
+msgid "Subscribe"
+msgstr "Απέτυχε η συνδρομή."
+
#: actions/remotesubscribe.php:159
msgid "Invalid profile URL (bad format)"
msgstr ""
@@ -2473,15 +4721,30 @@ msgstr ""
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/repeat.php:57
msgid "Only logged-in users can repeat notices."
msgstr ""
+#: actions/repeat.php:64 actions/repeat.php:71
+#, fuzzy
+msgid "No notice specified."
+msgstr "Μήνυμα"
+
#: actions/repeat.php:76
msgid "You can't repeat your own notice."
msgstr ""
-#: actions/repeat.php:114 lib/noticelist.php:676
+#: actions/repeat.php:90
+#, fuzzy
+msgid "You already repeated that notice."
+msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
+
+#: actions/repeat.php:114 lib/noticelist.php:692
msgid "Repeated"
msgstr "Επαναλαμβάνεται από"
@@ -2490,7 +4753,7 @@ msgid "Repeated!"
msgstr "Επαναλαμβάνεται από"
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:105
+#: lib/personalgroupnav.php:108
#, php-format
msgid "Replies to %s"
msgstr ""
@@ -2515,6 +4778,15 @@ msgstr "Ροή φίλων του/της %s (RSS 2.0)"
msgid "Replies feed for %s (Atom)"
msgstr "Ροή φίλων του/της %s (Atom)"
+#: actions/replies.php:199
+#, fuzzy, php-format
+msgid ""
+"This is the timeline showing replies to %1$s but %2$s hasn't received a "
+"notice to them yet."
+msgstr ""
+"Αυτό είναι το χρονοδιάγραμμα για %s και φίλους, αλλά κανείς δεν έχει κάνει "
+"καμία αποστολή ακόμα."
+
#: actions/replies.php:204
#, php-format
msgid ""
@@ -2534,6 +4806,93 @@ msgstr ""
msgid "Replies to %1$s on %2$s!"
msgstr ""
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr ""
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr ""
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr ""
+
+#: actions/revokerole.php:75
+#, fuzzy
+msgid "You cannot revoke user roles on this site."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
#: actions/revokerole.php:82
msgid "User doesn't have this role."
msgstr ""
@@ -2557,7 +4916,7 @@ msgid "Sessions"
msgstr ""
#: actions/sessionsadminpanel.php:65
-msgid "Session settings for this StatusNet site."
+msgid "Session settings for this StatusNet site"
msgstr ""
#: actions/sessionsadminpanel.php:175
@@ -2577,7 +4936,6 @@ msgid "Turn on debugging output for sessions."
msgstr ""
#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/useradminpanel.php:294
msgid "Save site settings"
msgstr "Αποθήκευση ρυθμίσεων πρόσβασης"
@@ -2594,13 +4952,27 @@ msgstr ""
msgid "Icon"
msgstr ""
+#. TRANS: Form input field label for application name.
+#: actions/showapplication.php:169 actions/version.php:197
+#: lib/applicationeditform.php:190
+#, fuzzy
+msgid "Name"
+msgstr "Ψευδώνυμο"
+
+#. TRANS: Form input field label.
+#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#, fuzzy
+msgid "Organization"
+msgstr "Προσκλήσεις"
+
#. TRANS: Form input field label.
#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:207 lib/groupeditform.php:172
+#: lib/applicationeditform.php:208 lib/groupeditform.php:175
msgid "Description"
msgstr "Περιγραφή"
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#. TRANS: Header for group statistics on a group page (h2).
+#: actions/showapplication.php:192 actions/showgroup.php:448
#: lib/profileaction.php:187
msgid "Statistics"
msgstr ""
@@ -2618,6 +4990,11 @@ msgstr ""
msgid "Reset key & secret"
msgstr ""
+#: actions/showapplication.php:252 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:66 lib/noticelist.php:673
+msgid "Delete"
+msgstr "Διαγραφή"
+
#: actions/showapplication.php:261
msgid "Application info"
msgstr ""
@@ -2648,11 +5025,21 @@ msgid ""
"signature method."
msgstr ""
+#: actions/showapplication.php:309
+#, fuzzy
+msgid "Are you sure you want to reset your consumer key and secret?"
+msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;"
+
#: actions/showfavorites.php:79
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%1$s και φίλοι, σελίδα 2%$d"
+#: actions/showfavorites.php:132
+#, fuzzy
+msgid "Could not retrieve favorite notices."
+msgstr "Απέτυχε η αποθήκευση του προφίλ."
+
#: actions/showfavorites.php:171
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
@@ -2693,33 +5080,108 @@ msgstr ""
msgid "This is a way to share what you like."
msgstr ""
-#: actions/showgroup.php:84
+#. TRANS: Page title for first group page. %s is a group name.
+#: actions/showgroup.php:75
+#, fuzzy, php-format
+msgid "%s group"
+msgstr "ομάδες των χρηστών %s"
+
+#. TRANS: Page title for any but first group page.
+#. TRANS: %1$s is a group name, $2$s is a page number.
+#: actions/showgroup.php:79
#, php-format
msgid "%1$s group, page %2$d"
msgstr "%1$s και φίλοι, σελίδα 2%$d"
-#: actions/showgroup.php:227
+#. TRANS: Group profile header (h2). Text hidden by default.
+#: actions/showgroup.php:220
msgid "Group profile"
msgstr "Προφίλ χρήστη"
-#: actions/showgroup.php:272 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:178
+#. TRANS: Label for group URL (dt). Text hidden by default.
+#: actions/showgroup.php:270 actions/tagother.php:118
+#: actions/userauthorization.php:175 lib/userprofile.php:180
msgid "URL"
msgstr ""
-#: actions/showgroup.php:293 lib/groupeditform.php:184
+#. TRANS: Label for group description or group note (dt). Text hidden by default.
+#: actions/showgroup.php:282 actions/tagother.php:128
+#: actions/userauthorization.php:187 lib/userprofile.php:197
+#, fuzzy
+msgid "Note"
+msgstr "Κανένα"
+
+#. TRANS: Label for group aliases (dt). Text hidden by default.
+#: actions/showgroup.php:293 lib/groupeditform.php:187
msgid "Aliases"
msgstr ""
-#: actions/showgroup.php:393 actions/showgroup.php:445
+#. TRANS: Group actions header (h2). Text hidden by default.
+#: actions/showgroup.php:304
+#, fuzzy
+msgid "Group actions"
+msgstr "ομάδες του χρήστη %s"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:345
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 1.0)"
+msgstr "Ροή φίλων του/της %s (RSS 1.0)"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:352
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr "Ροή φίλων του/της %s (RSS 2.0)"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:359
+#, fuzzy, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr "Ροή φίλων του/της %s (Atom)"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:365
+#, fuzzy, php-format
+msgid "FOAF for %s group"
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#. TRANS: Header for mini list of group members on a group page (h2).
+#: actions/showgroup.php:402
msgid "Members"
msgstr "Μέλη"
-#: actions/showgroup.php:439
-msgid "Created"
-msgstr "Δημιουργημένος"
+#. TRANS: Description for mini list of group members on a group page when the group has no members.
+#: actions/showgroup.php:408 lib/profileaction.php:117
+#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
+#, fuzzy
+msgid "(None)"
+msgstr "Κανένα"
-#: actions/showgroup.php:455
+#. TRANS: Link to all group members from mini list of group members if group has more than n members.
+#: actions/showgroup.php:417
+#, fuzzy
+msgid "All members"
+msgstr "Μέλη"
+
+#. TRANS: Label for creation date in statistics on group page.
+#: actions/showgroup.php:453
+msgctxt "LABEL"
+msgid "Created"
+msgstr ""
+
+#. TRANS: Label for member count in statistics on group page.
+#: actions/showgroup.php:461
+msgctxt "LABEL"
+msgid "Members"
+msgstr ""
+
+#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations.
+#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
+#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
+#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
+#: actions/showgroup.php:476
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -2729,7 +5191,10 @@ msgid ""
"of this group and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
-#: actions/showgroup.php:461
+#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
+#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
+#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
+#: actions/showgroup.php:486
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -2738,20 +5203,32 @@ msgid ""
"their life and interests. "
msgstr ""
-#: actions/showgroup.php:489
+#. TRANS: Header for list of group administrators on a group page (h2).
+#: actions/showgroup.php:515
msgid "Admins"
msgstr "Διαχειριστές"
-#: actions/showmessage.php:98
+#. TRANS: Client error displayed requesting a single message that does not exist.
+#: actions/showmessage.php:79
+#, fuzzy
+msgid "No such message."
+msgstr "Κανένας τέτοιος χρήστης."
+
+#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
+#: actions/showmessage.php:97
msgid "Only the sender and recipient may read this message."
msgstr ""
-#: actions/showmessage.php:108
+#. TRANS: Page title for single direct message display when viewing user is the sender.
+#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
+#: actions/showmessage.php:110
#, php-format
msgid "Message to %1$s on %2$s"
msgstr ""
-#: actions/showmessage.php:113
+#. TRANS: Page title for single message display.
+#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
+#: actions/showmessage.php:118
#, php-format
msgid "Message from %1$s on %2$s"
msgstr ""
@@ -2760,40 +5237,84 @@ msgstr ""
msgid "Notice deleted."
msgstr "Η κατάσταση διεγράφη."
-#: actions/showstream.php:73
+#. TRANS: Page title showing tagged notices in one user's stream. %1$s is the username, %2$s is the hash tag.
+#: actions/showstream.php:70
#, php-format
-msgid " tagged %s"
+msgid "%1$s tagged %2$s"
msgstr ""
-#: actions/showstream.php:79
+#. TRANS: Page title showing tagged notices in one user's stream.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#: actions/showstream.php:74
+#, php-format
+msgid "%1$s tagged %2$s, page %3$d"
+msgstr ""
+
+#. TRANS: Extended page title showing tagged notices in one user's stream.
+#. TRANS: %1$s is the username, %2$d is the page number.
+#: actions/showstream.php:82
#, php-format
msgid "%1$s, page %2$d"
msgstr "%1$s και φίλοι, σελίδα 2%$d"
-#: actions/showstream.php:122
+#. TRANS: Title for link to notice feed.
+#. TRANS: %1$s is a user nickname, %2$s is a hashtag.
+#: actions/showstream.php:127
#, php-format
msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)"
msgstr "Ροή φίλων του/της %s (RSS 1.0)"
-#: actions/showstream.php:148
+#. TRANS: Title for link to notice feed.
+#. TRANS: %s is a user nickname.
+#: actions/showstream.php:136
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr "Ροή φίλων του/της %s (RSS 1.0)"
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %s is a user nickname.
+#: actions/showstream.php:145
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr "Ροή φίλων του/της %s (RSS 2.0)"
+
+#: actions/showstream.php:152
+#, fuzzy, php-format
+msgid "Notice feed for %s (Atom)"
+msgstr "Ροή φίλων του/της %s (Atom)"
+
+#. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend.
+#. TRANS: More information at http://www.foaf-project.org. %s is a user nickname.
+#: actions/showstream.php:159
#, php-format
msgid "FOAF for %s"
msgstr ""
-#: actions/showstream.php:205
+#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname.
+#: actions/showstream.php:211
+#, php-format
+msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet."
+msgstr ""
+
+#. TRANS: Second sentence of empty list message for a stream for the user themselves.
+#: actions/showstream.php:217
msgid ""
"Seen anything interesting recently? You haven't posted any notices yet, now "
"would be a good time to start :)"
msgstr ""
-#: actions/showstream.php:207
+#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:221
#, php-format
msgid ""
"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%"
"%?status_textarea=%2$s)."
msgstr ""
-#: actions/showstream.php:243
+#. TRANS: Announcement for anonymous users showing a stream if site registrations are open.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:264
#, php-format
msgid ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -2802,7 +5323,9 @@ msgid ""
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
-#: actions/showstream.php:248
+#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:271
#, php-format
msgid ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -2810,6 +5333,12 @@ msgid ""
"[StatusNet](http://status.net/) tool. "
msgstr ""
+#. TRANS: Link to the author of a repeated notice. %s is a linked nickname.
+#: actions/showstream.php:328
+#, fuzzy, php-format
+msgid "Repeat of %s"
+msgstr "Επαναλαμβάνεται από"
+
#: actions/silence.php:65 actions/unsilence.php:65
msgid "You cannot silence users on this site."
msgstr ""
@@ -2871,6 +5400,11 @@ msgstr ""
msgid "URL used for credits link in footer of each page"
msgstr ""
+#: actions/siteadminpanel.php:239
+#, fuzzy
+msgid "Contact email address for your site"
+msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε."
+
#: actions/siteadminpanel.php:245
msgid "Local"
msgstr "Τοπικός"
@@ -2911,23 +5445,40 @@ msgstr ""
msgid "How long users must wait (in seconds) to post the same thing again."
msgstr ""
-#: actions/sitenoticeadminpanel.php:67
+#. TRANS: Page title for site-wide notice tab in admin panel.
+#: actions/sitenoticeadminpanel.php:55
+#, fuzzy
+msgid "Site Notice"
+msgstr "Διαγραφή μηνύματος"
+
+#. TRANS: Instructions for site-wide notice tab in admin panel.
+#: actions/sitenoticeadminpanel.php:66
msgid "Edit site-wide message"
msgstr ""
-#: actions/sitenoticeadminpanel.php:103
+#. TRANS: Server error displayed when saving a site-wide notice was impossible.
+#: actions/sitenoticeadminpanel.php:101
msgid "Unable to save site notice."
msgstr ""
-#: actions/sitenoticeadminpanel.php:113
-msgid "Max length for the site-wide notice is 255 chars."
+#. TRANS: Client error displayed when a site-wide notice was longer than allowed.
+#: actions/sitenoticeadminpanel.php:112
+msgid "Maximum length for the site-wide notice is 255 characters."
msgstr ""
-#: actions/sitenoticeadminpanel.php:178
-msgid "Site-wide notice text (255 chars max; HTML okay)"
+#. TRANS: Label for site-wide notice text field in admin panel.
+#: actions/sitenoticeadminpanel.php:176
+#, fuzzy
+msgid "Site notice text"
+msgstr "Διαγραφή μηνύματος"
+
+#. TRANS: Tooltip for site-wide notice text field in admin panel.
+#: actions/sitenoticeadminpanel.php:179
+msgid "Site-wide notice text (255 characters maximum; HTML allowed)"
msgstr ""
-#: actions/sitenoticeadminpanel.php:198
+#. TRANS: Title for button to save site notice in admin panel.
+#: actions/sitenoticeadminpanel.php:201
msgid "Save site notice"
msgstr "Διαγραφή μηνύματος"
@@ -2943,6 +5494,12 @@ msgstr "Ρυθμίσεις του άβαταρ"
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
+#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
+#: actions/smssettings.php:97
+#, fuzzy
+msgid "SMS is not available."
+msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
+
#. TRANS: Form legend for SMS settings form.
#: actions/smssettings.php:111
msgid "SMS address"
@@ -2958,16 +5515,34 @@ msgstr "Τρέχων επιβεβαιωμένο, μέσω SMS, νούμερο κ
msgid "Awaiting confirmation on this phone number."
msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου."
+#. TRANS: Field label for SMS address input in SMS settings form.
+#: actions/smssettings.php:142
+#, fuzzy
+msgid "Confirmation code"
+msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
+
#. TRANS: Form field instructions in SMS settings form.
#: actions/smssettings.php:144
msgid "Enter the code you received on your phone."
msgstr ""
+#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
+#: actions/smssettings.php:148
+msgctxt "BUTTON"
+msgid "Confirm"
+msgstr "Επιβεβαίωση"
+
#. TRANS: Field label for SMS phone number input in SMS settings form.
#: actions/smssettings.php:153
msgid "SMS phone number"
msgstr ""
+#. TRANS: SMS phone number input field instructions in SMS settings form.
+#: actions/smssettings.php:156
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code"
+msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά. Απαραίτητο."
+
#. TRANS: Form legend for SMS preferences form.
#: actions/smssettings.php:195
msgid "SMS preferences"
@@ -2980,6 +5555,18 @@ msgid ""
"from my carrier."
msgstr ""
+#. TRANS: Confirmation message for successful SMS preferences save.
+#: actions/smssettings.php:315
+#, fuzzy
+msgid "SMS preferences saved."
+msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
+
+#. TRANS: Message given saving SMS phone number without having provided one.
+#: actions/smssettings.php:338
+#, fuzzy
+msgid "No phone number."
+msgstr "Κανένας τέτοιος χρήστης."
+
#. TRANS: Message given saving SMS phone number without having selected a carrier.
#: actions/smssettings.php:344
msgid "No carrier selected."
@@ -3005,6 +5592,25 @@ msgstr ""
"προσθέσατε. Ελέγξτε τα εισερχόμενα (και τον φάκελο ανεπιθύμητης "
"αλληλογραφίας) για τον κωδικό και για το πως να τον χρησιμοποιήσετε."
+#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
+#: actions/smssettings.php:413
+#, fuzzy
+msgid "That is the wrong confirmation number."
+msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου."
+
+#. TRANS: Message given after successfully canceling SMS phone number confirmation.
+#: actions/smssettings.php:427
+#, fuzzy
+msgid "SMS confirmation cancelled."
+msgstr "Η επιβεβαίωση ακυρώθηκε."
+
+#. TRANS: Message given trying to remove an SMS phone number that is not
+#. TRANS: registered for the active user.
+#: actions/smssettings.php:448
+#, fuzzy
+msgid "That is not your phone number."
+msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου."
+
#. TRANS: Message given after successfully removing a registered SMS phone number.
#: actions/smssettings.php:470
msgid "The SMS phone number was removed."
@@ -3040,6 +5646,11 @@ msgstr ""
msgid "Snapshots"
msgstr ""
+#: actions/snapshotadminpanel.php:65
+#, fuzzy
+msgid "Manage snapshot configuration"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
#: actions/snapshotadminpanel.php:127
msgid "Invalid snapshot run value."
msgstr ""
@@ -3088,8 +5699,15 @@ msgstr ""
msgid "Save snapshot settings"
msgstr "Αποθήκευση ρυθμίσεων πρόσβασης"
+#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile.
+#: actions/subedit.php:75
+#, fuzzy
+msgid "You are not subscribed to that profile."
+msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
+
+#. TRANS: Server error displayed when updating a subscription fails with a database error.
#. TRANS: Exception thrown when a subscription could not be stored on the server.
-#: actions/subedit.php:83 classes/Subscription.php:136
+#: actions/subedit.php:89 classes/Subscription.php:141
msgid "Could not save subscription."
msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
@@ -3097,66 +5715,93 @@ msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Κανένας τέτοιος χρήστης."
-
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
-#: actions/subscribers.php:52
+#: actions/subscribe.php:145
+#, fuzzy
+msgid "Subscribed"
+msgstr "Απέτυχε η συνδρομή."
+
+#. TRANS: Header for list of subscribers for a user (first page).
+#. TRANS: %s is the user's nickname.
+#: actions/subscribers.php:51
+#, fuzzy, php-format
+msgid "%s subscribers"
+msgstr "Απέτυχε η συνδρομή."
+
+#. TRANS: Header for list of subscribers for a user (not first page).
+#. TRANS: %1$s is the user's nickname, $2$d is the page number.
+#: actions/subscribers.php:55
#, php-format
msgid "%1$s subscribers, page %2$d"
msgstr "%1$s και φίλοι, σελίδα 2%$d"
-#: actions/subscribers.php:63
+#. TRANS: Page notice for page with an overview of all subscribers
+#. TRANS: of the logged in user's own profile.
+#: actions/subscribers.php:68
msgid "These are the people who listen to your notices."
msgstr ""
-#: actions/subscribers.php:67
+#. TRANS: Page notice for page with an overview of all subscribers of a user other
+#. TRANS: than the logged in user. %s is the user nickname.
+#: actions/subscribers.php:74
#, php-format
msgid "These are the people who listen to %s's notices."
msgstr ""
-#: actions/subscribers.php:108
+#. TRANS: Subscriber list text when the logged in user has no subscribers.
+#: actions/subscribers.php:116
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
-"return the favor"
+"return the favor."
msgstr ""
-#: actions/subscribers.php:110
+#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
+#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
+#: actions/subscribers.php:120
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
-#: actions/subscribers.php:114
+#. TRANS: Subscriber list text when looking at the subscribers for a of a user that has none
+#. TRANS: as an anonymous user. %s is the user nickname.
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/subscribers.php:129
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
"%) and be the first?"
msgstr ""
-#: actions/subscriptions.php:52
-#, php-format
-msgid "%s subscriptions"
-msgstr "Όλες οι συνδρομές"
-
-#: actions/subscriptions.php:54
+#. TRANS: Header for subscriptions overview for a user (not first page).
+#. TRANS: %1$s is a user nickname, %2$d is the page number.
+#: actions/subscriptions.php:55
#, php-format
msgid "%1$s subscriptions, page %2$d"
msgstr "%1$s και φίλοι, σελίδα 2%$d"
-#: actions/subscriptions.php:65
+#. TRANS: Page notice for page with an overview of all subscriptions
+#. TRANS: of the logged in user's own profile.
+#: actions/subscriptions.php:68
msgid "These are the people whose notices you listen to."
msgstr ""
-#: actions/subscriptions.php:69
+#. TRANS: Page notice for page with an overview of all subscriptions of a user other
+#. TRANS: than the logged in user. %s is the user nickname.
+#: actions/subscriptions.php:74
#, php-format
msgid "These are the people whose notices %s listens to."
msgstr ""
-#: actions/subscriptions.php:126
+#. TRANS: Subscription list text when the logged in user has no subscriptions.
+#. TRANS: This message contains Markdown URLs. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/subscriptions.php:135
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -3166,16 +5811,27 @@ msgid ""
"automatically subscribe to people you already follow there."
msgstr ""
-#: actions/subscriptions.php:128 actions/subscriptions.php:132
+#. TRANS: Subscription list text when looking at the subscriptions for a of a user other
+#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
+#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
+#. TRANS: as an anonymous user. %s is the user nickname.
+#: actions/subscriptions.php:143 actions/subscriptions.php:149
#, php-format
msgid "%s is not listening to anyone."
msgstr ""
-#: actions/subscriptions.php:208
+#: actions/subscriptions.php:178
+#, php-format
+msgid "Subscription feed for %s (Atom)"
+msgstr ""
+
+#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
+#: actions/subscriptions.php:242
msgid "Jabber"
msgstr ""
-#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115
+#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
+#: actions/subscriptions.php:257
msgid "SMS"
msgstr ""
@@ -3184,11 +5840,21 @@ msgstr ""
msgid "Notices tagged with %1$s, page %2$d"
msgstr ""
+#: actions/tag.php:87
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (RSS 1.0)"
+msgstr "Ροή φίλων του/της %s (RSS 1.0)"
+
#: actions/tag.php:93
#, php-format
msgid "Notice feed for tag %s (RSS 2.0)"
msgstr "Ροή φίλων του/της %s (RSS 2.0)"
+#: actions/tag.php:99
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (Atom)"
+msgstr "Ροή φίλων του/της %s (Atom)"
+
#: actions/tagother.php:39
msgid "No ID argument."
msgstr ""
@@ -3203,7 +5869,7 @@ msgid "User profile"
msgstr "Προφίλ χρήστη"
#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:103
+#: lib/userprofile.php:107
msgid "Photo"
msgstr ""
@@ -3230,6 +5896,11 @@ msgstr "Απέτυχε η αποθήκευση του προφίλ."
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
+#: actions/tagrss.php:35
+#, fuzzy
+msgid "No such tag."
+msgstr "Κανένας τέτοιος χρήστης."
+
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Δεν μπορείτε να κάνετε φραγή στον εαυτό σας!"
@@ -3246,6 +5917,11 @@ msgstr ""
msgid "No profile ID in request."
msgstr ""
+#: actions/unsubscribe.php:98
+#, fuzzy
+msgid "Unsubscribed"
+msgstr "Απέτυχε η συνδρομή."
+
#: actions/updateprofile.php:64 actions/userauthorization.php:337
#, php-format
msgid ""
@@ -3253,56 +5929,98 @@ msgid ""
msgstr ""
#. TRANS: User admin panel title
-#: actions/useradminpanel.php:59
+#: actions/useradminpanel.php:58
msgctxt "TITLE"
msgid "User"
msgstr ""
-#: actions/useradminpanel.php:70
-msgid "User settings for this StatusNet site."
+#. TRANS: Instruction for user admin panel.
+#: actions/useradminpanel.php:69
+msgid "User settings for this StatusNet site"
msgstr ""
-#: actions/useradminpanel.php:149
+#. TRANS: Form validation error in user admin panel when a non-numeric character limit was set.
+#: actions/useradminpanel.php:147
msgid "Invalid bio limit. Must be numeric."
msgstr ""
-#: actions/useradminpanel.php:155
-msgid "Invalid welcome text. Max length is 255 characters."
+#. TRANS: Form validation error in user admin panel when welcome text is too long.
+#: actions/useradminpanel.php:154
+msgid "Invalid welcome text. Maximum length is 255 characters."
msgstr ""
-#: actions/useradminpanel.php:165
+#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
+#. TRANS: users in user admin panel. %1$s is the invalid nickname.
+#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not user."
+msgid "Invalid default subscripton: '%1$s' is not a user."
msgstr ""
-#: actions/useradminpanel.php:222
+#. TRANS: Link description in user account settings menu.
+#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
+#: lib/personalgroupnav.php:112
+#, fuzzy
+msgid "Profile"
+msgstr "Προφίλ χρήστη"
+
+#. TRANS: Field label in user admin panel for setting the character limit for the bio field.
+#: actions/useradminpanel.php:220
msgid "Bio Limit"
msgstr ""
-#: actions/useradminpanel.php:223
+#. TRANS: Tooltip in user admin panel for setting the character limit for the bio field.
+#: actions/useradminpanel.php:222
msgid "Maximum length of a profile bio in characters."
msgstr ""
+#. TRANS: Form legend in user admin panel.
#: actions/useradminpanel.php:231
msgid "New users"
msgstr "Νέοι χρήστες"
+#. TRANS: Field label in user admin panel for setting new user welcome text.
#: actions/useradminpanel.php:236
-msgid "Welcome text for new users (Max 255 chars)."
+#, fuzzy
+msgid "New user welcome"
+msgstr "Νέοι χρήστες"
+
+#. TRANS: Tooltip in user admin panel for setting new user welcome text.
+#: actions/useradminpanel.php:238
+msgid "Welcome text for new users (maximum 255 characters)."
msgstr ""
-#: actions/useradminpanel.php:242
+#. TRANS: Field label in user admin panel for setting default subscription for new users.
+#: actions/useradminpanel.php:244
+#, fuzzy
+msgid "Default subscription"
+msgstr "Όλες οι συνδρομές"
+
+#. TRANS: Tooltip in user admin panel for setting default subscription for new users.
+#: actions/useradminpanel.php:246
msgid "Automatically subscribe new users to this user."
msgstr "Γίνε συνδρομητής αυτού του χρήστη"
-#: actions/useradminpanel.php:251
+#. TRANS: Form legend in user admin panel.
+#: actions/useradminpanel.php:256
msgid "Invitations"
msgstr "Προσκλήσεις"
-#: actions/useradminpanel.php:258
+#. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail.
+#: actions/useradminpanel.php:262
+#, fuzzy
+msgid "Invitations enabled"
+msgstr "Προσκλήσεις"
+
+#. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail.
+#: actions/useradminpanel.php:265
msgid "Whether to allow users to invite new users."
msgstr ""
+#. TRANS: Title for button to save user settings in user admin panel.
+#: actions/useradminpanel.php:302
+msgid "Save user settings"
+msgstr ""
+
#: actions/userauthorization.php:105
msgid "Authorize subscription"
msgstr "Εξουσιοδοτημένη συνδρομή"
@@ -3314,6 +6032,13 @@ msgid ""
"click “Reject”."
msgstr ""
+#. TRANS: Menu item for site administration
+#: actions/userauthorization.php:196 actions/version.php:167
+#: lib/adminpanelaction.php:403
+#, fuzzy
+msgid "License"
+msgstr "Σύνδεσμοι"
+
#: actions/userauthorization.php:217
msgid "Accept"
msgstr "Αποδοχή"
@@ -3335,6 +6060,11 @@ msgstr "Εξουσιοδοτημένη συνδρομή"
msgid "No authorization request!"
msgstr ""
+#: actions/userauthorization.php:254
+#, fuzzy
+msgid "Subscription authorized"
+msgstr "Γίνε συνδρομητής αυτού του χρήστη"
+
#: actions/userauthorization.php:256
msgid ""
"The subscription has been authorized, but no callback URL was passed. Check "
@@ -3388,11 +6118,13 @@ msgstr ""
msgid "Wrong image type for avatar URL ‘%s’."
msgstr ""
-#: actions/userdesignsettings.php:76 lib/designsettings.php:65
+#. TRANS: Page title for profile design page.
+#: actions/userdesignsettings.php:76 lib/designsettings.php:63
msgid "Profile design"
msgstr ""
-#: actions/userdesignsettings.php:87 lib/designsettings.php:76
+#. TRANS: Instructions for profile design page.
+#: actions/userdesignsettings.php:87 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -3412,6 +6144,11 @@ msgstr "%1$s και φίλοι, σελίδα 2%$d"
msgid "Search for more groups"
msgstr ""
+#: actions/usergroups.php:159
+#, fuzzy, php-format
+msgid "%s is not a member of any group."
+msgstr "Δεν είστε μέλος καμίας ομάδας."
+
#: actions/usergroups.php:164
#, php-format
msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
@@ -3423,7 +6160,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:76
+#: lib/atomusernoticefeed.php:75
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr ""
@@ -3471,42 +6208,119 @@ msgstr ""
msgid "Plugins"
msgstr ""
+#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
+#: actions/version.php:198 lib/action.php:885
+#, fuzzy
+msgid "Version"
+msgstr "Προσωπικά"
+
#: actions/version.php:199
msgid "Author(s)"
msgstr ""
+#. TRANS: Activity title when marking a notice as favorite.
+#: classes/Fave.php:164 lib/favorform.php:143
+msgid "Favor"
+msgstr ""
+
+#. TRANS: Ntofication given when a user marks a notice as favorite.
+#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
+#: classes/Fave.php:167
+#, php-format
+msgid "%1$s marked notice %2$s as a favorite."
+msgstr ""
+
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:143
+#: classes/File.php:156
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:175
+#: classes/File.php:188
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
-#: classes/File.php:190
+#. TRANS: %1$s is used for plural.
+#: classes/File.php:204
#, php-format
msgid ""
+"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
+"Try to upload a smaller version."
+msgid_plural ""
"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. "
"Try to upload a smaller version."
-msgstr ""
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
-#. TRANS: %d (number) is the user quota in bytes.
-#: classes/File.php:202
+#. TRANS: %d (number) is the user quota in bytes and is used for plural.
+#: classes/File.php:217
#, php-format
-msgid "A file this large would exceed your user quota of %d bytes."
-msgstr ""
+msgid "A file this large would exceed your user quota of %d byte."
+msgid_plural "A file this large would exceed your user quota of %d bytes."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
-#. TRANS: $d (number) is the monthly user quota in bytes.
-#: classes/File.php:211
+#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
+#: classes/File.php:229
#, php-format
-msgid "A file this large would exceed your monthly quota of %d bytes."
+msgid "A file this large would exceed your monthly quota of %d byte."
+msgid_plural "A file this large would exceed your monthly quota of %d bytes."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client exception thrown if a file upload does not have a valid name.
+#: classes/File.php:276 classes/File.php:291
+#, fuzzy
+msgid "Invalid filename."
+msgstr "Μήνυμα"
+
+#. TRANS: Exception thrown when joining a group fails.
+#: classes/Group_member.php:51
+#, fuzzy
+msgid "Group join failed."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#. TRANS: Exception thrown when trying to leave a group the user is not a member of.
+#: classes/Group_member.php:64
+#, fuzzy
+msgid "Not part of group."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#. TRANS: Exception thrown when trying to leave a group fails.
+#: classes/Group_member.php:72
+#, fuzzy
+msgid "Group leave failed."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#. TRANS: Exception thrown providing an invalid profile ID.
+#. TRANS: %s is the invalid profile ID.
+#: classes/Group_member.php:85
+#, php-format
+msgid "Profile ID %s is invalid."
+msgstr ""
+
+#. TRANS: Exception thrown providing an invalid group ID.
+#. TRANS: %s is the invalid group ID.
+#: classes/Group_member.php:98
+#, php-format
+msgid "Group ID %s is invalid."
+msgstr ""
+
+#. TRANS: Activity title.
+#: classes/Group_member.php:147 lib/joinform.php:114
+msgid "Join"
+msgstr "Συμμετοχή"
+
+#. TRANS: Success message for subscribe to group attempt through OStatus.
+#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
+#: classes/Group_member.php:151
+#, php-format
+msgid "%1$s has joined group %2$s."
msgstr ""
#. TRANS: Server exception thrown when updating a local group fails.
@@ -3522,15 +6336,27 @@ msgid "Could not create login token for %s"
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:537
msgid "No database name or DSN found anywhere."
msgstr ""
#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them.
-#: classes/Message.php:46
+#: classes/Message.php:45
msgid "You are banned from sending direct messages."
msgstr ""
+#. TRANS: Message given when a message could not be stored on the server.
+#: classes/Message.php:69
+#, fuzzy
+msgid "Could not insert message."
+msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
+
+#. TRANS: Message given when a message could not be updated on the server.
+#: classes/Message.php:80
+#, fuzzy
+msgid "Could not update message with new URI."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
#. TRANS: Server exception thrown when a user profile for a notice cannot be found.
#. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number).
#: classes/Notice.php:98
@@ -3538,155 +6364,221 @@ msgstr ""
msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
+#. TRANS: Server exception. %s are the error details.
+#: classes/Notice.php:199
+#, fuzzy, php-format
+msgid "Database error inserting hashtag: %s"
+msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s"
+
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:265
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr ""
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:270
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:276
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:283
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:291
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr ""
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:358 classes/Notice.php:385
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr ""
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:899
-msgid "Bad type provided to saveKnownGroups"
+#: classes/Notice.php:914
+msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:998
+#: classes/Notice.php:1013
msgid "Problem saving group inbox."
msgstr ""
+#. TRANS: Server exception thrown when a reply cannot be saved.
+#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
+#: classes/Notice.php:1127
+#, php-format
+msgid "Could not save reply for %1$d, %2$d."
+msgstr ""
+
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1759
+#: classes/Notice.php:1646
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
+#. TRANS: Full name of a profile or group followed by nickname in parens
+#: classes/Profile.php:172 classes/User_group.php:242
+#, php-format
+msgctxt "FANCYNAME"
+msgid "%1$s (%2$s)"
+msgstr ""
+
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:737
+#: classes/Profile.php:765
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:746
+#: classes/Profile.php:774
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
+#. TRANS: Exception thrown when a right for a non-existing user profile is checked.
+#: classes/Remote_profile.php:54
+#, fuzzy
+msgid "Missing profile."
+msgstr "Προφίλ χρήστη"
+
+#. TRANS: Exception thrown when a tag cannot be saved.
+#: classes/Status_network.php:338
+#, fuzzy
+msgid "Unable to save tag."
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:77 lib/oauthstore.php:482
msgid "You have been banned from subscribing."
msgstr ""
+#. TRANS: Exception thrown when trying to subscribe while already subscribed.
+#: classes/Subscription.php:82
+#, fuzzy
+msgid "Already subscribed!"
+msgstr "Απέτυχε η συνδρομή."
+
#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user.
-#: classes/Subscription.php:85
+#: classes/Subscription.php:87
msgid "User has blocked you."
msgstr ""
+#. TRANS: Exception thrown when trying to unsibscribe without a subscription.
+#: classes/Subscription.php:176
+#, fuzzy
+msgid "Not subscribed!"
+msgstr "Απέτυχε η συνδρομή."
+
#. TRANS: Exception thrown when trying to unsubscribe a user from themselves.
-#: classes/Subscription.php:178
+#: classes/Subscription.php:183
msgid "Could not delete self-subscription."
msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server.
-#: classes/Subscription.php:206
+#: classes/Subscription.php:211
msgid "Could not delete subscription OMB token."
msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
#. TRANS: Exception thrown when a subscription could not be deleted on the server.
-#: classes/Subscription.php:218
+#: classes/Subscription.php:223
msgid "Could not delete subscription."
msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
+#. TRANS: Activity tile when subscribing to another person.
+#: classes/Subscription.php:265
+msgid "Follow"
+msgstr ""
+
+#. TRANS: Notification given when one person starts following another.
+#. TRANS: %1$s is the subscriber, %2$s is the subscribed.
+#: classes/Subscription.php:268
+#, php-format
+msgid "%1$s is now following %2$s."
+msgstr ""
+
#. TRANS: Notice given on user registration.
#. TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
-#: classes/User.php:365
+#: classes/User.php:395
#, php-format
msgid "Welcome to %1$s, @%2$s!"
msgstr ""
+#. TRANS: Server exception.
+#: classes/User.php:918
+msgid "No single user defined for single-user mode."
+msgstr ""
+
+#. TRANS: Server exception.
+#: classes/User.php:922
+msgid "Single-user mode code called when not enabled."
+msgstr ""
+
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:496
+#: classes/User_group.php:516
msgid "Could not create group."
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:506
+#: classes/User_group.php:526
msgid "Could not set group URI."
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:529
+#: classes/User_group.php:549
msgid "Could not set group membership."
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:564
msgid "Could not save local group info."
msgstr "Απέτυχε η αποθήκευση του προφίλ."
#. TRANS: Link title attribute in user account settings menu.
-#: lib/accountsettingsaction.php:109
+#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
msgstr "Αλλάξτε τις ρυθμίσεις του προφίλ σας"
#. TRANS: Link title attribute in user account settings menu.
-#: lib/accountsettingsaction.php:116
+#: lib/accountsettingsaction.php:111
msgid "Upload an avatar"
msgstr ""
#. TRANS: Link title attribute in user account settings menu.
-#: lib/accountsettingsaction.php:123
+#: lib/accountsettingsaction.php:118
msgid "Change your password"
msgstr "Αλλάξτε τον κωδικό σας"
#. TRANS: Link title attribute in user account settings menu.
-#: lib/accountsettingsaction.php:130
+#: lib/accountsettingsaction.php:125
msgid "Change email handling"
msgstr ""
#. TRANS: Link title attribute in user account settings menu.
-#: lib/accountsettingsaction.php:137
+#: lib/accountsettingsaction.php:132
msgid "Design your profile"
msgstr "Σχεδιάστε το προφίλ σας"
#. TRANS: Link title attribute in user account settings menu.
-#: lib/accountsettingsaction.php:144
+#: lib/accountsettingsaction.php:139
msgid "Other options"
msgstr ""
#. TRANS: Link description in user account settings menu.
-#: lib/accountsettingsaction.php:146
+#: lib/accountsettingsaction.php:141
msgid "Other"
msgstr ""
@@ -3696,115 +6588,235 @@ msgstr ""
msgid "%1$s - %2$s"
msgstr ""
+#. TRANS: Page title for a page without a title set.
+#: lib/action.php:164
+#, fuzzy
+msgid "Untitled page"
+msgstr "Ενότητα χωρίς τίτλο"
+
+#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
+#: lib/action.php:312
+msgctxt "TOOLTIP"
+msgid "Show more"
+msgstr ""
+
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:449
+#: lib/action.php:531
msgid "Primary site navigation"
msgstr ""
#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:455
+#: lib/action.php:537
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr ""
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
+#: lib/action.php:540
+#, fuzzy
+msgctxt "MENU"
+msgid "Personal"
+msgstr "Προσωπικά"
+
+#. TRANS: Tooltip for main menu option "Account"
+#: lib/action.php:542
+#, fuzzy
+msgctxt "TOOLTIP"
+msgid "Change your email, avatar, password, profile"
+msgstr "Αλλάξτε τον κωδικό σας"
+
+#. TRANS: Main menu option when logged in for access to user settings
+#: lib/action.php:545
+msgid "Account"
+msgstr "Λογαριασμός"
+
+#. TRANS: Tooltip for main menu option "Services"
+#: lib/action.php:547
+#, fuzzy
+msgctxt "TOOLTIP"
+msgid "Connect to services"
+msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s"
+
#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:468
+#: lib/action.php:550
msgid "Connect"
msgstr "Σύνδεση"
+#. TRANS: Tooltip for menu option "Admin"
+#: lib/action.php:553
+#, fuzzy
+msgctxt "TOOLTIP"
+msgid "Change site configuration"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
+#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/action.php:556 lib/groupnav.php:117
+#, fuzzy
+msgctxt "MENU"
+msgid "Admin"
+msgstr "Διαχειριστής"
+
+#. TRANS: Tooltip for main menu option "Invite"
+#: lib/action.php:560
+#, fuzzy, php-format
+msgctxt "TOOLTIP"
+msgid "Invite friends and colleagues to join you on %s"
+msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s"
+
#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:481
+#: lib/action.php:563
msgctxt "MENU"
msgid "Invite"
msgstr "Μόνο με πρόσκληση"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:487
+#: lib/action.php:569
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr ""
#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:490
+#: lib/action.php:572
msgctxt "MENU"
msgid "Logout"
-msgstr "Λογότυπο"
+msgstr "Έξοδος"
+
+#. TRANS: Tooltip for main menu option "Register"
+#: lib/action.php:577
+#, fuzzy
+msgctxt "TOOLTIP"
+msgid "Create an account"
+msgstr "Δημιουργία ενός λογαριασμού"
#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:498
+#: lib/action.php:580
msgctxt "MENU"
msgid "Register"
msgstr "Εγγραφή"
#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:501
+#: lib/action.php:583
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr ""
+#. TRANS: Main menu option when not logged in to log in
+#: lib/action.php:586
+msgctxt "MENU"
+msgid "Login"
+msgstr "Είσοδος"
+
#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:507
+#: lib/action.php:589
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Βοήθεια"
+#. TRANS: Main menu option for help on the StatusNet site
+#: lib/action.php:592
+msgctxt "MENU"
+msgid "Help"
+msgstr "Βοήθεια"
+
#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:513
+#: lib/action.php:595
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr ""
-#: lib/action.php:516
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
+#: lib/action.php:598
msgctxt "MENU"
msgid "Search"
msgstr ""
+#. TRANS: DT element for site notice. String is hidden in default CSS.
+#. TRANS: Menu item for site administration
+#: lib/action.php:620 lib/adminpanelaction.php:387
+#, fuzzy
+msgid "Site notice"
+msgstr "Διαγραφή μηνύματος"
+
+#. TRANS: DT element for local views block. String is hidden in default CSS.
+#: lib/action.php:687
+#, fuzzy
+msgid "Local views"
+msgstr "Τοπικός"
+
+#. TRANS: DT element for page notice. String is hidden in default CSS.
+#: lib/action.php:757
+#, fuzzy
+msgid "Page notice"
+msgstr "Διαγραφή μηνύματος"
+
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:778
+#: lib/action.php:858
msgid "Secondary site navigation"
msgstr ""
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:784
+#: lib/action.php:864
msgid "Help"
msgstr "Βοήθεια"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:787
+#: lib/action.php:867
msgid "About"
msgstr "Περί"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:790
+#: lib/action.php:870
msgid "FAQ"
msgstr "Συχνές ερωτήσεις"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:795
+#: lib/action.php:875
msgid "TOS"
msgstr ""
-#. TRANS: Secondary navigation menu option.
-#: lib/action.php:802
+#. TRANS: Secondary navigation menu option leading to privacy policy.
+#: lib/action.php:879
+#, fuzzy
+msgid "Privacy"
+msgstr "Ιδιωτικό"
+
+#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
+#: lib/action.php:882
msgid "Source"
msgstr ""
-#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:808
+#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
+#. TRANS: StatusNet site, where to report bugs, ...
+#: lib/action.php:889
msgid "Contact"
msgstr "Επικοινωνία"
-#: lib/action.php:810
+#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
+#: lib/action.php:892
msgid "Badge"
msgstr ""
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:839
+#: lib/action.php:921
msgid "StatusNet software license"
msgstr ""
+#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set.
+#. TRANS: Text between [] is a link description, text between () is the link itself.
+#. TRANS: Make sure there is no whitespace between "]" and "(".
+#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
+#: lib/action.php:928
+#, 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%%). "
+
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:849
+#: lib/action.php:931
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr ""
@@ -3814,7 +6826,7 @@ msgstr ""
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:856
+#: lib/action.php:938
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -3823,65 +6835,119 @@ msgid ""
msgstr ""
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:872
+#: lib/action.php:954
msgid "Site content license"
msgstr ""
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:879
+#: lib/action.php:961
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:886
+#: lib/action.php:968
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:890
+#: lib/action.php:972
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:904
+#: lib/action.php:1004
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
+#. TRANS: DT element for pagination (previous/next, etc.).
+#: lib/action.php:1340
+#, fuzzy
+msgid "Pagination"
+msgstr "Εγγραφή"
+
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1254
+#: lib/action.php:1351
msgid "After"
msgstr ""
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1264
+#: lib/action.php:1361
msgid "Before"
msgstr ""
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
-#: lib/activity.php:122
+#: lib/activity.php:125
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr ""
+
#. TRANS: Client exception thrown when there is no source attribute.
-#: lib/activityutils.php:203
+#: lib/activityutils.php:200
msgid "Can't handle remote content yet."
msgstr ""
#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet.
-#: lib/activityutils.php:240
+#: lib/activityutils.php:237
msgid "Can't handle embedded XML content yet."
msgstr ""
#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet.
-#: lib/activityutils.php:245
+#: lib/activityutils.php:242
msgid "Can't handle embedded Base64 content yet."
msgstr ""
@@ -3911,220 +6977,357 @@ msgstr ""
msgid "Unable to delete design setting."
msgstr ""
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:337
+#, fuzzy
+msgid "Basic site configuration"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
#. TRANS: Menu item for site administration
#: lib/adminpanelaction.php:339
msgctxt "MENU"
msgid "Site"
msgstr ""
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:345
+#, fuzzy
+msgid "Design configuration"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/adminpanelaction.php:347 lib/groupnav.php:135
+#, fuzzy
+msgctxt "MENU"
+msgid "Design"
+msgstr "Προσωπικά"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:353
+#, fuzzy
+msgid "User configuration"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
+#. TRANS: Menu item for site administration
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
msgid "User"
msgstr ""
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:361
+#, fuzzy
+msgid "Access configuration"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:369
+#, fuzzy
+msgid "Paths configuration"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:377
+#, fuzzy
+msgid "Sessions configuration"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:385
+#, fuzzy
+msgid "Edit site notice"
+msgstr "Διαγραφή μηνύματος"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:393
+#, fuzzy
+msgid "Snapshots configuration"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:401
+msgid "Set site license"
+msgstr ""
+
#. TRANS: Client error 401.
#: lib/apiauth.php:111
msgid "API resource requires read-write access, but you only have read access."
msgstr ""
#. TRANS: OAuth exception thrown when no application is found for a given consumer key.
-#: lib/apiauth.php:175
+#: lib/apiauth.php:177
msgid "No application for that consumer key."
msgstr ""
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:212
+#: lib/apiauth.php:219
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:217
+#: lib/apiauth.php:224
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:258 lib/apiauth.php:290
+#: lib/apiauth.php:266 lib/apiauth.php:293
msgid "Could not authenticate you."
msgstr ""
+#. TRANS: Server error displayed when trying to create an anynymous OAuth consumer.
+#: lib/apioauthstore.php:45
+msgid "Could not create anonymous consumer."
+msgstr ""
+
+#. TRANS: Server error displayed when trying to create an anynymous OAuth application.
+#: lib/apioauthstore.php:69
+msgid "Could not create anonymous OAuth application."
+msgstr ""
+
+#. TRANS: Exception thrown when no token association could be found.
+#: lib/apioauthstore.php:151
+msgid ""
+"Could not find a profile and application associated with the request token."
+msgstr ""
+
+#. TRANS: Exception thrown when no access token can be issued.
+#: lib/apioauthstore.php:186
+msgid "Could not issue access token."
+msgstr ""
+
+#. TRANS: Server error displayed when a database error occurs.
+#: lib/apioauthstore.php:243
+#, fuzzy
+msgid "Database error inserting OAuth application user."
+msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:285
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:182
+#: lib/apioauthstore.php:290
msgid "Failed to delete revoked token."
msgstr ""
-#. TRANS: Form legend.
-#: lib/applicationeditform.php:129
-msgid "Edit application"
-msgstr ""
-
#. TRANS: Form guide.
#: lib/applicationeditform.php:178
msgid "Icon for this application"
msgstr ""
#. TRANS: Form input field instructions.
-#: lib/applicationeditform.php:200
+#. TRANS: %d is the number of available characters for the description.
+#: lib/applicationeditform.php:201
#, php-format
-msgid "Describe your application in %d characters"
-msgstr "Περιγράψτε την ομάδα ή το θέμα χρησιμοποιώντας μέχρι %d χαρακτήρες"
+msgid "Describe your application in %d character"
+msgid_plural "Describe your application in %d characters"
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Form input field instructions.
-#: lib/applicationeditform.php:215
+#: lib/applicationeditform.php:205
+#, fuzzy
+msgid "Describe your application"
+msgstr "Περιγράψτε την ομάδα ή το θέμα"
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:216
msgid "URL of the homepage of this application"
msgstr ""
#. TRANS: Form input field label.
-#: lib/applicationeditform.php:217
+#: lib/applicationeditform.php:218
msgid "Source URL"
msgstr ""
#. TRANS: Form input field instructions.
-#: lib/applicationeditform.php:224
+#: lib/applicationeditform.php:225
msgid "Organization responsible for this application"
msgstr ""
#. TRANS: Form input field instructions.
-#: lib/applicationeditform.php:233
+#: lib/applicationeditform.php:234
msgid "URL for the homepage of the organization"
msgstr ""
#. TRANS: Form input field instructions.
-#: lib/applicationeditform.php:242
+#: lib/applicationeditform.php:243
msgid "URL to redirect to after authentication"
msgstr ""
#. TRANS: Radio button label for application type
-#: lib/applicationeditform.php:269
+#: lib/applicationeditform.php:271
msgid "Browser"
msgstr ""
#. TRANS: Radio button label for application type
-#: lib/applicationeditform.php:286
+#: lib/applicationeditform.php:288
msgid "Desktop"
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:288
+#: lib/applicationeditform.php:290
msgid "Type of application, browser or desktop"
msgstr ""
#. TRANS: Radio button label for access type.
-#: lib/applicationeditform.php:311
+#: lib/applicationeditform.php:314
msgid "Read-only"
msgstr ""
#. TRANS: Radio button label for access type.
-#: lib/applicationeditform.php:330
+#: lib/applicationeditform.php:334
msgid "Read-write"
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:332
+#: lib/applicationeditform.php:336
msgid "Default access for this application: read-only, or read-write"
msgstr ""
#. TRANS: Submit button title.
-#: lib/applicationeditform.php:349
+#: lib/applicationeditform.php:353
msgid "Cancel"
msgstr "Ακύρωση"
+#: lib/applicationlist.php:247
+msgid " by "
+msgstr ""
+
#. TRANS: Application access type
-#: lib/applicationlist.php:135
+#: lib/applicationlist.php:260
msgid "read-write"
msgstr ""
#. TRANS: Application access type
-#: lib/applicationlist.php:137
+#: lib/applicationlist.php:262
msgid "read-only"
msgstr ""
-#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only)
-#: lib/applicationlist.php:143
+#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only")
+#: lib/applicationlist.php:268
#, php-format
msgid "Approved %1$s - \"%2$s\" access."
msgstr ""
+#. TRANS: Access token in the application list.
+#. TRANS: %s are the first 7 characters of the access token.
+#: lib/applicationlist.php:282
+#, php-format
+msgid "Access token starting with: %s"
+msgstr ""
+
#. TRANS: Button label
-#: lib/applicationlist.php:158
+#: lib/applicationlist.php:298
msgctxt "BUTTON"
msgid "Revoke"
msgstr ""
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:88
-msgid "Attachments"
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr ""
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
msgstr ""
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:265
+#: lib/attachmentlist.php:294
msgid "Author"
msgstr ""
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:279
+#: lib/attachmentlist.php:308
msgid "Provider"
msgstr ""
#. TRANS: Title.
-#: lib/attachmentnoticesection.php:68
+#: lib/attachmentnoticesection.php:67
msgid "Notices where this attachment appears"
msgstr ""
#. TRANS: Title.
-#: lib/attachmenttagcloudsection.php:49
+#: lib/attachmenttagcloudsection.php:48
msgid "Tags for this attachment"
msgstr ""
+#. TRANS: Exception thrown when a password change fails.
+#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227
+msgid "Password changing failed."
+msgstr ""
+
+#. TRANS: Exception thrown when a password change attempt fails because it is not allowed.
+#: lib/authenticationplugin.php:238
+msgid "Password changing is not allowed."
+msgstr ""
+
#. TRANS: Title for the form to block a user.
-#: lib/blockform.php:70
+#: lib/blockform.php:68
msgid "Block"
msgstr ""
-#: lib/channel.php:157 lib/channel.php:177
+#. TRANS: Title for command results.
+#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
msgstr ""
-#: lib/channel.php:229 lib/mailhandler.php:142
+#. TRANS: Title for command results.
+#: lib/channel.php:194
+msgid "AJAX error"
+msgstr ""
+
+#. TRANS: E-mail subject when a command has completed.
+#: lib/channel.php:233 lib/mailhandler.php:143
msgid "Command complete"
msgstr ""
+#. TRANS: E-mail subject when a command has failed.
+#: lib/channel.php:244
+#, fuzzy
+msgid "Command failed"
+msgstr "Εσείς και οι φίλοι σας"
+
#. TRANS: Command exception text shown when a notice ID is requested that does not exist.
-#: lib/command.php:84 lib/command.php:108
+#: lib/command.php:82 lib/command.php:106
msgid "Notice with that id does not exist."
msgstr ""
#. TRANS: Command exception text shown when a last user notice is requested and it does not exist.
#. TRANS: Error text shown when a last user notice is requested and it does not exist.
-#: lib/command.php:101 lib/command.php:630
+#: lib/command.php:99 lib/command.php:630
msgid "User has no last notice."
msgstr ""
+#. TRANS: Message given requesting a profile for a non-existing user.
+#. TRANS: %s is the nickname of the user for which the profile could not be found.
+#: lib/command.php:128
+#, fuzzy, php-format
+msgid "Could not find a user with nickname %s."
+msgstr "Απέτυχε η ενημέρωση χρήστη μέσω επιβεβαιωμένης email διεύθυνσης."
+
#. TRANS: Message given getting a non-existing user.
#. TRANS: %s is the nickname of the user that could not be found.
-#: lib/command.php:150
+#: lib/command.php:148
#, php-format
msgid "Could not find a local user with nickname %s."
msgstr ""
#. TRANS: Error text shown when an unimplemented command is given.
-#: lib/command.php:185
+#: lib/command.php:183
msgid "Sorry, this command is not yet implemented."
msgstr ""
#. TRANS: Command exception text shown when a user tries to nudge themselves.
-#: lib/command.php:231
+#: lib/command.php:229
msgid "It does not make a lot of sense to nudge yourself!"
msgstr ""
#. TRANS: Message given having nudged another user.
#. TRANS: %s is the nickname of the user that was nudged.
-#: lib/command.php:240
+#: lib/command.php:238
#, php-format
msgid "Nudge sent to %s."
msgstr ""
@@ -4133,7 +7336,7 @@ msgstr ""
#. TRANS: %1$s is the number of other user the user is subscribed to.
#. TRANS: %2$s is the number of users that are subscribed to the user.
#. TRANS: %3$s is the number of notices the user has sent.
-#: lib/command.php:270
+#: lib/command.php:268
#, php-format
msgid ""
"Subscriptions: %1$s\n"
@@ -4142,156 +7345,217 @@ msgid ""
msgstr ""
#. TRANS: Text shown when a notice has been marked as favourite successfully.
-#: lib/command.php:314
+#: lib/command.php:312
msgid "Notice marked as fave."
msgstr ""
#. TRANS: Message given having added a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: lib/command.php:360
+#: lib/command.php:357
#, php-format
msgid "%1$s joined group %2$s."
msgstr ""
#. TRANS: Message given having removed a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: lib/command.php:408
+#: lib/command.php:405
#, php-format
msgid "%1$s left group %2$s."
msgstr ""
+#. TRANS: Whois output.
+#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
+#: lib/command.php:426
+#, php-format
+msgctxt "WHOIS"
+msgid "%1$s (%2$s)"
+msgstr ""
+
+#. TRANS: Whois output. %s is the full name of the queried user.
+#: lib/command.php:430
+#, fuzzy, php-format
+msgid "Fullname: %s"
+msgstr "Ονοματεπώνυμο"
+
+#. TRANS: Whois output. %s is the location of the queried user.
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is a location.
+#: lib/command.php:434 lib/mail.php:278
+#, fuzzy, php-format
+msgid "Location: %s"
+msgstr "Τοποθεσία"
+
+#. TRANS: Whois output. %s is the homepage of the queried user.
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is a homepage.
+#: lib/command.php:438 lib/mail.php:282
+#, fuzzy, php-format
+msgid "Homepage: %s"
+msgstr "Αρχική σελίδα"
+
+#. TRANS: Whois output. %s is the bio information of the queried user.
+#: lib/command.php:442
+#, fuzzy, php-format
+msgid "About: %s"
+msgstr "Περί"
+
#. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server).
-#: lib/command.php:474
+#. TRANS: %s is a remote profile.
+#: lib/command.php:471
#, php-format
msgid ""
"%s is a remote profile; you can only send direct messages to users on the "
"same server."
msgstr ""
-#. TRANS: Message given if content is too long.
+#. TRANS: Message given if content is too long. %1$sd is used for plural.
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
-#: lib/command.php:491 lib/xmppmanager.php:403
+#: lib/command.php:488
#, php-format
-msgid "Message too long - maximum is %1$d characters, you sent %2$d."
-msgstr ""
+msgid "Message too long - maximum is %1$d character, you sent %2$d."
+msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Error text shown sending a direct message fails with an unknown reason.
-#: lib/command.php:517
+#: lib/command.php:516
msgid "Error sending direct message."
msgstr ""
+#. TRANS: Message given having repeated a notice from another user.
+#. TRANS: %s is the name of the user for which the notice was repeated.
+#: lib/command.php:553
+#, fuzzy, php-format
+msgid "Notice from %s repeated."
+msgstr "Ρυθμίσεις OpenID"
+
#. TRANS: Error text shown when repeating a notice fails with an unknown reason.
-#: lib/command.php:557
+#: lib/command.php:556
msgid "Error repeating notice."
msgstr ""
-#. TRANS: Message given if content of a notice for a reply is too long.
+#. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural.
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
-#: lib/command.php:592
+#: lib/command.php:591
#, php-format
-msgid "Notice too long - maximum is %1$d characters, you sent %2$d."
-msgstr ""
+msgid "Notice too long - maximum is %1$d character, you sent %2$d."
+msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Text shown having sent a reply to a notice successfully.
#. TRANS: %s is the nickname of the user of the notice the reply was sent to.
-#: lib/command.php:603
+#: lib/command.php:604
#, php-format
msgid "Reply to %s sent."
msgstr ""
#. TRANS: Error text shown when a reply to a notice fails with an unknown reason.
-#: lib/command.php:606
+#: lib/command.php:607
msgid "Error saving notice."
msgstr ""
#. TRANS: Error text shown when no username was provided when issuing a subscribe command.
-#: lib/command.php:655
+#: lib/command.php:654
msgid "Specify the name of the user to subscribe to."
msgstr ""
#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command.
-#: lib/command.php:664
+#: lib/command.php:663
msgid "Can't subscribe to OMB profiles by command."
msgstr ""
#. TRANS: Text shown after having subscribed to another user successfully.
#. TRANS: %s is the name of the user the subscription was requested for.
-#: lib/command.php:672
+#: lib/command.php:671
#, php-format
msgid "Subscribed to %s."
msgstr ""
#. TRANS: Error text shown when no username was provided when issuing an unsubscribe command.
#. TRANS: Error text shown when no username was provided when issuing the command.
-#: lib/command.php:694 lib/command.php:804
+#: lib/command.php:692 lib/command.php:803
msgid "Specify the name of the user to unsubscribe from."
msgstr ""
#. TRANS: Text shown after having unsubscribed from another user successfully.
#. TRANS: %s is the name of the user the unsubscription was requested for.
-#: lib/command.php:705
+#: lib/command.php:703
#, php-format
msgid "Unsubscribed from %s."
msgstr ""
#. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented.
#. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented.
-#: lib/command.php:724 lib/command.php:750
+#: lib/command.php:723 lib/command.php:749
msgid "Command not yet implemented."
msgstr ""
#. TRANS: Text shown when issuing the command "off" successfully.
-#: lib/command.php:728
+#: lib/command.php:727
msgid "Notification off."
msgstr ""
#. TRANS: Error text shown when the command "off" fails for an unknown reason.
-#: lib/command.php:731
+#: lib/command.php:730
msgid "Can't turn off notification."
msgstr ""
#. TRANS: Text shown when issuing the command "on" successfully.
-#: lib/command.php:754
+#: lib/command.php:753
msgid "Notification on."
msgstr ""
#. TRANS: Error text shown when the command "on" fails for an unknown reason.
-#: lib/command.php:757
+#: lib/command.php:756
msgid "Can't turn on notification."
msgstr ""
#. TRANS: Error text shown when issuing the login command while login is disabled.
-#: lib/command.php:771
+#: lib/command.php:770
msgid "Login command is disabled."
msgstr ""
#. TRANS: Text shown after issuing the login command successfully.
#. TRANS: %s is a logon link..
-#: lib/command.php:784
+#: lib/command.php:783
#, php-format
msgid "This link is useable only once and is valid for only 2 minutes: %s."
msgstr ""
#. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user).
#. TRANS: %s is the name of the user the unsubscription was requested for.
-#: lib/command.php:813
+#: lib/command.php:812
#, php-format
msgid "Unsubscribed %s."
msgstr ""
+#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions.
+#: lib/command.php:830
+#, fuzzy
+msgid "You are not subscribed to anyone."
+msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
+
#. TRANS: Text shown after requesting other users a user is subscribed to.
#. TRANS: This message supports plural forms. This message is followed by a
#. TRANS: hard coded space and a comma separated list of subscribed users.
-#: lib/command.php:836
+#: lib/command.php:835
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
+#. TRANS: Text shown after requesting other users that are subscribed to a user
+#. TRANS: (followers) without having any subscribers.
+#: lib/command.php:857
+#, fuzzy
+msgid "No one is subscribed to you."
+msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
+
#. TRANS: Text shown after requesting other users that are subscribed to a user (followers).
#. TRANS: This message supports plural forms. This message is followed by a
#. TRANS: hard coded space and a comma separated list of subscribing users.
-#: lib/command.php:863
+#: lib/command.php:862
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
@@ -4299,21 +7563,21 @@ msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητέ
#. TRANS: Text shown after requesting groups a user is subscribed to without having
#. TRANS: any group subscriptions.
-#: lib/command.php:885
+#: lib/command.php:884
msgid "You are not a member of any groups."
msgstr "Δεν είστε μέλος καμίας ομάδας."
#. TRANS: Text shown after requesting groups a user is subscribed to.
#. TRANS: This message supports plural forms. This message is followed by a
#. TRANS: hard coded space and a comma separated list of subscribed groups.
-#: lib/command.php:890
+#: lib/command.php:889
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Ομάδες με τα περισσότερα μέλη"
msgstr[1] "Ομάδες με τα περισσότερα μέλη"
#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings.
-#: lib/command.php:905
+#: lib/command.php:904
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@@ -4355,87 +7619,150 @@ msgid ""
"tracking - not yet implemented.\n"
msgstr ""
-#: lib/common.php:136
-msgid "I looked for configuration files in the following places: "
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#: lib/common.php:150
+msgid "No configuration file found."
msgstr ""
-#: lib/common.php:138
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#. TRANS: Is followed by a list of directories (separated by HTML breaks).
+#: lib/common.php:153
+msgid "I looked for configuration files in the following places:"
+msgstr ""
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#: lib/common.php:156
msgid "You may wish to run the installer to fix this."
msgstr ""
-#: lib/common.php:139
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#. TRANS: The text is link text that leads to the installer page.
+#: lib/common.php:160
msgid "Go to the installer."
msgstr ""
-#: lib/connectsettingsaction.php:110
+#. TRANS: Menu item for Instant Messaging settings.
+#: lib/connectsettingsaction.php:106
+msgctxt "MENU"
msgid "IM"
-msgstr "ΙΜ"
+msgstr ""
-#: lib/connectsettingsaction.php:111
+#. TRANS: Tooltip for Instant Messaging menu item.
+#: lib/connectsettingsaction.php:108
msgid "Updates by instant messenger (IM)"
msgstr ""
-#: lib/connectsettingsaction.php:116
+#. TRANS: Menu item for Short Message Service settings.
+#: lib/connectsettingsaction.php:113
+msgctxt "MENU"
+msgid "SMS"
+msgstr ""
+
+#. TRANS: Tooltip for Short Message Service menu item.
+#: lib/connectsettingsaction.php:115
msgid "Updates by SMS"
msgstr ""
-#: lib/connectsettingsaction.php:121
+#. TRANS: Menu item for OuAth connection settings.
+#: lib/connectsettingsaction.php:120
+msgctxt "MENU"
+msgid "Connections"
+msgstr ""
+
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
+#: lib/connectsettingsaction.php:122
msgid "Authorized connected applications"
msgstr ""
-#: lib/dberroraction.php:60
+#: lib/dberroraction.php:59
msgid "Database error"
msgstr ""
-#: lib/designsettings.php:105
+#. TRANS: Label in form on profile design page.
+#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
+#: lib/designsettings.php:104
msgid "Upload file"
msgstr "Προφίλ χρήστη"
+#. TRANS: Instructions for form on profile design page.
#: lib/designsettings.php:109
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
-#: lib/designsettings.php:418
+#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image.
+#: lib/designsettings.php:139
+msgctxt "RADIO"
+msgid "On"
+msgstr ""
+
+#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image.
+#: lib/designsettings.php:156
+msgctxt "RADIO"
+msgid "Off"
+msgstr ""
+
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:264
+msgctxt "BUTTON"
+msgid "Reset"
+msgstr ""
+
+#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
+#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr ""
-#: lib/disfavorform.php:114 lib/disfavorform.php:140
+#: lib/disfavorform.php:114 lib/disfavorform.php:144
msgid "Disfavor this notice"
msgstr ""
-#: lib/favorform.php:114 lib/favorform.php:140
+#: lib/favorform.php:114 lib/favorform.php:143
msgid "Favor this notice"
msgstr ""
-#: lib/favorform.php:140
-msgid "Favor"
-msgstr ""
-
-#: lib/feed.php:85
+#: lib/feed.php:84
msgid "RSS 1.0"
msgstr ""
-#: lib/feed.php:87
+#: lib/feed.php:86
msgid "RSS 2.0"
msgstr ""
-#: lib/feed.php:89
+#: lib/feed.php:88
msgid "Atom"
msgstr ""
-#: lib/feed.php:91
+#: lib/feed.php:90
msgid "FOAF"
msgstr ""
-#: lib/feedlist.php:64
-msgid "Export data"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr ""
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
+#. TRANS: Header for feed links (h2).
+#: lib/feedlist.php:66
+msgid "Feeds"
msgstr ""
#: lib/galleryaction.php:121
msgid "Filter tags"
msgstr ""
+#: lib/galleryaction.php:131
+#, fuzzy
+msgid "All"
+msgstr "Να επιτραπεί"
+
#: lib/galleryaction.php:139
msgid "Select tag to filter"
msgstr ""
@@ -4457,8 +7784,12 @@ msgstr ""
msgid "Grant this user the \"%s\" role"
msgstr ""
+#: lib/groupeditform.php:154
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr "1-64 μικρά γράμματα ή αριθμοί, χωρίς σημεία στίξης ή κενά"
+
#: lib/groupeditform.php:163
-msgid "URL of the homepage or blog of the group or topic"
+msgid "URL of the homepage or blog of the group or topic."
msgstr ""
#: lib/groupeditform.php:168
@@ -4467,19 +7798,27 @@ msgstr "Περιγράψτε την ομάδα ή το θέμα"
#: lib/groupeditform.php:170
#, php-format
-msgid "Describe the group or topic in %d characters"
-msgstr "Περιγράψτε την ομάδα ή το θέμα χρησιμοποιώντας μέχρι %d χαρακτήρες"
+msgid "Describe the group or topic in %d character or less"
+msgid_plural "Describe the group or topic in %d characters or less"
+msgstr[0] ""
+msgstr[1] ""
-#: lib/groupeditform.php:179
+#: lib/groupeditform.php:182
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"
+"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
+#: lib/groupeditform.php:190
+#, php-format
+msgid ""
+"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
+"alias allowed."
+msgid_plural ""
+"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
+"aliases allowed."
+msgstr[0] ""
+msgstr[1] ""
+
#. TRANS: Menu item in the group navigation page.
#: lib/groupnav.php:86
msgctxt "MENU"
@@ -4552,14 +7891,23 @@ msgctxt "TOOLTIP"
msgid "Add or edit %s design"
msgstr ""
+#. TRANS: Title for groups with the most members section.
#: lib/groupsbymemberssection.php:71
msgid "Groups with most members"
msgstr "Ομάδες με τα περισσότερα μέλη"
+#. TRANS: Title for groups with the most posts section.
#: lib/groupsbypostssection.php:71
msgid "Groups with most posts"
msgstr "Ομάδες με τις περισσότερες δημοσιεύσεις"
+#. TRANS: Title for group tag cloud section.
+#. TRANS: %s is a group name.
+#: lib/grouptagcloudsection.php:57
+#, fuzzy, php-format
+msgid "Tags in %s group's notices"
+msgstr "Επεξεργασία ιδιοτήτων της ομάδας %s"
+
#. TRANS: Client exception 406
#: lib/htmloutputter.php:104
msgid "This page is not available in a media type you accept"
@@ -4569,39 +7917,52 @@ msgstr ""
msgid "Unsupported image file format."
msgstr ""
-#: lib/imagefile.php:88
+#. TRANS: Exception thrown when too large a file is uploaded.
+#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
+#: lib/imagefile.php:90
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr ""
-#: lib/imagefile.php:93
+#: lib/imagefile.php:95
msgid "Partial upload."
msgstr ""
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:101 lib/mediafile.php:179
-msgid "System error uploading file."
-msgstr ""
-
-#: lib/imagefile.php:109
+#: lib/imagefile.php:111
msgid "Not an image or corrupt file."
msgstr ""
-#: lib/imagefile.php:122
+#: lib/imagefile.php:160
msgid "Lost our file."
msgstr "Σχεδιάστε το προφίλ σας"
-#: lib/imagefile.php:163 lib/imagefile.php:224
+#: lib/imagefile.php:197 lib/imagefile.php:237
msgid "Unknown file type"
msgstr ""
-#: lib/imagefile.php:244
-msgid "MB"
-msgstr ""
+#. TRANS: Number of megabytes. %d is the number.
+#: lib/imagefile.php:283
+#, php-format
+msgid "%dMB"
+msgid_plural "%dMB"
+msgstr[0] ""
+msgstr[1] ""
-#: lib/imagefile.php:246
-msgid "kB"
-msgstr ""
+#. TRANS: Number of kilobytes. %d is the number.
+#: lib/imagefile.php:287
+#, php-format
+msgid "%dkB"
+msgid_plural "%dkB"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Number of bytes. %d is the number.
+#: lib/imagefile.php:290
+#, php-format
+msgid "%dB"
+msgid_plural "%dB"
+msgstr[0] ""
+msgstr[1] ""
#: lib/jabber.php:387
#, php-format
@@ -4613,10 +7974,6 @@ msgstr ""
msgid "Unknown inbox source %d."
msgstr ""
-#: lib/joinform.php:114
-msgid "Join"
-msgstr "Συμμετοχή"
-
#: lib/leaveform.php:114
msgid "Leave"
msgstr "Αποχώρηση"
@@ -4629,44 +7986,53 @@ msgstr "Σύνδεση με όνομα χρήστη και κωδικό"
msgid "Sign up for a new account"
msgstr "Εγγραφή για ένα νέο λογαριασμό"
-#. TRANS: Subject for address confirmation email
+#. TRANS: Subject for address confirmation email.
#: lib/mail.php:174
msgid "Email address confirmation"
msgstr "Επιβεβαίωση διεύθυνσης email"
#. TRANS: Body for address confirmation email.
-#: lib/mail.php:177
+#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
+#. TRANS: %3$s is the URL to confirm at.
+#: lib/mail.php:179
#, php-format
msgid ""
-"Hey, %s.\n"
+"Hey, %1$s.\n"
"\n"
-"Someone just entered this email address on %s.\n"
+"Someone just entered this email address on %2$s.\n"
"\n"
"If it was you, and you want to confirm your entry, use the URL below:\n"
"\n"
-"\t%s\n"
+"\t%3$s\n"
"\n"
"If not, just ignore this message.\n"
"\n"
"Thanks for your time, \n"
-"%s\n"
+"%2$s\n"
msgstr ""
-#. TRANS: Subject of new-subscriber notification e-mail
-#: lib/mail.php:243
+#. TRANS: Subject of new-subscriber notification e-mail.
+#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
+#: lib/mail.php:246
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr ""
-#: lib/mail.php:248
+#. TRANS: This is a paragraph in a new-subscriber e-mail.
+#. TRANS: %s is a URL where the subscriber can be reported as abusive.
+#: lib/mail.php:253
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
"your subscribers list and report as spam to site administrators at %s"
msgstr ""
-#. TRANS: Main body of new-subscriber notification e-mail
-#: lib/mail.php:254
+#. TRANS: Main body of new-subscriber notification e-mail.
+#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename,
+#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
+#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
+#. TRANS: %7$s is a link to the addressed user's e-mail settings.
+#: lib/mail.php:263
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -4675,26 +8041,30 @@ msgid ""
"\n"
"%4$s%5$s%6$s\n"
"Faithfully yours,\n"
-"%7$s.\n"
+"%2$s.\n"
"\n"
"----\n"
-"Change your email address or notification options at %8$s\n"
+"Change your email address or notification options at %7$s\n"
msgstr ""
-#. TRANS: Profile info line in new-subscriber notification e-mail
-#: lib/mail.php:274
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is biographical information.
+#: lib/mail.php:286
#, php-format
msgid "Bio: %s"
msgstr "Βιογραφικό"
-#. TRANS: Subject of notification mail for new posting email address
-#: lib/mail.php:304
+#. TRANS: Subject of notification mail for new posting email address.
+#. TRANS: %s is the StatusNet sitename.
+#: lib/mail.php:315
#, php-format
msgid "New email address for posting to %s"
msgstr ""
-#. TRANS: Body of notification mail for new posting email address
-#: lib/mail.php:308
+#. TRANS: Body of notification mail for new posting email address.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
+#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
+#: lib/mail.php:321
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -4704,23 +8074,40 @@ msgid ""
"More email instructions at %3$s.\n"
"\n"
"Faithfully yours,\n"
-"%4$s"
+"%1$s"
msgstr ""
-#. TRANS: Subject line for SMS-by-email notification messages
-#: lib/mail.php:433
+#. TRANS: Subject line for SMS-by-email notification messages.
+#. TRANS: %s is the posting user's nickname.
+#: lib/mail.php:442
#, php-format
msgid "%s status"
msgstr "Κατάσταση του/της %s"
-#. TRANS: Subject for 'nudge' notification email
-#: lib/mail.php:484
+#. TRANS: Subject line for SMS-by-email address confirmation message.
+#: lib/mail.php:468
+#, fuzzy
+msgid "SMS confirmation"
+msgstr "Επιβεβαίωση διεύθυνσης email"
+
+#. TRANS: Main body heading for SMS-by-email address confirmation message.
+#. TRANS: %s is the addressed user's nickname.
+#: lib/mail.php:472
+#, fuzzy, php-format
+msgid "%s: confirm you own this phone number with this code:"
+msgstr "Αναμένωντας επιβεβαίωση σ' αυτό το νούμερο τηλεφώνου."
+
+#. TRANS: Subject for 'nudge' notification email.
+#. TRANS: %s is the nudging user.
+#: lib/mail.php:493
#, php-format
msgid "You've been nudged by %s"
msgstr ""
-#. TRANS: Body for 'nudge' notification email
-#: lib/mail.php:489
+#. TRANS: Body for 'nudge' notification email.
+#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
+#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
+#: lib/mail.php:500
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -4736,14 +8123,18 @@ msgid ""
"%4$s\n"
msgstr ""
-#. TRANS: Subject for direct-message notification email
-#: lib/mail.php:536
+#. TRANS: Subject for direct-message notification email.
+#. TRANS: %s is the sending user's nickname.
+#: lib/mail.php:547
#, php-format
msgid "New private message from %s"
msgstr ""
-#. TRANS: Body for direct-message notification email
-#: lib/mail.php:541
+#. TRANS: Body for direct-message notification email.
+#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
+#. TRANS: %3$s is the message content, %4$s a URL to the message,
+#. TRANS: %5$s is the StatusNet sitename.
+#: lib/mail.php:555
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -4762,14 +8153,19 @@ msgid ""
"%5$s\n"
msgstr ""
-#. TRANS: Subject for favorite notification email
-#: lib/mail.php:589
+#. TRANS: Subject for favorite notification e-mail.
+#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
+#: lib/mail.php:607
#, php-format
-msgid "%s (@%s) added your notice as a favorite"
+msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr ""
-#. TRANS: Body for favorite notification email
-#: lib/mail.php:592
+#. TRANS: Body for favorite notification e-mail.
+#. TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created,
+#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
+#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
+#. TRANS: %7$s is the adding user's nickname.
+#: lib/mail.php:614
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -4791,7 +8187,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:651
+#: lib/mail.php:672
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -4799,13 +8195,20 @@ msgid ""
"\t%s"
msgstr ""
-#: lib/mail.php:657
+#. TRANS: E-mail subject for notice notification.
+#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
+#: lib/mail.php:680
#, php-format
-msgid "%s (@%s) sent a notice to your attention"
+msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr ""
#. TRANS: Body of @-reply notification e-mail.
-#: lib/mail.php:660
+#. TRANS: %1$s is the sending user's long name, $2$s is the StatusNet sitename,
+#. TRANS: %3$s is a URL to the notice, %4$s is the notice text,
+#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
+#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
+#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
+#: lib/mail.php:688
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -4842,10 +8245,15 @@ msgid ""
"users in conversation. People can send you messages for your eyes only."
msgstr ""
-#: lib/mailbox.php:228 lib/noticelist.php:506
+#: lib/mailbox.php:228 lib/noticelist.php:522
msgid "from"
msgstr "από"
+#: lib/mailhandler.php:37
+#, fuzzy
+msgid "Could not parse message."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
#: lib/mailhandler.php:42
msgid "Not a registered user."
msgstr ""
@@ -4858,63 +8266,38 @@ msgstr ""
msgid "Sorry, no incoming email allowed."
msgstr ""
-#: lib/mailhandler.php:228
+#: lib/mailhandler.php:229
#, php-format
msgid "Unsupported message type: %s"
msgstr ""
#. TRANS: Client exception thrown when a database error was thrown during a file upload operation.
-#: lib/mediafile.php:99 lib/mediafile.php:125
+#: lib/mediafile.php:102 lib/mediafile.php:174
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:145
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:151
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:157
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:165
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:169
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:173
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
-#: lib/mediafile.php:189 lib/mediafile.php:232
+#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
msgstr ""
#. TRANS: Client exception thrown when a file upload operation fails because the file could
#. TRANS: not be moved from the temporary folder to the permanent file location.
-#: lib/mediafile.php:209 lib/mediafile.php:251
+#: lib/mediafile.php:258 lib/mediafile.php:300
msgid "File could not be moved to destination directory."
msgstr ""
+#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME
+#. TRANS: type of the uploaded file could not be determined.
+#: lib/mediafile.php:265 lib/mediafile.php:306
+#, fuzzy
+msgid "Could not determine file's MIME type."
+msgstr "Απέτυχε η ενημέρωση του χρήστη."
+
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:340
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -4923,24 +8306,62 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:345
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
-#: lib/messageform.php:146
+#: lib/messageform.php:120
+#, fuzzy
+msgid "Send a direct notice"
+msgstr "Διαγραφή μηνύματος"
+
+#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list.
+#: lib/messageform.php:137
+msgid "Select recipient:"
+msgstr ""
+
+#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message.
+#: lib/messageform.php:150
+msgid "No mutual subscribers."
+msgstr ""
+
+#: lib/messageform.php:153
msgid "To"
msgstr ""
-#: lib/messageform.php:159 lib/noticeform.php:186
+#: lib/messageform.php:166 lib/noticeform.php:186
msgid "Available characters"
msgstr "Διαθέσιμοι χαρακτήρες"
-#: lib/messageform.php:178 lib/noticeform.php:237
+#: lib/messageform.php:185 lib/noticeform.php:237
msgctxt "Send button for sending notice"
msgid "Send"
msgstr ""
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:165
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά."
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:178
+msgid "Nickname cannot be empty."
+msgstr ""
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:191
+#, php-format
+msgid "Nickname cannot be more than %d character long."
+msgid_plural "Nickname cannot be more than %d characters long."
+msgstr[0] ""
+msgstr[1] ""
+
+#: lib/noticeform.php:160
+#, fuzzy
+msgid "Send a notice"
+msgstr "Διαγραφή μηνύματος"
+
#: lib/noticeform.php:174
#, php-format
msgid "What's up, %s?"
@@ -4954,6 +8375,16 @@ msgstr ""
msgid "Attach a file"
msgstr ""
+#: lib/noticeform.php:213
+#, fuzzy
+msgid "Share my location"
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
+#: lib/noticeform.php:216
+#, fuzzy
+msgid "Do not share my location"
+msgstr "Αδύνατη η αποθήκευση του προφίλ."
+
#: lib/noticeform.php:217
msgid ""
"Sorry, retrieving your geo location is taking longer than expected, please "
@@ -4961,100 +8392,120 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:436
+#: lib/noticelist.php:452
msgid "N"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:438
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:440
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:442
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:444
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:453
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:502
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:568
+#: lib/noticelist.php:584
msgid "in context"
msgstr ""
-#: lib/noticelist.php:603
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Επαναλαμβάνεται από"
-#: lib/noticelist.php:631
+#: lib/noticelist.php:646
+#, fuzzy
+msgid "Reply to this notice"
+msgstr "Διαγραφή μηνύματος"
+
+#: lib/noticelist.php:647
msgid "Reply"
msgstr ""
+#: lib/noticelist.php:691
+#, fuzzy
+msgid "Notice repeated"
+msgstr "Ρυθμίσεις OpenID"
+
+#: lib/nudgeform.php:116
+#, fuzzy
+msgid "Nudge this user"
+msgstr "Διαγράψτε αυτόν τον χρήστη"
+
#: lib/nudgeform.php:128
msgid "Nudge"
msgstr ""
-#: lib/oauthstore.php:283
+#: lib/nudgeform.php:128
+#, fuzzy
+msgid "Send a nudge to this user"
+msgstr "Γίνε συνδρομητής αυτού του χρήστη"
+
+#: lib/oauthstore.php:294
msgid "Error inserting new profile."
msgstr ""
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
msgid "Error inserting avatar."
msgstr ""
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
msgid "Error inserting remote profile."
msgstr ""
#. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
msgid "Duplicate notice."
msgstr ""
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
msgid "Couldn't insert new subscription."
msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
-#: lib/personalgroupnav.php:99
+#: lib/personalgroupnav.php:102
msgid "Personal"
msgstr "Προσωπικά"
-#: lib/personalgroupnav.php:104
+#: lib/personalgroupnav.php:107
msgid "Replies"
msgstr ""
-#: lib/personalgroupnav.php:114
+#: lib/personalgroupnav.php:117
msgid "Favorites"
msgstr ""
-#: lib/personalgroupnav.php:125
+#: lib/personalgroupnav.php:128
msgid "Inbox"
msgstr ""
-#: lib/personalgroupnav.php:126
+#: lib/personalgroupnav.php:129
msgid "Your incoming messages"
msgstr ""
-#: lib/personalgroupnav.php:130
+#: lib/personalgroupnav.php:133
msgid "Outbox"
msgstr ""
-#: lib/personalgroupnav.php:131
+#: lib/personalgroupnav.php:134
msgid "Your sent messages"
msgstr ""
@@ -5064,14 +8515,29 @@ msgid "Tags in %s's notices"
msgstr ""
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:116
+#: lib/plugin.php:121
msgid "Unknown"
msgstr ""
+#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#, fuzzy
+msgid "Subscriptions"
+msgstr "Όλες οι συνδρομές"
+
#: lib/profileaction.php:126
msgid "All subscriptions"
msgstr "Όλες οι συνδρομές"
+#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#, fuzzy
+msgid "Subscribers"
+msgstr "Απέτυχε η συνδρομή."
+
+#: lib/profileaction.php:161
+#, fuzzy
+msgid "All subscribers"
+msgstr "Όλες οι συνδρομές"
+
#: lib/profileaction.php:191
msgid "User ID"
msgstr ""
@@ -5085,6 +8551,11 @@ msgstr "Μέλος από"
msgid "Daily average"
msgstr ""
+#: lib/profileaction.php:264
+#, fuzzy
+msgid "All groups"
+msgstr "ομάδες των χρηστών %s"
+
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -5130,8 +8601,9 @@ msgstr "Διαγραφή μηνύματος"
msgid "Revoke the \"%s\" role from this user"
msgstr ""
-#: lib/router.php:709
-msgid "No single user defined for single-user mode."
+#. TRANS: Client error on action trying to visit a non-existing page.
+#: lib/router.php:974
+msgid "Page not found."
msgstr ""
#: lib/sandboxform.php:67
@@ -5143,16 +8615,17 @@ msgid "Sandbox this user"
msgstr "Γίνε συνδρομητής αυτού του χρήστη"
#. TRANS: Fieldset legend for the search form.
-#: lib/searchaction.php:121
+#: lib/searchaction.php:120
msgid "Search site"
msgstr ""
#. TRANS: Used as a field label for the field where one or more keywords
#. TRANS: for searching can be entered.
-#: lib/searchaction.php:129
+#: lib/searchaction.php:128
msgid "Keyword(s)"
msgstr ""
+#. TRANS: Button text for searching site.
#: lib/searchaction.php:130
msgctxt "BUTTON"
msgid "Search"
@@ -5163,6 +8636,16 @@ msgstr ""
msgid "Search help"
msgstr ""
+#: lib/searchgroupnav.php:80
+#, fuzzy
+msgid "People"
+msgstr "Δημοφιλή"
+
+#: lib/searchgroupnav.php:81
+#, fuzzy
+msgid "Find people on this site"
+msgstr "Βρες ομάδες στο site"
+
#: lib/searchgroupnav.php:83
msgid "Find content of notices"
msgstr ""
@@ -5187,6 +8670,26 @@ msgstr ""
msgid "Silence this user"
msgstr "Διαγράψτε αυτόν τον χρήστη"
+#: lib/subgroupnav.php:83
+#, fuzzy, php-format
+msgid "People %s subscribes to"
+msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
+
+#: lib/subgroupnav.php:91
+#, fuzzy, php-format
+msgid "People subscribed to %s"
+msgstr "Απέτυχε η συνδρομή."
+
+#: lib/subgroupnav.php:99
+#, fuzzy, php-format
+msgid "Groups %s is a member of"
+msgstr "Ομάδες με τα περισσότερα μέλη"
+
+#: lib/subgroupnav.php:105
+#, fuzzy
+msgid "Invite"
+msgstr "Μόνο με πρόσκληση"
+
#: lib/subgroupnav.php:106
#, php-format
msgid "Invite friends and colleagues to join you on %s"
@@ -5206,6 +8709,11 @@ msgstr ""
msgid "None"
msgstr "Κανένα"
+#. TRANS: Server exception displayed if a theme name was invalid.
+#: lib/theme.php:74
+msgid "Invalid theme name."
+msgstr ""
+
#: lib/themeuploader.php:50
msgid "This server cannot handle theme uploads without ZIP support."
msgstr ""
@@ -5215,8 +8723,8 @@ msgid "The theme file is missing or the upload failed."
msgstr ""
#: lib/themeuploader.php:91 lib/themeuploader.php:102
-#: lib/themeuploader.php:278 lib/themeuploader.php:282
-#: lib/themeuploader.php:290 lib/themeuploader.php:297
+#: lib/themeuploader.php:279 lib/themeuploader.php:283
+#: lib/themeuploader.php:291 lib/themeuploader.php:298
msgid "Failed saving theme."
msgstr ""
@@ -5226,32 +8734,46 @@ msgstr ""
#: lib/themeuploader.php:166
#, php-format
-msgid "Uploaded theme is too large; must be less than %d bytes uncompressed."
-msgstr ""
+msgid "Uploaded theme is too large; must be less than %d byte uncompressed."
+msgid_plural ""
+"Uploaded theme is too large; must be less than %d bytes uncompressed."
+msgstr[0] ""
+msgstr[1] ""
-#: lib/themeuploader.php:178
+#: lib/themeuploader.php:179
msgid "Invalid theme archive: missing file css/display.css"
msgstr ""
-#: lib/themeuploader.php:218
+#: lib/themeuploader.php:219
msgid ""
"Theme contains invalid file or folder name. Stick with ASCII letters, "
"digits, underscore, and minus sign."
msgstr ""
-#: lib/themeuploader.php:224
+#: lib/themeuploader.php:225
msgid "Theme contains unsafe file extension names; may be unsafe."
msgstr ""
-#: lib/themeuploader.php:241
+#: lib/themeuploader.php:242
#, php-format
msgid "Theme contains file of type '.%s', which is not allowed."
msgstr ""
+#: lib/themeuploader.php:260
+#, fuzzy
+msgid "Error opening theme archive."
+msgstr "Απέτυχε η αποθήκευση του προφίλ."
+
#: lib/topposterssection.php:74
msgid "Top posters"
msgstr "Κορυφαίοι δημοσιευτές"
+#. TRANS: Title for the form to unblock a user.
+#: lib/unblockform.php:67
+msgctxt "TITLE"
+msgid "Unblock"
+msgstr ""
+
#: lib/unsandboxform.php:69
msgid "Unsandbox"
msgstr ""
@@ -5268,52 +8790,84 @@ msgstr ""
msgid "Unsilence this user"
msgstr "Διαγράψτε αυτόν τον χρήστη"
-#: lib/userprofile.php:117
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+#, fuzzy
+msgid "Unsubscribe from this user"
+msgstr "Γίνε συνδρομητής αυτού του χρήστη"
+
+#: lib/unsubscribeform.php:137
+#, fuzzy
+msgid "Unsubscribe"
+msgstr "Απέτυχε η συνδρομή."
+
+#. TRANS: Exception text shown when no profile can be found for a user.
+#. TRANS: %1$s is a user nickname, $2$d is a user ID (number).
+#: lib/usernoprofileexception.php:60
+#, php-format
+msgid "User %1$s (%2$d) has no profile record."
+msgstr ""
+
+#: lib/userprofile.php:119
msgid "Edit Avatar"
msgstr ""
-#: lib/userprofile.php:237
+#: lib/userprofile.php:236 lib/userprofile.php:250
+#, fuzzy
+msgid "User actions"
+msgstr "Ομάδες χρηστών"
+
+#: lib/userprofile.php:239
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:263
+#: lib/userprofile.php:265
msgid "Edit profile settings"
msgstr "Επεξεργασία ρυθμίσεων προφίλ"
-#: lib/userprofile.php:264
+#: lib/userprofile.php:266
msgid "Edit"
msgstr "Επεξεργασία"
-#: lib/userprofile.php:287
+#: lib/userprofile.php:289
msgid "Send a direct message to this user"
msgstr ""
-#: lib/userprofile.php:288
+#: lib/userprofile.php:290
msgid "Message"
msgstr "Μήνυμα"
-#: lib/userprofile.php:366
+#: lib/userprofile.php:331
+#, fuzzy
+msgid "Moderate"
+msgstr "Συντονιστής"
+
+#: lib/userprofile.php:369
+#, fuzzy
+msgid "User role"
+msgstr "Προφίλ χρήστη"
+
+#: lib/userprofile.php:371
msgctxt "role"
msgid "Administrator"
msgstr "Διαχειριστής"
-#: lib/userprofile.php:367
+#: lib/userprofile.php:372
msgctxt "role"
msgid "Moderator"
msgstr "Συντονιστής"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1103
+#: lib/util.php:1306
msgid "a few seconds ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1106
+#: lib/util.php:1309
msgid "about a minute ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1110
+#: lib/util.php:1313
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -5321,12 +8875,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1113
+#: lib/util.php:1316
msgid "about an hour ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1117
+#: lib/util.php:1320
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -5334,12 +8888,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1120
+#: lib/util.php:1323
msgid "about a day ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1124
+#: lib/util.php:1327
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -5347,12 +8901,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1127
+#: lib/util.php:1330
msgid "about a month ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1131
+#: lib/util.php:1334
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -5360,11 +8914,49 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1134
+#: lib/util.php:1337
msgid "about a year ago"
msgstr ""
-#: lib/webcolor.php:82
+#: lib/webcolor.php:80
#, php-format
msgid "%s is not a valid color!"
msgstr "Το %s δεν είναι ένα έγκυρο χρώμα!"
+
+#. TRANS: Validation error for a web colour.
+#. TRANS: %s is the provided (invalid) text for colour.
+#: lib/webcolor.php:120
+#, php-format
+msgid "%s is not a valid color! Use 3 or 6 hex characters."
+msgstr ""
+
+#. TRANS: %s is the URL to the StatusNet site's Instant Messaging settings.
+#: lib/xmppmanager.php:287
+#, php-format
+msgid "Unknown user. Go to %s to add your address to your account"
+msgstr ""
+
+#. TRANS: Response to XMPP source when it sent too long a message.
+#. TRANS: %1$d the maximum number of allowed characters (used for plural), %2$d is the sent number.
+#: lib/xmppmanager.php:406
+#, php-format
+msgid "Message too long. Maximum is %1$d character, you sent %2$d."
+msgid_plural "Message too long. Maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Exception.
+#: lib/xrd.php:64
+msgid "Invalid XML."
+msgstr ""
+
+#. TRANS: Exception.
+#: lib/xrd.php:69
+msgid "Invalid XML, missing XRD root."
+msgstr ""
+
+#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
+#: scripts/restoreuser.php:62
+#, php-format
+msgid "Getting backup from file '%s'."
+msgstr ""
diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po
index 5978efd553..55e71e831b 100644
--- a/locale/en_GB/LC_MESSAGES/statusnet.po
+++ b/locale/en_GB/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to British English (British English)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Bruce89
@@ -13,17 +13,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:35+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:25+0000\n"
"Language-Team: British English \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: en-gb\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -78,8 +78,9 @@ msgid "Save access settings"
msgstr "Save access settings"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -89,13 +90,13 @@ msgstr "Save access settings"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Save"
@@ -103,7 +104,7 @@ msgstr "Save"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "No such page."
@@ -113,6 +114,8 @@ msgstr "No such page."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -128,13 +131,23 @@ msgstr "No such page."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -142,15 +155,15 @@ msgstr "No such page."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "No such user."
@@ -164,9 +177,10 @@ msgstr "%1$s and friends, page %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s and friends"
@@ -280,7 +294,7 @@ msgstr "Updates from %1$s and friends on %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -314,7 +328,21 @@ msgstr ""
"none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Could not update user."
@@ -324,18 +352,23 @@ msgstr "Could not update user."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "User has no profile."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Could not save profile."
@@ -345,8 +378,8 @@ msgstr "Could not save profile."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -366,13 +399,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Unable to save your design settings."
@@ -380,48 +414,59 @@ msgstr "Unable to save your design settings."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Could not update your design."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s timeline"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s subscriptions"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "Favourites"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "%s group members"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "You cannot block yourself!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Block user failed."
@@ -477,7 +522,8 @@ msgstr "Recipient user not found."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Can't send direct messages to users who aren't your friend."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -501,8 +547,9 @@ msgid "This status is already a favorite."
msgstr "This status is already a favourite."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Could not create favourite."
@@ -512,7 +559,8 @@ msgid "That status is not a favorite."
msgstr "That status is not a favourite."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Could not delete favourite."
@@ -558,9 +606,9 @@ msgstr "Could not find target user."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Nickname already in use. Try another one."
@@ -568,21 +616,22 @@ msgstr "Nickname already in use. Try another one."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Not a valid nickname."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Homepage is not a valid URL."
@@ -590,9 +639,9 @@ msgstr "Homepage is not a valid URL."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "Full name is too long (max 255 chars)."
@@ -600,14 +649,15 @@ msgstr "Full name is too long (max 255 chars)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -618,9 +668,9 @@ msgstr[1] "Description is too long (max %d chars)"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "Location is too long (max 255 chars)."
@@ -631,8 +681,8 @@ msgstr "Location is too long (max 255 chars)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -649,18 +699,16 @@ msgstr "Invalid alias: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Alias \"%s\" already in use. Try another one."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Alias can't be the same as nickname."
@@ -671,28 +719,32 @@ msgstr "Alias can't be the same as nickname."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Group not found."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "You are already a member of that group."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "You have been blocked from that group by the admin."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Could not join user %1$s to group %2$s."
@@ -704,9 +756,11 @@ msgstr "You are not a member of this group."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -743,7 +797,7 @@ msgid "Upload failed."
msgstr "Upload failed."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Invalid request token or verifier."
@@ -764,20 +818,25 @@ msgid "Request token already authorized."
msgstr "You are not authorised."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "There was a problem with your session token. Try again, please."
@@ -795,18 +854,22 @@ msgstr "Database error inserting OAuth application user."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Unexpected form submission."
@@ -857,29 +920,31 @@ msgstr "Account"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Nickname"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Password"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -951,6 +1016,7 @@ msgstr "You may not delete another user's status."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -970,39 +1036,52 @@ msgstr "Cannot repeat your own notice."
msgid "Already repeated that notice."
msgstr "Already repeated that notice."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "API method not found."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Unsupported format."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Status deleted."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "No status with that ID found."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Can't delete this notice."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Delete notice"
@@ -1060,7 +1139,7 @@ msgstr "%1$s updates favourited by %2$s / %2$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Could not delete group %s."
@@ -1081,13 +1160,14 @@ 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."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s public timeline"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s updates from everyone!"
@@ -1136,202 +1216,269 @@ msgstr "Only the user can read their own mailboxes."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Find content of notices"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Notice with that id does not exist."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API method under construction."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "API method not found."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "No such profile."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Updates from %1$s and friends on %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Couldn't insert new subscription."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Find content of notices"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Find content of notices"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Unknown"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Add to favourites"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "No such profile."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s group members"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Groups %s is a member of"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Couldn't insert new subscription."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Find content of notices"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Unknown"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "All members"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "No such file."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Could not delete favourite."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "No such group."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "All members"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "API method not found."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "No such profile."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "You are not subscribed to that profile."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Could not delete self-subscription."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "No such profile."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "You are not subscribed to that profile."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Could not delete self-subscription."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "People subscribed to %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Unknown file type"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Already subscribed!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1340,11 +1487,15 @@ msgstr "No such attachment."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "No nickname."
@@ -1361,7 +1512,7 @@ msgstr "Invalid size."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1374,42 +1525,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "You can upload your personal avatar. The maximum file size is %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "User without matching profile."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Avatar settings"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Original"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Preview"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Delete"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1427,31 +1588,72 @@ msgstr "Crop"
msgid "No file uploaded."
msgstr "No file uploaded."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Pick a square area of the image to be your avatar"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Lost our file data."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Avatar updated."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Failed updating avatar."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Avatar deleted."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Only logged-in users can repeat notices."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Background"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1459,7 +1661,8 @@ msgstr "You already blocked that user."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Block user"
@@ -1482,15 +1685,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "No"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Do not block this user"
#. TRANS: Button label on the user block form.
@@ -1501,15 +1704,15 @@ msgstr "Do not block this user"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Yes"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Block this user"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1517,31 +1720,6 @@ msgstr "Block this user"
msgid "Failed to save block information."
msgstr "Failed to save block information."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "No such group."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1612,23 +1790,6 @@ msgstr "Unrecognized address type %s."
msgid "That address has already been confirmed."
msgstr "That address has already been confirmed."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Couldn't update user."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1654,11 +1815,85 @@ msgid "Conversation"
msgstr "Conversation"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Notices"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Only logged-in users can repeat notices."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "You cannot delete users."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Avatar deleted."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Create an account"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Confirm"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "You cannot delete users."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "You cannot delete users."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1672,14 +1907,14 @@ msgstr "Application not found."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "You are not the owner of this application."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "There was a problem with your session token."
@@ -1702,12 +1937,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Do not delete this application"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Delete this application"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1716,8 +1953,10 @@ msgid "You must be logged in to delete a group."
msgstr "You must be logged in to delete a group."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "No nickname or ID."
@@ -1759,24 +1998,32 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+#, fuzzy
+msgid "Do not delete this group."
msgstr "Do not delete this group"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+#, fuzzy
+msgid "Delete this group."
msgstr "Delete this group"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Not logged in."
@@ -1803,27 +2050,40 @@ msgstr "Are you sure you want to delete this notice?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Do not delete this notice"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Delete this notice"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "You cannot delete users."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "You can only delete local users."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Delete user"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Delete user"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1831,78 +2091,102 @@ msgstr ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Do not delete this group"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Delete this user"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Design"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Invalid logo URL."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "Invalid SSL logo URL."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Theme not available: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Change logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Site logo"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "SSL logo"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Change theme"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Site theme"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Theme for the site."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Custom theme"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Change background image"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Background"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1912,98 +2196,108 @@ msgstr ""
"$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "On"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Off"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Turn background image on or off."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Tile background image"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Change colours"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Content"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Sidebar"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Text"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Links"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr ""
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Use defaults"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Restore default designs"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Reset back to default"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Save"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Save design"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "This notice is not a favourite!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Add to favourites"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "No such document \"%s\""
#. TRANS: Title for "Edit application" form.
@@ -2018,7 +2312,7 @@ msgid "You must be logged in to edit an application."
msgstr "You must be logged in to edit an application."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "No such application."
@@ -2028,63 +2322,73 @@ msgid "Use this form to edit your application."
msgstr "Use this form to edit your application."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Name is required."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "Name is too long (max 255 chars)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Name already in use. Try another one."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Description is required."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Source URL is too long."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "Source URL is not valid."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organisation is required."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "Organisation is too long (max 255 chars)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Organisation homepage is required."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Callback is too long."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "Callback URL is not valid."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Could not update application."
@@ -2095,14 +2399,17 @@ msgid "Edit %s group"
msgstr "Edit %s group"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "You must be logged in to create a group."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "You must be an admin to edit the group."
@@ -2113,63 +2420,65 @@ msgstr "Use this form to edit the group."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Invalid alias: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Could not update group."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Could not create aliases."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Options saved."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "E-mail settings"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Manage how you get e-mail from %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "E-mail address"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Current confirmed e-mail address."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Remove"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2182,44 +2491,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "E-mail address, like \"UserName@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Add"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Incoming e-mail"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "I want to post notices by e-mail."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Send e-mail to this address to post new notices."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
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."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2227,87 +2536,89 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "New"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Email preferences"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Send me notices of new subscriptions through e-mail."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
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."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Send me e-mail when someone sends me a private message."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Send me e-mail when someone sends me an \"@-reply\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Allow friends to nudge me and send me an e-mail."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publish a MicroID for my e-mail address."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "E-mail preferences saved."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "No e-mail address."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Cannot normalise that e-mail address"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Not a valid e-mail address."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "That is already your e-mail address."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "That e-mail address already belongs to another user."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Couldn't insert confirmation code."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2316,88 +2627,104 @@ msgstr ""
"inbox (and spam box!) for the code and instructions on how to use it."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "No pending confirmation to cancel."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "That is the wrong e-mail address."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Couldn't delete email confirmation."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "E-mail confirmation cancelled."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "That is not your e-mail address."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "The email address was removed."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "No incoming e-mail address."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Couldn't update user record."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Incoming e-mail address removed."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "New incoming e-mail address added."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "This notice is already a favourite!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Disfavor favourite"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Popular notices"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Popular notices, page %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "The most popular notices on the site right now."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Favourite notices appear on this page but no one has favourited one yet"
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2406,7 +2733,9 @@ msgstr ""
"Be the first to add a notice to your favourites by clicking the fave button "
"next to any notice you like."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2415,142 +2744,186 @@ msgstr ""
"Why not [register an account](%%action.register%%) and be the first to add a "
"notice to your favourites!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%s's favourite notices"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Updates favoured by %1$s on %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Featured users"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Featured users, page %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "A selection of some great users on %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "No notice ID."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "No notice."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "No attachments."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "No uploaded attachments."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Not expecting this response!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "User being listened to does not exist."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "You can use the local subscription!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "That user has blocked you from subscribing."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "You are not authorised."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Could not convert request token to access token."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Remote service uses unknown version of OMB protocol."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Error updating remote profile."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "No such file."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Cannot read file."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Invalid role."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "This role is reserved and cannot be set."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "You cannot grant user roles on this site."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "User already has this role."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "No profile specified."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "No profile with that ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "No group specified."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Only an admin can block group members."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "User is already blocked from group."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "User is not a member of group."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Block user from group"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2562,32 +2935,40 @@ msgstr ""
"the group in the future."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Do not block this user from this group"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Block this user from this group"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Database error blocking user from group."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "No ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "You must be logged in to edit a group."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Group design"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2595,122 +2976,142 @@ msgstr ""
"Customise the way your group looks with a background image and a colour "
"palette of your choice."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Couldn't update your design."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Unable to save your design settings."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Design preferences saved."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Group logo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, 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. The maximum file size is %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Upload"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Crop"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Pick a square area of the image to be the logo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo updated."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Failed updating logo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s group members"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s group members, page %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "A list of the users in this group."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Admin"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Make user an admin of the group"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Updates from members of %1$s on %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Groups"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Groups, page %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"%%%%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 "
@@ -2718,11 +3119,13 @@ msgstr ""
"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
"%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Create a new group"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2731,25 +3134,33 @@ msgstr ""
"Search for groups on %%site.name%% by their name, location, or description. "
"Separate the terms by spaces; they must be 3 characters or more."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Group search"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "No results."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"If you can't find the group you're looking for, you can [create it](%%action."
"newgroup%%) yourself."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2759,136 +3170,146 @@ msgstr ""
"action.newgroup%%) yourself!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Only an admin can unblock group members."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "User is not blocked from group."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Error removing the block."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM settings"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [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."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM is not available."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM address"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Current confirmed Jabber/GTalk address."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk 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?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
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."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "IM preferences"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Send me notices through Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Post a notice when my Jabber/GTalk status changes."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Send me replies through Jabber/GTalk from people I'm not subscribed to."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publish a MicroID for my Jabber/GTalk address."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Preferences saved."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "No Jabber ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Cannot normalize that Jabber ID"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Not a valid Jabber ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "That is already your Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID already belongs to another user."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2897,73 +3318,79 @@ msgstr ""
"A confirmation code was sent to the IM address you added. You must approve %"
"s for sending messages to you."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "That is the wrong IM address."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Couldn't delete IM confirmation."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "IM confirmation cancelled."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "That is not your Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "The IM address was removed."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Inbox for %1$s - page %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Inbox for %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "This is your inbox, which lists your incoming private messages."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Invites have been disabled."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, 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."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Invalid e-mail address: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Invitation(s) sent"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Invite new users"
@@ -2971,7 +3398,7 @@ msgstr "Invite new users"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2980,7 +3407,7 @@ msgstr[1] "You are already subscribed to these users:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2989,7 +3416,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3002,7 +3429,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3011,7 +3438,7 @@ msgstr[1] "Invitation(s) sent to the following people:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3020,34 +3447,35 @@ msgstr ""
"on the site. Thanks for growing the community!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
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."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "E-mail addresses"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Addresses of friends to invite (one per line)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Personal message"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Optionally add a personal message to the invitation."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Send"
@@ -3055,7 +3483,7 @@ msgstr "Send"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, 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"
@@ -3065,7 +3493,7 @@ msgstr "%1$s has invited you to join them on %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3122,167 +3550,183 @@ msgstr ""
"\n"
"Sincerely, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "You must be logged in to join a group."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s joined group %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "You must be logged in to leave a group."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "You are not a member of that group."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s left group %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Location is too long (max 255 chars)."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Private"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Save"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Already logged in."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Incorrect username or password."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Error setting user. You are probably not authorised."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Login"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Login to site"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Remember me"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "Automatically login in the future; not for shared computers!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Lost or forgotten password?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3290,11 +3734,11 @@ msgstr ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Login with your username and password."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3331,19 +3775,22 @@ msgid "New application"
msgstr "New Application"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "You must be logged in to register an application."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Use this form to register a new application."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Source URL is required."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Could not create application."
@@ -3352,11 +3799,23 @@ msgstr "Could not create application."
msgid "New group"
msgstr "New group"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "You are not allowed to delete this group."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Use this form to create a new group."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Alias can't be the same as nickname."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "New message"
@@ -3407,7 +3866,9 @@ msgstr "New notice"
msgid "Notice posted"
msgstr "Notice posted"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3416,16 +3877,21 @@ 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
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Text search"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Search results for \"%1$s\" on %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3434,7 +3900,9 @@ msgstr ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3443,14 +3911,17 @@ msgstr ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Updates with \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Updates matching search term \"%1$s\" on %2$s!"
#: actions/nudge.php:85
@@ -3492,30 +3963,30 @@ msgid "You have not registered any applications yet."
msgstr "You have not registered any applications yet."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Connected applications"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "You are not a user of that application."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Use this form to edit your application."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3523,20 +3994,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "You have not authorised any applications to use your account."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "API method not found."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "API method not found."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Notice has no profile."
@@ -3546,6 +4027,16 @@ msgstr "Notice has no profile."
msgid "%1$s's status on %2$s"
msgstr "%1$s's status on %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Recipient user not found."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3559,16 +4050,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Not a supported data format."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "People Search"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Notice Search"
@@ -3582,69 +4074,80 @@ msgid "Manage various other options."
msgstr "Manage various other options."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr ""
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Shorten URLs with"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Automatic shortening service to use."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "View profile designs"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Show or hide profile designs."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "URL shortening service is too long (max 50 chars)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "No user ID specified."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "No login token specified."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "No login token requested."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Invalid login token specified."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Login token expired."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Outbox for %1$s - page %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Outbox for %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "This is your outbox, which lists private messages you have sent."
@@ -3656,7 +4159,8 @@ msgstr "Change password"
msgid "Change your password."
msgstr "Change your password."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Password change"
@@ -3664,48 +4168,50 @@ msgstr "Password change"
msgid "Old password"
msgstr "Old password"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "New password"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 or more characters"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Confirm"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Same as password above"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Change"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: 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:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Passwords don't match."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Incorrect old password"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Error saving user; invalid."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Can't save new password."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Password saved."
@@ -3917,7 +4423,7 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Attachments"
@@ -3988,7 +4494,9 @@ msgstr ""
msgid "Save paths"
msgstr "Save paths"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3997,7 +4505,8 @@ 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
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "People search"
@@ -4021,45 +4530,46 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profile settings"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
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."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profile information"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 lowercase letters or numbers, no punctuation or spaces"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Full name"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Homepage"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL of your homepage, blog, or profile on another site"
@@ -4067,7 +4577,7 @@ msgstr "URL of your homepage, blog, or profile on another site"
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4075,80 +4585,87 @@ msgstr[0] "Describe yourself and your interests in %d chars"
msgstr[1] "Describe yourself and your interests in %d chars"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Describe yourself and your interests"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Bio"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Location"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Where you are, like \"City, State (or Region), Country\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Tags"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Language"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Preferred language"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Timezone"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "In which timezone are you?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4156,50 +4673,54 @@ msgstr[0] "Bio is too long (max %d chars)."
msgstr[1] "Bio is too long (max %d chars)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Timezone not selected."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Language is too long (max 50 chars)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Invalid tag: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Couldn't update user for autosubscribe."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Couldn't save location prefs."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Couldn't save profile."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Could not save tags."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Settings saved."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Create an account"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4274,6 +4795,12 @@ msgstr ""
"blogging) service based on the Free Software [StatusNet](http://status.net/) "
"tool."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s updates from everyone!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4318,35 +4845,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Tag cloud"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "You are already logged in!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "No such recovery code."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Not a recovery code."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Recovery code for unknown user."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Error with confirmation code."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "This confirmation code is too old. Please start again."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Could not update user with confirmed e-mail address."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4354,67 +4889,100 @@ msgstr ""
"If you have 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
-msgid "You have been identified. Enter a new password below. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Password recovery"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Nickname or e-mail address"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
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
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Recover"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Recover"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Reset password"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Recover password"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Password recovery requested"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Password saved."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Unknown action"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 or more characters, and don't forget it!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Reset"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Enter a nickname or e-mail address."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "No user with that e-mail address or username."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "No registered e-mail address for that user."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Error saving address confirmation."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4422,118 +4990,115 @@ msgstr ""
"Instructions for recovering your password have been sent to the e-mail "
"address registered to your account."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Unexpected password reset."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Password must be 6 chars or more."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Password and confirmation do not match."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Error setting user."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "New password successfully saved. You are now logged in."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Sorry, only invited people can register."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Sorry, invalid invitation code."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registration successful"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Register"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registration not allowed."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot 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:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "E-mail address already exists."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Invalid username or password."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-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:438
-msgid "6 or more characters. Required."
-msgstr "6 or more characters. Required."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Same as password above. Required."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-mail"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Used only for updates, announcements, and password recovery"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Longer name, preferably your \"real\" name"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL of your homepage, blog, or profile on another site"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Where you are, like \"City, State (or Region), Country\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4542,7 +5107,7 @@ msgstr ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4575,7 +5140,7 @@ msgstr ""
"\n"
"Thanks for signing up and we hope you enjoy using this service."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4583,7 +5148,7 @@ msgstr ""
"(You should receive a message by e-mail momentarily, with instructions on "
"how to confirm your e-mail address.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4594,77 +5159,86 @@ msgstr ""
"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
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Remote subscribe"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Subscribe to a remote user"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "User nickname"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Nickname of the user you want to follow"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profile URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+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:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Subscribe"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Invalid profile URL (bad format)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "That’s a local profile! Login to subscribe."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Couldn’t get a request token."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Only logged-in users can repeat notices."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "No notice specified."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "You can't repeat your own notice."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "You already repeated that notice."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Repeated"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Repeated!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Replies to %s"
@@ -4714,11 +5288,102 @@ msgstr ""
"You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action."
"newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Replies to %1$s on %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Only logged-in users can repeat notices."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "You have not registered any applications yet."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Upload file"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "System error uploading file."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "All members"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Upload file"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "You cannot revoke user roles on this site."
@@ -4727,7 +5392,7 @@ msgstr "You cannot revoke user roles on this site."
msgid "User doesn't have this role."
msgstr "User doesn't have this role."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4769,119 +5434,128 @@ msgstr ""
msgid "Save site settings"
msgstr "Save site settings"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "You must be logged in to view an application."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Application profile"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr ""
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Name"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organization"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Description"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistics"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Application actions"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Delete"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Application information"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Authorise URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Are you sure you want to reset your consumer key and secret?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%1$s's favorite notices, page %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Could not retrieve favourite notices."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Feed for favourites of %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Feed for favourites of %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Feed for favorites of %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4889,7 +5563,9 @@ msgstr ""
"You haven't chosen any favourite notices yet. Click the fave button on "
"notices you like to bookmark them for later or shed a spotlight on them."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4898,7 +5574,10 @@ msgstr ""
"%s has not added any favourite notices yet. Post something interesting they "
"would add to their favourites."
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4909,7 +5588,8 @@ msgstr ""
"%action.register%%%%) and then post something interesting they would add to "
"their favourites."
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr ""
@@ -4927,82 +5607,89 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s group, page %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Group profile"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Note"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr ""
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Group actions"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Notice feed for %s group (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Notice feed for %s group (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Notice feed for %s group (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF for %s group"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Members"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(None)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "All members"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Created"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5012,7 +5699,7 @@ msgstr "Members"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5030,7 +5717,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5044,30 +5731,30 @@ msgstr ""
"their life and interests. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Admins"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "No such message."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Only the sender and recipient may read this message."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Message to %1$s on %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Message from %1$s on %2$s"
@@ -5083,7 +5770,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, page %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5324,74 +6011,76 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Save site notice"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS settings"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, 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%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS is not available."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS address"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Current confirmed SMS-enabled phone number."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Awaiting confirmation on this phone number."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Confirmation code"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Enter the code you received on your phone."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Confirm"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMS phone number"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Phone number, no punctuation or spaces, with area code"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMS preferences"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5400,32 +6089,32 @@ msgstr ""
"from my carrier."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "SMS preferences saved."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "No phone number."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "No carrier selected."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "That is already your phone number."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "That phone number already belongs to another user."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5434,39 +6123,39 @@ msgstr ""
"for the code and instructions on how to use it."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "That is the wrong confirmation number."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS confirmation cancelled."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "That is not your phone number."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "The SMS phone number was removed."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Mobile carrier"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Select a carrier"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5476,8 +6165,9 @@ msgstr ""
"email but isn't listed here, send email to let us know at %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "No code entered"
#. TRANS: Menu item for site administration
@@ -5549,15 +6239,19 @@ msgstr "You are not subscribed to that profile."
msgid "Could not save subscription."
msgstr "Could not save subscription."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "You cannot subscribe to an OMB 0.1 remote profile with this action."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Subscribed"
@@ -5589,7 +6283,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "These are the people who listen to %s's notices."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5600,7 +6294,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5610,7 +6304,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5643,7 +6337,7 @@ msgstr "These are the people whose notices %s listens to."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5657,23 +6351,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s is not listening to anyone."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Notice feed for %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5706,12 +6401,15 @@ msgstr "No ID argument."
msgid "Tag %s"
msgstr "Tag %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "User profile"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Photo"
@@ -5727,16 +6425,17 @@ msgstr ""
"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
"separated"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Invalid tag: \"%s\""
+
#: 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."
@@ -5745,6 +6444,7 @@ msgstr "Use this form to add tags to your subscribers or subscriptions."
msgid "No such tag."
msgstr "No such tag."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "You haven't blocked that user."
@@ -5765,7 +6465,7 @@ msgstr "No profile ID in request."
msgid "Unsubscribed"
msgstr "Unsubscribed"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5797,12 +6497,11 @@ msgstr ""
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profile"
@@ -5859,55 +6558,71 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Save site settings"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Authorise subscription"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"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 “Reject”."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "License"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Accept"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Subscribe to this user"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Reject"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Reject this subscription"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "No authorisation request!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Subscription authorised"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5917,11 +6632,12 @@ msgstr ""
"with the site’s instructions for details on how to authorize the "
"subscription. Your subscription token is:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Subscription rejected"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5931,48 +6647,72 @@ msgstr ""
"with the site’s instructions for details on how to fully reject the "
"subscription."
-#: actions/userauthorization.php:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
+msgstr "Source URL is too long."
+
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+msgid "Listenee URI \"%s\" is a local user."
msgstr ""
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+msgid "Profile URL \"%s\" is for a local user."
msgstr ""
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
msgstr ""
+"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "Avatar URL ‘%s’ is not valid."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Can’t read avatar URL ‘%s’."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Wrong image type for avatar URL ‘%s’."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Profile design"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -5980,7 +6720,7 @@ msgstr ""
"Customise the way your profile looks with a background image and a colour "
"palette of your choice."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -6010,7 +6750,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Updates from %1$s on %2$s!"
@@ -6069,7 +6809,7 @@ msgid "Plugins"
msgstr ""
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Version"
@@ -6078,32 +6818,32 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Favour"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s marked notice %2$s as a favourite."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6116,7 +6856,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6125,7 +6865,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6133,7 +6873,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Invalid filename."
@@ -6191,7 +6931,7 @@ msgid "Could not create login token for %s"
msgstr "Could not create login token for %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6218,30 +6958,30 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Database error inserting hashtag: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problem saving notice. Too long."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problem saving notice. Unknown user."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
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."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6250,42 +6990,42 @@ msgstr ""
"few minutes."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "You are banned from posting notices on this site."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problem saving notice."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problem saving group inbox."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Could not save reply for %1$d, %2$d."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6293,14 +7033,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6370,35 +7110,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Welcome to %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Could not create group."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Could not set group URI."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Could not set group membership."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Could not save local group info."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "You cannot delete users."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6435,211 +7196,214 @@ msgid "Other"
msgstr "Other"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Untitled page"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Primary site navigation"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Personal profile and friends timeline"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Personal"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Change your email, avatar, password, profile"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Account"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Connect to services"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Connect"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Change site configuration"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Admin"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Invite friends and colleagues to join you on %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Invite"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Logout from the site"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Logout"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Create an account"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Register"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Login to the site"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Login"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Help me!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Help"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Search for people or text"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Search"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Site notice"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Local views"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Page notice"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Secondary site navigation"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Help"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "About"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "F.A.Q."
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr ""
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Privacy"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Source"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Contact"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Badge"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet software licence"
@@ -6647,7 +7411,7 @@ msgstr "StatusNet software licence"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6657,7 +7421,7 @@ msgstr ""
"broughtby%%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** is a microblogging service."
@@ -6666,7 +7430,7 @@ msgstr "**%%site.name%%** is a microblogging service."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6678,50 +7442,50 @@ msgstr ""
"org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Site content licence"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "All %1$s content and data are available under the %2$s licence."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Pagination"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "After"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Before"
@@ -6730,10 +7494,80 @@ msgstr "Before"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Unknown file type"
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Photo"
+msgid "Cannot force remote user to subscribe."
+msgstr "Specify the name of the user to subscribe to."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Unknown file type"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "You are already a member of that group."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Find content of notices"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "No such user."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6805,7 +7639,7 @@ msgid "User configuration"
msgstr "User configuration"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "User"
@@ -6849,19 +7683,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6884,28 +7722,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Could not insert message."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Database error inserting OAuth application user."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Database error inserting OAuth application user."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Icon for this application"
@@ -7016,17 +7858,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Revoke"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Do not delete this group"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Author"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Provider"
@@ -7055,6 +7903,11 @@ msgstr "Password changing is not allowed."
msgid "Block"
msgstr "Block"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Block this user"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7165,7 +8018,7 @@ msgstr "Fullname: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Location: %s"
@@ -7173,7 +8026,7 @@ msgstr "Location: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Homepage: %s"
@@ -7441,26 +8294,26 @@ msgstr ""
"tracking - not yet implemented.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "No configuration file found. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Invitation(s) sent to the following people:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Go to the installer."
@@ -7501,14 +8354,19 @@ msgstr "Authorised connected applications"
msgid "Database error"
msgstr ""
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Delete this user"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Upload file"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7528,26 +8386,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Off"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Reset"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Change colours"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Use defaults"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Restore default designs"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Reset back to default"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Save design"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Couldn't update your design."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Design defaults restored."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Use this form to edit your application."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Disfavour this notice"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Disfavor favourite"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Favour this notice"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Favour"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr ""
@@ -7564,6 +8470,19 @@ msgstr ""
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "All members"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7598,34 +8517,34 @@ msgstr "Go"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 lowercase letters or numbers, no punctuation or spaces"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
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
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Describe the group or topic"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Describe the group or topic in %d characters"
msgstr[1] "Describe the group or topic in %d characters"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
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:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7730,40 +8649,41 @@ msgstr "Tags in %s group's notices"
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:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Unsupported image file format."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "That file is too big. The maximum file size is %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Partial upload."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "System error uploading file."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Not an image or corrupt file."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Lost our file."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Unknown file type"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7771,7 +8691,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7779,7 +8699,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7800,23 +8720,25 @@ msgstr ""
msgid "Leave"
msgstr "Leave"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Login with a username and password"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Sign up for a new account"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "E-mail address confirmation"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7835,14 +8757,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, 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."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7854,7 +8776,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7881,14 +8803,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Bio: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "New e-mail address for posting to %s"
@@ -7896,7 +8818,7 @@ msgstr "New e-mail address for posting to %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7919,34 +8841,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s status"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS confirmation"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: confirm you own this phone number with this code:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "You've been nudged by %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7964,7 +8886,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "New private message from %s"
@@ -7973,7 +8895,7 @@ msgstr "New private message from %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7994,7 +8916,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) added your notice as a favorite"
@@ -8004,7 +8926,7 @@ msgstr "%s (@%s) added your notice as a favorite"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8026,7 +8948,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8036,7 +8958,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) sent a notice to your attention"
@@ -8047,7 +8969,7 @@ msgstr "%s (@%s) sent a notice to your attention"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8074,20 +8996,16 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Only the user can read their own mailboxes."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr "from"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Could not parse message."
@@ -8114,38 +9032,6 @@ msgstr "Unsupported message type: %s"
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8166,7 +9052,7 @@ msgstr "Could not determine file's MIME type."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8175,7 +9061,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8209,18 +9095,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Send"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Message"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "from"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Nickname must have only lowercase letters and numbers, and no spaces."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8236,11 +9131,11 @@ msgstr "Send a notice"
msgid "What's up, %s?"
msgstr "What's up, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr ""
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr ""
@@ -8259,55 +9154,59 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "in context"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Repeated by"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Reply to this notice"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Reply"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Delete this notice"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Notice repeated"
@@ -8344,77 +9243,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "Couldn't insert new subscription."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Personal"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Replies"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profile"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favourites"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Inbox"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Your incoming messages"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Outbox"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Your sent messages"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Tags in %s's notices"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Unknown"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Subscriptions"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "All subscriptions"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Subscribers"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "All subscribers"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "User ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Member since"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Groups"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "All groups"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8461,7 +9396,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Revoke the \"%s\" role from this user"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "API method not found."
@@ -8552,6 +9487,10 @@ msgstr "Invite"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Invite friends and colleagues to join you on %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Subscribe to this user"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8663,64 +9602,81 @@ msgstr "Unsubscribe"
msgid "User %1$s (%2$d) has no profile record."
msgstr "User %1$s (%2$d) has no profile record."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Edit Avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "User actions"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Edit profile settings"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Edit"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Send a direct message to this user"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Message"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderate"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "User role"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrator"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderator"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Not logged in."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "a few seconds ago"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "about a minute ago"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8728,12 +9684,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "about an hour ago"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8741,12 +9697,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "about a day ago"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8754,12 +9710,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "about a month ago"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8767,18 +9723,13 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "about a year ago"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s is not a valid colour!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s is not a valid colour! Use 3 or 6 hex characters."
@@ -8799,31 +9750,18 @@ msgstr[0] "Message too long - maximum is %1$d characters, you sent %2$d."
msgstr[1] "Message too long - maximum is %1$d characters, you sent %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Invalid size."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "No user specified; using backup user."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po
index 2b7e513e4b..2264f654e3 100644
--- a/locale/eo/LC_MESSAGES/statusnet.po
+++ b/locale/eo/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Esperanto (Esperanto)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: AVRS
# Author: Brion
@@ -7,6 +7,7 @@
# Author: Ianmcorvidae
# Author: Kris10
# Author: LyzTyphone
+# Author: Mihxil
# Author: Petrus Adamus
# Author: Yekrats
# --
@@ -16,17 +17,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:36+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:28+0000\n"
"Language-Team: Esperanto \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: eo\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -81,8 +82,9 @@ msgid "Save access settings"
msgstr "Konservu atingan agordon"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -92,13 +94,13 @@ msgstr "Konservu atingan agordon"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Konservu"
@@ -106,7 +108,7 @@ msgstr "Konservu"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Ne estas tiu paĝo."
@@ -116,6 +118,8 @@ msgstr "Ne estas tiu paĝo."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -131,13 +135,23 @@ msgstr "Ne estas tiu paĝo."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -145,15 +159,15 @@ msgstr "Ne estas tiu paĝo."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Ne ekzistas tiu uzanto."
@@ -167,9 +181,10 @@ msgstr "%1$s kaj amikoj, paĝo %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s kaj amikoj"
@@ -283,7 +298,7 @@ msgstr "Ĝisdatiĝoj de %1$s kaj amikoj ĉe %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -317,7 +332,21 @@ msgstr ""
"'im', 'none'."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Malsukcesis ĝisdatigi uzanton"
@@ -327,18 +356,23 @@ msgstr "Malsukcesis ĝisdatigi uzanton"
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "La uzanto ne havas profilon."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Malsukcesis konservi la profilon."
@@ -348,10 +382,10 @@ msgstr "Malsukcesis konservi la profilon."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
-#, fuzzy, php-format
+#, php-format
msgid ""
"The server was unable to handle that much POST data (%s byte) due to its "
"current configuration."
@@ -359,23 +393,24 @@ msgid_plural ""
"The server was unable to handle that much POST data (%s bytes) due to its "
"current configuration."
msgstr[0] ""
-"La servilo ne povis trakti tiom da POST-datumo (% bajtoj) pro ĝia nuna "
+"La servilo ne povis trakti tiom da POST-datumo (%s bajto) pro ĝia nuna "
"agordo."
msgstr[1] ""
-"La servilo ne povis trakti tiom da POST-datumo (% bajtoj) pro ĝia nuna "
+"La servilo ne povis trakti tiom da POST-datumo (%s bajtoj) pro ĝia nuna "
"agordo."
#. TRANS: Client error displayed when saving design settings fails because of an empty id.
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Malsukcesis konservi vian desegnan agordon"
@@ -383,48 +418,60 @@ msgstr "Malsukcesis konservi vian desegnan agordon"
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Malsukcesis ĝisdatigi vian desegnon."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+#, fuzzy
+msgctxt "ATOM"
msgid "Main"
-msgstr ""
+msgstr "Ĉefa"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Tempstrio de %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s abonatoj"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Ŝatolisto"
+msgstr "%s da ŝatolisteroj"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
msgstr "%s grupanoj"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Vi ne povas bloki vin mem!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Ne sukcesis bloki uzanton."
@@ -467,10 +514,10 @@ msgstr "Sen mesaĝteksto!"
#. TRANS: Form validation error displayed when message content is too long.
#. TRANS: %d is the maximum number of characters for a message.
#: actions/apidirectmessagenew.php:127 actions/newmessage.php:152
-#, fuzzy, php-format
+#, php-format
msgid "That's too long. Maximum message size is %d character."
msgid_plural "That's too long. Maximum message size is %d characters."
-msgstr[0] "Tro longas. Mesaĝa longlimo estas %d signoj."
+msgstr[0] "Tro longas. Mesaĝa longlimo estas %d signo."
msgstr[1] "Tro longas. Mesaĝa longlimo estas %d signoj."
#. TRANS: Client error displayed if a recipient user could not be found (403).
@@ -480,15 +527,15 @@ msgstr "Ricevonta uzanto ne troviĝas."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Vi ne povas sendi rektan mesaĝon al uzanto kiu ne estas via amiko."
#. TRANS: Client error displayed trying to direct message self (403).
#: actions/apidirectmessagenew.php:154
-#, fuzzy
msgid ""
"Do not send a message to yourself; just say it to yourself quietly instead."
-msgstr "Ne sendu mesaĝon al vi mem! Simple suspiru anstataŭ."
+msgstr "Ne sendu mesaĝon al vi mem! Simple diru al vi mem anstataŭe."
#. TRANS: Client error displayed when requesting a status with a non-existing ID.
#. TRANS: Client error displayed when trying to remove a favourite with an invalid ID.
@@ -504,8 +551,9 @@ msgid "This status is already a favorite."
msgstr "Ĉi tiu stato jam estas ŝatata."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Malsukcesis krei ŝataton."
@@ -515,7 +563,8 @@ msgid "That status is not a favorite."
msgstr "La stato ne estas ŝatata."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Malsukcesis forigi ŝataton."
@@ -543,9 +592,8 @@ msgstr "Vi ne povas malaboni vin mem."
#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
#: actions/apifriendshipsexists.php:88
-#, fuzzy
msgid "Two valid IDs or nick names must be supplied."
-msgstr "Du uzantajn IDojn aŭ montronomojn vi devas specifi."
+msgstr "Du validajn IDojn aŭ montronomojn vi devas havigi."
#. TRANS: Client error displayed when a source user could not be determined showing friendship.
#: actions/apifriendshipsshow.php:131
@@ -561,9 +609,9 @@ msgstr "Malsukcesis trovi celan uzanton."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "La uzantnomo jam uziĝis. Provu ion alian."
@@ -571,21 +619,22 @@ msgstr "La uzantnomo jam uziĝis. Provu ion alian."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Ne valida kromnomo."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Ĉefpaĝo ne estas valida URL."
@@ -593,40 +642,39 @@ msgstr "Ĉefpaĝo ne estas valida URL."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
-#, fuzzy
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
-msgstr "Plennomo estas tro longa (maksimume 255 literoj)"
+msgstr "Kompleta nomo tro longas (maksimume 255 signoj)"
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
-#, fuzzy, php-format
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
+#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
-msgstr[0] "Priskribo estas tro longa (maksimume %d signoj)."
+msgstr[0] "Priskribo estas tro longa (maksimume %d signo)."
msgstr[1] "Priskribo estas tro longa (maksimume %d signoj)."
#. TRANS: Client error shown when providing too long a location during group creation.
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
-#, fuzzy
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
-msgstr "lokonomo estas tro longa (maksimume 255 literoj)"
+msgstr "Lokonomo tro longas (maksimume 255 signoj)"
#. TRANS: Client error shown when providing too many aliases during group creation.
#. TRANS: %d is the maximum number of allowed aliases.
@@ -634,9 +682,9 @@ msgstr "lokonomo estas tro longa (maksimume 255 literoj)"
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
-#, fuzzy, php-format
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
+#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
msgstr[0] "Tro da alinomoj! Maksimume %d."
@@ -652,18 +700,16 @@ msgstr "La alinomo estas nevalida: \"%*s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "La alinomo \"%s\" estas jam okupita. Provu ion alian."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "La alinomo devas ne esti sama al la kromnomo."
@@ -674,28 +720,32 @@ msgstr "La alinomo devas ne esti sama al la kromnomo."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Grupo ne troviĝas."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Vi estas jam grupano."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "La administranto blokis vin de tiu grupo."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "La uzanto %1$*s ne povas aliĝi al la grupo %2$*s."
@@ -707,9 +757,11 @@ msgstr "Vi ne estas grupano."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -746,7 +798,7 @@ msgid "Upload failed."
msgstr "Malsukcesis alŝuti"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Malvalida peto-ĵetono aŭ verigilo."
@@ -762,25 +814,29 @@ msgstr "Nevalida peto-ĵetono."
#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
#: actions/apioauthauthorize.php:121
-#, fuzzy
msgid "Request token already authorized."
-msgstr "Vi ne estas rajtigita."
+msgstr ""
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Estis problemo pri via seanco. Bonvolu provi refoje."
@@ -798,18 +854,22 @@ msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Neatendita formo-sendo."
@@ -859,29 +919,31 @@ msgstr "Konto"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Kromnomo"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Pasvorto"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -955,6 +1017,7 @@ msgstr "Vi ne povas forigi la staton de alia uzanto."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -974,39 +1037,52 @@ msgstr "Vi ne povas ripeti vian propran avizon."
msgid "Already repeated that notice."
msgstr "La avizo jam ripetiĝis."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Metodo de API ne troviĝas."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Formato ne subtenata."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Stato forigita."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Neniu stato kun tiu ID troviĝas."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Ne povas forigi ĉi tiun avizon."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Forigi avizon"
@@ -1066,7 +1142,7 @@ msgstr "%1$*s ĝisdatigoj ŝatataj de %2$*s / %2$*s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Malsukcesis ĝisdatigi grupon."
@@ -1087,13 +1163,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s ĝisdatigoj kiuj respondas al ĝisdatigoj de %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s publika tempstrio"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s ĝisdatigoj de ĉiuj!"
@@ -1142,202 +1219,269 @@ msgstr "Nur uzanto povas legi sian propran paŝton."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Serĉi enhavon ĉe la retejo"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Avizo kun tiu identigaĵo ne ekzistas."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API-metodo farata."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "Metodo de API ne troviĝas."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Ne ekzistas tia profilo."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Ĝisdatiĝoj de %1$s kaj amikoj ĉe %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Eraris enmeti novan abonon."
+msgid "Cannot add someone else's subscription."
+msgstr "Estas neeble aldoni abonon de aliulo."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
#, fuzzy
-msgid "Can only fave notices."
+msgid "Can only handle favorite activities."
msgstr "Serĉi enhavon ĉe la retejo"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+#, fuzzy
+msgid "Can only fave notices."
+msgstr "Nur avizoj estas ŝatmarkeblaj."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Nekonata"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
-msgstr "Aldoni al ŝatolisto"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Ne ekzistas tia profilo."
+msgstr "Jam en la ŝatolisto."
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s grupanoj"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Grupoj de %s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Estas neeble aldoni anecon de aliulo."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Serĉi enhavon ĉe la retejo"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
-msgstr "Nekonata"
+msgstr "Nekonata grupo."
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Ĉiuj grupanoj"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
-msgstr "Ne ekzistas tia dosiero."
+msgstr "Ne ekzistas tia ŝatataĵo."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Malsukcesis forigi ŝataton."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Ne estas tiu grupo."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
-msgstr "Ĉiuj grupanoj"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Metodo de API ne troviĝas."
+msgid "Not a member."
+msgstr "Ne estas ano."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Ne ekzistas tia profilo."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Vi ne abonis tiun profilon."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Ne eblas forigi abonon al vi mem."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Ne ekzistas profilidentigilo: %d."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Vi ne abonis tiun profilon."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Ne eblas forigi abonon de aliulo."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Abonantoj de %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Nekonata dosiertipo"
+msgid "Unknown profile %s."
+msgstr "Nekonata profilo %s."
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Jam abonato!"
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1347,11 +1491,15 @@ msgstr "Ne estas tiu aldonaĵo."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Neniu kromnomo."
@@ -1368,7 +1516,7 @@ msgstr "Grando nevalida."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Vizaĝbildo"
@@ -1381,42 +1529,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Vi povas alŝuti vian personan vizaĝbildon. Dosiero-grandlimo estas %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Uzanto sen egala profilo."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Vizaĝbilda agordo"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Originala"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Antaŭrigardo"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Forigi"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1434,31 +1592,72 @@ msgstr "Tranĉi"
msgid "No file uploaded."
msgstr "Neniu dosiero alŝutiĝas."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Elektu kvadratan parton de la bildo kiel via vizaĝbildo"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Perdiĝis nia dosiera datumo."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Vizaĝbildo ĝisdatigita."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Eraris ĝisdatigi vizaĝbildon."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Vizaĝbildo forigita."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Nur ensalutinto rajtas ripeti avizon."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Fono"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1466,7 +1665,8 @@ msgstr "Vi jam blokis la uzanton."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Bloki uzanton"
@@ -1488,15 +1688,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Ne"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Ne bloki la uzanton"
#. TRANS: Button label on the user block form.
@@ -1507,15 +1707,15 @@ msgstr "Ne bloki la uzanton"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Jes"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Bloki la uzanton"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1523,31 +1723,6 @@ msgstr "Bloki la uzanton"
msgid "Failed to save block information."
msgstr "Eraris konservi blokado-informon."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Ne estas tiu grupo."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1618,23 +1793,6 @@ msgstr "Nerekonata adrestipo %s."
msgid "That address has already been confirmed."
msgstr "La adreso jam estis konfirmita."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Ne povus ĝisdatigi uzanton."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1660,11 +1818,85 @@ msgid "Conversation"
msgstr "Konversacio"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Avizoj"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Nur ensalutinto rajtas ripeti avizon."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Vi ne povas forigi uzantojn."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Vizaĝbildo forigita."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Krei konton"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Konfirmi"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Vi ne povas forigi uzantojn."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Vi ne povas forigi uzantojn."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1678,14 +1910,14 @@ msgstr "Aplikaĵo ne trovita."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Vi ne estas la posedanto de ĉi tiu aplikaĵo."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Problemo okazas pri via seancĵetono."
@@ -1707,23 +1939,27 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Ne forigu ĉi tiun aplikaĵon."
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Viŝi ĉi tiun aplikon"
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
#, fuzzy
msgid "You must be logged in to delete a group."
-msgstr "Ensalutu por eksaniĝi."
+msgstr "Por povi forigi grupon, oni devas ensaluti."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Ne estas alinomo aŭ ID."
@@ -1752,7 +1988,7 @@ msgstr "%1$s eksaniĝis de grupo %2$s"
#: actions/deletegroup.php:176 actions/deletegroup.php:202
#, fuzzy
msgid "Delete group"
-msgstr "Forigi uzanton"
+msgstr "Forigi grupon"
#. TRANS: Warning in form for deleleting a group.
#: actions/deletegroup.php:206
@@ -1768,25 +2004,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "Ne forigi la avizon"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "Forigi la uzanton"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Ne konektita."
@@ -1812,27 +2054,40 @@ msgstr "Ĉu vi certe volas forigi la avizon?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Ne forigi la avizon"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Forigi la avizon"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Vi ne povas forigi uzantojn."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Vi povas forigi nur lokan uzanton."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Forigi uzanton"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Forigi uzanton"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1840,80 +2095,104 @@ msgstr ""
"Ĉu vi certe volas forigi la uzanton? Ĉiu datumo pri la uzanto viŝiĝos de la "
"datumbazo sen sekurkopio."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Ne forigi la avizon"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Forigi la uzanton"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Aspekto"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Desegna agordo por ĉi tiu StatusNet-retejo"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "URL por la emblemo nevalida."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "URL por la emblemo nevalida."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Desegno ne havebla: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Ŝanĝi emblemon"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Reteja emblemo"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "Reteja emblemo"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Ŝanĝi desegnon"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Reteja desegno"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Desegno por la retejo"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Propra desegno"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Vi povas alŝuti propran StatusNet-desegnon kiel .zip-dosiero"
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Ŝanĝi fonbildon"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Fono"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1921,98 +2200,108 @@ msgid ""
msgstr "Vi povas alŝuti fonbildon por la retejo. Dosiero-grandlimo estas %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "En"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "For"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Aktivigi aŭ senaktivigi fonbildon"
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Ripeti la fonbildon"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Ŝanĝi kolorojn"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Enhavo"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Flanka strio"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Teksto"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Ligiloj"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Speciala"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Propra CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Uzu defaŭlton"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Restaŭri defaŭltajn desegnojn"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Redefaŭltiĝi"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Konservi"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Savi desegnon"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Ĉi tiu avizo ne estas preferita"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Aldoni al ŝatolisto"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Ne estas tia dokumento \"%s\""
#. TRANS: Title for "Edit application" form.
@@ -2027,7 +2316,7 @@ msgid "You must be logged in to edit an application."
msgstr "Ensalutu por redakti la aplikaĵon."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Ne estas tia aplikaĵo."
@@ -2037,63 +2326,73 @@ msgid "Use this form to edit your application."
msgstr "Uzu ĉi tiun formularon por redakti vian aplikaĵon."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Nomo necesas."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "La nomo estas tro longa (maksimume 255 literoj)"
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "La nomo jam uziĝis. Provu ion alian."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Priskribo necesas."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Fonta URL estas tro longa."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "Fonta URL estas nevalida."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organizo necesas."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "Organizonomo estas tro longa (maksimume 255 literoj)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Organiza ĉefpaĝo bezoniĝas."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Revokfunkcio estas tro longa."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "Revokfunkcia URL estas nevalida."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Malsukcesis ĝisdatigi la aplikaĵon."
@@ -2104,14 +2403,17 @@ msgid "Edit %s group"
msgstr "Redakti %s grupon"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Ensalutu por krei grupon."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Vi devas esti administranto por redakti la grupon."
@@ -2122,63 +2424,65 @@ msgstr "Uzas ĉi tiun formularon por redakti la grupon."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Nevalida alinomo: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Malsukcesis ĝisdatigi grupon."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Malsukcesis krei alinomon."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Elektoj konserviĝis."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Retpoŝta agordo"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Administri kiel ricevi mesaĝon de %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Retpoŝtadreso"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Nuna konfirmita retpoŝtadreso."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Forigi"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2191,44 +2495,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Retpoŝtadreso, ekzemple \"ViaNomo@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Aldoni"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Alveninta poŝto"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Mi volas afiŝi avizon per retpoŝto."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Sendu mesaĝon al la adreso por afiŝi novan avizon."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Krei novan retpoŝtadreson por afiŝado kaj nuligi la antaŭan."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2236,87 +2540,89 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nova"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Retpoŝta agordo."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Sendu al mi avizon pri nova abonado per retpoŝto."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Sendu al mi mesaĝon tiam, kiam iu ŝatas mian avizon ."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Sendu al mi mesaĝon tiam, kiam iu sendas al mi privatan mesaĝon."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Sendu al mi mesaĝon tiam, kiam iu sendas al mi \"@-respondon\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Permesi al amikoj puŝeti min kaj sendi al mi retpoŝtan mesaĝon."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publikigi MikroID por mia retpoŝtadreso."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Retpoŝta prefero konserviĝis."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Neniu retpoŝta adreso."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Malsukcesis normigi tiun retpoŝtadreson"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Retpoŝta adreso ne valida"
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Tiu jam estas via retpoŝtadreso."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Tiu retpoŝtadreso jam apartenas al alia uzanto."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Malsukcesis enmeti konfirmkodon."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2325,87 +2631,103 @@ msgstr ""
"alvenkeston (kaj spamkeston!) pri la kodo kaj instrukcio pri kiel uzi ĝin."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Ne estas peto-konfirmo por nuligi."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Tiu retpoŝtadreso estas malĝusta."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Ne povas forigi retpoŝtan konfirmon."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Retpoŝta konfirmo nuligita."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Tiu ne estas via retpoŝtadreso."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "La retpoŝtadreso estas forigita."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Ne estas alvena retpoŝtadreso"
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Malsukcesis ĝisdatigi uzantan informon."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Alvena retpoŝtadreso forigita."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Nova alvena retpoŝtadreso aldonita."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Ĉi tiu avizo jam estas ŝatata."
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Malŝati ŝataton."
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Popularaj avizoj"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Popularaj avizoj, paĝo %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Nunaj plej popularaj avizoj ĉe ĉi tiu retejo."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr "Ŝatataj avizoj aperos ĉi-paĝe sed ankoraŭ nenio ŝatiĝas."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2414,7 +2736,9 @@ msgstr ""
"Fariĝu la unua, kiu aldonis avizon al sia ŝatolisto, per alklako de la ŝato-"
"klavo apud iu ajn avizo, kiun vi ŝatas."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2423,142 +2747,186 @@ msgstr ""
"[Kreu konton](%%action.register%%) kaj estu la unua, kiu aldonos avizon al "
"sia ŝatolisto!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Ŝatataj avizoj de %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Ŝatataj ĝisdatiĝoj de %1$s ĉe %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Elstaraj uzantoj"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Elstaraj uzantoj, paĝo %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Elekto de kelke da elstaraj uzantoj ĉe %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Ne estas avizo-ID"
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Ne estas avizo."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Ne estas aldonaĵo."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Ne estas alŝutita aldonaĵo."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Neatendita respondo!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Vizitata uzanto ne ekzistas."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Vi povas aboni loke!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Tiu uzanto abonblokis vin."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Vi ne estas rajtigita."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Malsukcesis interŝanĝi petĵetonon al atingoĵetono."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Fora servo uzas nekonatan version de OMB-protokolo."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Eraro je ĝisdatigo de fora profilo."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Ne ekzistas tia dosiero."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Malsukcesis legi dosieron."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Rolo nevalida."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Tiu ĉi rolo estas rezervita, do ne povas esti asignita."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Vi ne rajtas doni al uzanto rolon ĉe ĉi tiu retejo."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Uzanto jam havas la rolon."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Neniu profilo elektita."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Ne estas profilo kun tiu ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Neniu grupo elektita."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Nur administranto rajtas bloki grupanon."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "La uzanto jam de grupo blokiĝas."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "La uzanto ne estas grupano."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Bloki uzanton de grupo"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2569,153 +2937,181 @@ msgstr ""
"forigita de la grupo, ne povos afiŝi, kaj ne povos aboni la grupon."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Ne bloki la uzanton de la grupo"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Bloki la uzanton de la grupo"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Malsukcesis forbari uzanton de la grupo pro datumbaza eraro."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Neniu ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Ensalutu por redakti grupon."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Grupa desegno"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr "Agordi kiel aspektu via grupo, per elekto de fonbildo kaj koloraro."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Malsukcesis ĝisdatigi vian desegnon."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Malsukcesis konservi vian desegnan agordon"
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Desegna agordo konservita."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Grupa emblemo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr ""
"Vi povas alŝuti emblemo-bildon por via grupo. Dosiero-grandlimo estas $s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Alŝuti"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Tranĉi"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Elektu kvadratan parton de la bildo kiel la emblemo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Emblemo ĝisdatigita."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Malsukcesis ĝisdatigi emblemon."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s grupanoj"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Grupanoj de %1$s, paĝo %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Listo de uzantoj en tiu ĉi grupo"
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Administranto"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Bloki"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Bloki ĉi tiun uzanton"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Elekti uzanton grupestro."
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Estrigi"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Estrigi la uzanton"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Ĝisdatigoj de grupano de %1$s ĉe %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grupoj"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Grupoj, paĝo %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"En %%%%site.name%%%% grupoj povas vi babili kun personoj kun similaj "
"interesoj. Post kiam vi aliĝas al grupo vi povos sendi mesaĝon per sintakso"
@@ -2723,11 +3119,13 @@ msgstr ""
"(%%%%action.groupsearch%%%%) aŭ [kreu vian propran grupon!](%%%%action."
"newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Krei novan grupon"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2736,25 +3134,33 @@ msgstr ""
"Serĉi grupon ĉe %%site.name%% per ĝia nomo, loko, aŭ priskribo. Dividu "
"serĉvortojn per spaco; ili estu almenaŭ 3 literojn longaj."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Grup-serĉo"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Neniu rezulto."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Se vi ne trovas grupon, kiun vi serĉas, vi povas mem [krei ĝin](%%action."
"newgroup%%)."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2764,136 +3170,146 @@ msgstr ""
"newgroup%%)!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Nur grupestro rajtas malbloki grupanon."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "La uzanto ne estas blokita de grupo."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Eraro ĉe provo malbloki."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Tujmesaĝila agordo."
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Vi povas sendi kaj ricevi avizojn per Jabber/GTalk-[tujmesaĝiloj](%%doc.im%"
"%). Jen agordu vian adreson kaj ceteron."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "Tujmesaĝilo ne estas disponebla."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Tujmesaĝila adreso"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Nuna konfirmita Jabber/GTalk-adreso."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Atendante konfirmon por la adreso. Kontrolu vian Jabber/GTalk-konton por "
"mesaĝo kun pli da gvido. (Ĉu vi aldonis %s al via amikolisto?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber/GTalk-adreso, ekzemple \"UserName@example.org\". Unue, certe aldonu %"
"s al via amikolisto je via tujmesaĝilo-kliento aŭ je GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Tujmesaĝilaj preferoj"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Sendu al mi avizojn per Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Afiŝu avizon tiam, kiam mia Jabber/GTalk-stato ŝanĝiĝas."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Sendu al mi per Jabber/GTalk respondojn de personoj, kiujn mi ne abonas."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publikigu MikroID por mia Jabber/GTalk-adreso."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Prefero konservita."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Mankas Jabber-ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Malsukcesis normigi la Jabber-ID"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Tio ne estas valida Jabber-ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Tio estas jam via Jabber-ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber-ID jam apartenas al alia uzanto."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2902,74 +3318,80 @@ msgstr ""
"Konfirmo-kodo senditas al la tujmesaĝila adreso aldonita. Vi devas permesi "
"al %s sendi mesaĝojn al vi."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Tiu tujmesaĝila adreso estas malĝusta."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Malsukcesis forigi tujmesaĝila agordo."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Tujmesaĝila konfirmo nuligita."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Tio ne estas via Jabber-ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "La tujmesaĝila adreso estas forigita."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Alvenkesto de %1$s - paĝo %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Alvenkesto de %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Tio ĉi estas via alvenkesto, kie listiĝas viaj alvenaj privataj mesaĝoj."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Invito estas malebligita."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Ensalutu por inviti aliajn uzantojn al %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Nevalida retpoŝtadreso: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Invito(j) senditas"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Inviti novajn uzantojn"
@@ -2977,7 +3399,7 @@ msgstr "Inviti novajn uzantojn"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2986,7 +3408,7 @@ msgstr[1] "Vi jam abonas jenajn uzantojn:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2995,7 +3417,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3006,7 +3428,7 @@ msgstr[1] "Jenaj personoj estas jam uzantoj kaj vin aŭtomate abonigis al ili."
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3015,7 +3437,7 @@ msgstr[1] "Invito(j) sendiĝis al jenaj personoj:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3024,34 +3446,35 @@ msgstr ""
"retejo. Dankon por kreskigi la komunumon!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
"Uzu la formularon por inviti viajn amikojn kaj kolegojn al ĉi tiu servo."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Retpoŝtadresoj"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Adresoj de invitataj amikoj (unu por linio)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Persona mesaĝo"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Vi povas aldoni personan mesaĝon al la invito."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Sendi"
@@ -3059,7 +3482,7 @@ msgstr "Sendi"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s invitis vin kunaliĝi ĉe %2$s"
@@ -3069,7 +3492,7 @@ msgstr "%1$s invitis vin kunaliĝi ĉe %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3124,167 +3547,183 @@ msgstr ""
"\n"
"via sincere, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Ensalutu por aniĝi al grupo."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s aniĝis al grupo %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Ensalutu por eksaniĝi."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Vi ne estas grupano."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s eksaniĝis de grupo %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Permesilo"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Nevalida permesila elekto"
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Nevalida permesila titolo. La longlimo estas 255 literoj."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privata"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Ĉiuj rajtoj rezervitaj."
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Speco"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Konservi"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Vi jam ensalutis."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Malĝusta uzantnomo aŭ pasvorto."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Eraras agordi uzanton. Vi verŝajne ne rajtiĝas."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Ensaluti"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Ensaluti al la retejo"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Memoru min"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "Aŭtomate ensaluti estonte; ne taŭge por komuna komputilo!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Ĉi via pasvorto perdiĝas?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3292,11 +3731,11 @@ msgstr ""
"Por sekureca kialo, bonvole re-entajpi vian uzantnomon kaj pasvorton antaŭ "
"ŝanĝi vian agordon."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Ensaluti per via uzantnomo kaj pasvorto."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3332,19 +3771,22 @@ msgid "New application"
msgstr "Nova Apliko"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Ensalutu por registri aplikaĵon."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Uzu ĉi tiun formularon por registri novan aplikaĵon."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Fonta URL bezonata."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Malsukcesis krei aplikaĵon."
@@ -3353,11 +3795,23 @@ msgstr "Malsukcesis krei aplikaĵon."
msgid "New group"
msgstr "Nova grupo"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Vi ne estas grupano."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Uzas ĉi tiun formularon por krei novan grupon."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "La alinomo devas ne esti sama al la kromnomo."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nova mesaĝo"
@@ -3407,7 +3861,9 @@ msgstr "Nova avizo"
msgid "Notice posted"
msgstr "Avizo afiŝiĝas"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3416,16 +3872,21 @@ msgstr ""
"Serĉi avizon ĉe %%site.name%% per ĝia enhavo. Dividu serĉvortojn per spaco; "
"ili estu almenaŭ 3 literojn longaj."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Teksta serĉado"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Trovito per \"%1$s\" ĉe %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3434,7 +3895,9 @@ msgstr ""
"Estu la unua [afiŝi pri la temo](%%%%action.newnotice%%%%?status_textarea=%"
"s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3443,14 +3906,17 @@ msgstr ""
"Kial ne [krei konton](%%%%action.register%%%%) kaj esti la unua [afiŝi pri "
"la temo](%%%%action.newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Ĝisdatiĝo enhavante \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Ĝisdatiĝo kongruanta al serĉvorto \"%1$s\" ĉe %2$s!"
#: actions/nudge.php:85
@@ -3492,30 +3958,30 @@ msgid "You have not registered any applications yet."
msgstr "Vi ankoraŭ neniun aplikaĵon registris."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Konektita aplikaĵo"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Mi ne estas uzanto de tiu aplikaĵo."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Maleble revoki aliradon al aplikaĵo: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3523,20 +3989,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Vi ne rajtigis iun ajn aplikaĵon uzi vian konton."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Metodo de API ne troviĝas."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Metodo de API ne troviĝas."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Avizo sen profilo"
@@ -3546,6 +4022,16 @@ msgstr "Avizo sen profilo"
msgid "%1$s's status on %2$s"
msgstr "Stato de %1$s ĉe %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Ricevonta uzanto ne troviĝas."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3559,16 +4045,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Bonvolu, nur %s-URL per plata HTTP."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Datumformato ne subteniĝas."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Homserĉo"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Avizoserĉo"
@@ -3582,69 +4069,80 @@ msgid "Manage various other options."
msgstr "Agordi diversajn aliajn elektojn."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
-msgstr " (Senpaga servo)"
+msgstr " (libera servo)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Mallongigu URLojn per"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Uzota aŭtomata mallongigad-servo."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Vidi profilo-desegnon"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Montri aŭ kaŝi profilo-desegnon."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "URL-mallongigado-servo tro longas (maksimume 50 literojn)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Neniu uzanto-ID specifiĝas."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Neniu ensalutado-ĵetono specifiĝas."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Neniu ensalutad-ĵetono bezoniĝas."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Specifita ensalutado-ĵetono nevalidas."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Ensalutado-ĵetono eksvalidiĝas."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "elirkesto de %1$s - paĝo %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Elirkesto de %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Tio ĉi estas via elirkesto, kie listiĝas privataj mesaĝoj, kiujn vi sendis."
@@ -3657,7 +4155,8 @@ msgstr "Ŝanĝi pasvorton"
msgid "Change your password."
msgstr "Ŝanĝi vian pasvorton."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Pasvorta ŝanĝo"
@@ -3665,48 +4164,50 @@ msgstr "Pasvorta ŝanĝo"
msgid "Old password"
msgstr "Malnova pasvorto"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nova pasvorto"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 aŭ pli da literoj"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Konfirmi"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Same kiel pasvorto supra"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Ŝanĝi"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Pasvorto devas esti 6-litera aŭ pli longa."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "La pasvortoj diferencas."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Neĝusta malnova pasvorto"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Eraris konservi uzanton: nevalida."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Malsukcesis konservi novan pasvorton."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Pasvorto konservitas."
@@ -3913,7 +4414,7 @@ msgstr "Dosierujo kie fonoj estas."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Aldonaĵo"
@@ -3981,7 +4482,9 @@ msgstr "Servilo, kien direkti \"SSL\"-petojn"
msgid "Save paths"
msgstr "Konservu lokigilon"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3990,7 +4493,8 @@ msgstr ""
"Serĉi personon ĉe %%site.name%% per ĝia nomo, loko, aŭ intereso. Dividu "
"serĉvortojn per spacoj; ili estu almenaŭ 3 literojn longaj."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Persona serĉado"
@@ -4014,12 +4518,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "Aviza permesilo ‘%1$s’ ne konformas al reteja permesilo ‘%2$s’."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profila agordo"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4027,33 +4531,34 @@ msgstr ""
"vi."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profila informo"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 minusklaj literoj aŭ ciferoj, neniu interpunkcio aŭ spaco"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Plena nomo"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Hejmpaĝo"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL de via hejmpaĝo, blogo aŭ profilo ĉe alia retejo"
@@ -4061,7 +4566,7 @@ msgstr "URL de via hejmpaĝo, blogo aŭ profilo ĉe alia retejo"
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4069,80 +4574,87 @@ msgstr[0] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj"
msgstr[1] "Priskribu vin mem kaj viajn ŝatokupojn per ne pli ol %d signoj"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Priskribu vin mem kaj viajn ŝatokupojn"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Biografio"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Loko"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Sciigu mian nunan lokon, kiam mi sendas avizon."
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Markiloj"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Markiloj por vi mem (literoj, ciferoj, \"-\", \".\", kaj \"_\"), dividite "
"per komoj aŭ spacoj"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Lingvo"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Preferata lingvo"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Horzono"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "En kiu horzono vi kutime troviĝas?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr "Aŭtomate aboni iun ajn, kiu abonas min (prefereble por ne-homoj)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4150,50 +4662,54 @@ msgstr[0] "Biografio tro longas (maksimume %d literoj)"
msgstr[1] "Biografio tro longas (maksimume %d literoj)"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Horzono ne elektita"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Lingvo tro longas (maksimume 50 literoj)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Nevalida markilo: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Malsukcesis ĝisdatigi uzanton por aŭtomatabonado."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Malsukcesis konservi lokan preferon."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Malsukcesis konservi la profilon."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "Malsukcesis konservi markilojn."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Malsukcesis konservi etikedojn."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Agordo konservitas."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Krei konton"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4267,6 +4783,12 @@ msgstr ""
"blogging) servo surbaze de libera servila programo [StatusNet](http://status."
"net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s ĝisdatigoj de ĉiuj!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4309,35 +4831,43 @@ msgstr "Kial ne [krei konton](%%action.register%%) kaj esti la unua afiŝanto!"
msgid "Tag cloud"
msgstr "Entikedo-nubo"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Vi jam ensalutis."
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Ne estas tia rehava kodo."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Ne rehava kodo."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Rehava kodo por nekonata uzanto."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Eraras pro komfirma kodo."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Tiu komfirmnumero tro malnovas. Bonvolu rekomenci."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Malsukcesas ĝisdatigi uzanton per komfirmita retpoŝtadreso."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4345,67 +4875,100 @@ msgstr ""
"Se vi forgesas aŭ perdas vian pasvorton, ni povas sendi novan pasvorton al "
"la retpoŝtadreso konservita je via konto."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr "Vi estis identigita. Enigu sube novan pasvorton."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Pasvorton rehavi."
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Alinomo aŭ retpoŝtadreso."
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Via alinomo ĉe tiu ĉi servilo, aŭ via registrita retpoŝadreso."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Rehavi"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Rehavi"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Refari pasvorton"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Refari pasvorton"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Petiĝas pasvorton rehavado"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Pasvorto konservitas."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Nekonata ago"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "Almenaŭ 6 signoj, kaj ne forgesu ĝin!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Restarigi"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Alinomo aŭ retpoŝtadreso."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Ne estas uzanto kun tiu retpoŝtadreso aŭ uzantnomo."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Neniu registrita retpoŝtadreso apartenas al la uzanto."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Eraras pro komfirma kodo."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4413,122 +4976,119 @@ msgstr ""
"Gvidoj rehavi vian pasvorton jam sendiĝas al la retpoŝtadreso registrita je "
"via konto."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Neatendita pasvorto-rekomencigo."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Pasvorto devas enhavi 6 signojn aŭ pli."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Pasvorto kaj komfirmo ne kongruas."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Eraris agordi uzanton."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Nova pasvorto sukcese konserviĝas. Vi nun estas ensalutinta."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Pardonon, nur invito rajtas registri."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Pardonon, nevalida invitkodo."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registriĝo sukcesa"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registri"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registriĝo ne permesita."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Vi ne povas registriĝi, se vi ne konsentas kun la permesilo."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Retpoŝta adreso jam ekzistas."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Nevalida uzantnomo aŭ pasvorto."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Per tiu ĉi formularo vi povas krei novan konton. Poste povos vi afiŝi avizon "
"kaj komuniki kun amikoj kaj kolegoj. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 minusklaj literoj aŭ ciferoj, neniu interpunkcio aŭ spaco. Bezonate."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 aŭ pli da literoj. Bezonate."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Same kiel supra pasvorto. Bezonate."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Retpoŝto"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Uzu nur por ĝisdatigo, anonco, kaj rehavi pasvorton."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Pli longa nomo, prefere via \"vera\" nomo."
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL de via hejmpaĝo, blogo aŭ profilo ĉe alia retejo"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Kie vi estas, ekzemple \"Urbo, Ŝtato (aŭ Regiono), Lando\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
"Mi komprenas ke enhavo kaj datumo de %1$s estas privataj kaj sekretigita."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Mia teksto kaj dosiero estas aŭtorrajtigita de %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Mia teksto kaj dosiero restu en mia propra aŭtorrajto."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Ĉiuj rajtoj rezervitaj."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4537,7 +5097,7 @@ msgstr ""
"Mia teksto kaj dosiero estas atingebla per %s krom jene: pasvorto, "
"retpoŝtadreso, tujmesaĝilo-adreso, kaj telefonnumero."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4569,14 +5129,14 @@ msgstr ""
"\n"
"Dankon pro registriĝo, kaj ni esperas al vi ĝuon de uzi ĉi servon."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
msgstr ""
"(Vi ricevos tuj mesaĝon retpoŝtan, kun gvidon konfirmi vian retpoŝtadreson.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4587,78 +5147,87 @@ msgstr ""
"%). Se vi jam havas konton ĉe iu [kongrua mikroblogilo-retejo](%%doc."
"openmublog%%), entajpu vian profilan URL jene."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Defore aboni"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Aboni foran uzanton"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Uzanta alinomo"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Alnomo de la uzanto, kiun vi volas aboni."
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profila URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "URL de via profilo ĉe alia kongrua mikroblogilo-servo"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Aboni"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Nevalida profila URL (fuŝa formato)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Ne valida profila URL (ne estas YADIS-dokumento aŭ difiniĝas nevalida XRDS)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Tio estas loka profilo! Ensalutu por aboni."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Malsukcesis akiri pet-ĵetonon."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Nur ensalutinto rajtas ripeti avizon."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Neniu profilo specifiĝas."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Vi ne povas ripeti vian propran avizon."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "La avizo jam ripetiĝis."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Ripetita"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Ripetita!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Respondoj al %s"
@@ -4710,11 +5279,106 @@ msgstr ""
"Vi povas provi [puŝeti %1$s](../%2$s) aŭ[afiŝi ion al li](%%%%action."
"newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Respondoj al %1$s ĉe %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Nur ensalutinto rajtas ripeti avizon."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Vi ankoraŭ neniun aplikaĵon registris."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Alŝuti dosieron"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Alŝutata dosiero superas la dosierujon upload_max_filesize (alŝuta "
+"grandlimo) en php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Alŝutata dosiero superas la dosierujon MAX_FILE_SIZE (Alŝuta grandlimo) "
+"difinitan per HTML formo."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Alŝutata dosiero venas nur parte."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Mankas labora dosierujo."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Malsukcesis skribi dosieron al disko."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Sisteme eraris alŝuti dosieron."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Ĉiuj grupanoj"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Alŝuti dosieron"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Vi ne rajtas revoki de uzanto rolon ĉe ĉi tiu retejo."
@@ -4723,7 +5387,7 @@ msgstr "Vi ne rajtas revoki de uzanto rolon ĉe ĉi tiu retejo."
msgid "User doesn't have this role."
msgstr "La uzanto ne havas la rolon."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4765,85 +5429,87 @@ msgstr "Ŝalti sencimigadan eligon por seanco."
msgid "Save site settings"
msgstr "Konservi retejan agordon"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Ensalutu por vidi la aplikaĵon."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Aplikaĵa profilo"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
-msgstr "Ikono"
+msgstr "Bildsimbolo"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nomo"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organizaĵo"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Priskribo"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistiko"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Kreita de %1$s - %2$s defaŭlta aliroj - %3$d uzantoj"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Aplikaĵa ago"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Rekomencigi ŝlosilon & sekreton"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Forigi"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Aplikaĵa informo"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Konsumanta ŝlosilo"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Konsumanta sekreto"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "Pet-ĵetona URL"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "Alir-ĵetona URL"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Rajtigi URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4851,35 +5517,42 @@ msgstr ""
"Rimarku: Ni subtenas HMAC-SHA1-subskribo. Ni ne subtenas platteksta "
"subskribado-metodon."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Ĉu vi certe volas rekomencigi vian konsumantan ŝlosilon kaj sekreton?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Ŝatataj avizoj de %s, paĝo %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Malsukcesis ricevi ŝataton."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Fluo pri ŝatato de %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Fluo pri ŝatato de %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Fluo pri ŝatato de %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4887,7 +5560,9 @@ msgstr ""
"Vi ne jam ŝatis iun ajn avizon. Alklaku la ŝati-klavon apud avizo ŝatita por "
"poste trovi ĝin kaj atentigi al ĝi."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4895,7 +5570,10 @@ msgid ""
msgstr ""
"%s ankoraŭ ne aldonis iun ajn ŝatatan avizon. Sendu ion, kion ili ŝatos. :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4905,7 +5583,8 @@ msgstr ""
"%s ankoraŭ ne aldonis iun ajn ŝatatan avizon. Kial ne [krei konton](%%%%"
"action.register%%%%) kaj sendi ion, kion ili ŝatos. :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Tiel vi povas diskonigi vian ŝataton."
@@ -4923,82 +5602,89 @@ msgid "%1$s group, page %2$d"
msgstr "Grupo %1$s, paĝo %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Grupa profilo"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Noto"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Alnomo"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Grupaj agoj"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Avizofluo de grupo %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Avizofluo de grupo %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Avizofluo de grupo %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Foramiko de grupo %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Grupanoj"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(nenio)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Ĉiuj grupanoj"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Kreita"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5008,7 +5694,7 @@ msgstr "Grupanoj"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5025,7 +5711,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5039,30 +5725,30 @@ msgstr ""
"siaj vivoj kaj ŝatokupoj. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administrantoj"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Ne estas tiu mesaĝo."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Nur la sendinto kaj ricevinto rajtas legi la mesaĝon."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Mesaĝo al %1$s ĉe %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Mesaĝo de %1$s ĉe %2$s"
@@ -5078,7 +5764,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, paĝo %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5323,74 +6009,76 @@ msgstr "Teksto de reteja anonco (apenaŭ 255 literoj; HTML eblas)"
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Konservi retejan agordon"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMM-a agordo"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Vi povos ricevi SMM-mesaĝon per retpoŝto de %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMM ne estas disponebla."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMM-a adreso"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Nuna konfirmita SMM-pova telefonnumero"
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Atendante konfirmon por la telefonnumero."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Konfirma kodo."
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Entajpu la kodon, kiu vi ricevis per poŝtelefono."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Konfirmi"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMM-a telefonnumero"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Telefonnumero, sen interpunkcio aŭ spacoj, kun loka kodo"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMM-aj preferoj"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5399,32 +6087,32 @@ msgstr ""
"peranto."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "SMM-prefero konserviĝas."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Mankas la telefononumero."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Neniu peranto elektiĝas."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Tio estas jam via telefonnumero."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Tiu telefonnumero jam apartenas al alia uzanto."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5433,39 +6121,39 @@ msgstr ""
"poŝtelefonon pri la kodo kaj gvido pri kiel uzi ĝin."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Tiu konfirma kodo estas malĝusta."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMM-a konfirmo nuliĝas."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Tio ne estas via telefonnumero."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "La SMM-numreo estas forigita."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Poŝtelefona peranto"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Elektu peranton"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5475,8 +6163,9 @@ msgstr ""
"per retpoŝto sed ne listiĝas tie ĉi, sendu mesaĝon al ni sciigi, je %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Neniu kodo entajpita"
#. TRANS: Menu item for site administration
@@ -5548,15 +6237,19 @@ msgstr "Vi ne abonis tiun profilon."
msgid "Could not save subscription."
msgstr "Malsukcesis konservi abonon."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "La ago akceptas nur POST-an peton."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Vi ne povas aboni foran OMB 0.1-an profilon per ĉi tiu ago."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Abonita"
@@ -5588,7 +6281,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Jen homoj, kiuj rigardas avizojn de %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5597,7 +6290,7 @@ msgstr "Vi ne havas abonanton. Provu aboni konatojn, kaj ili eble reaboni vin"
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s ne havas abonantojn. Ĉu vi volas esti la unua?"
@@ -5607,7 +6300,7 @@ msgstr "%s ne havas abonantojn. Ĉu vi volas esti la unua?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5640,7 +6333,7 @@ msgstr "Jen homoj, kies avizoj %s rigardas."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5658,23 +6351,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s ne abonas iun ajn."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Avizofluo pri %1$s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5707,12 +6401,15 @@ msgstr "Neniu ID-argumento"
msgid "Tag %s"
msgstr "Etikedo %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Uzanta profilo"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Foto"
@@ -5728,15 +6425,16 @@ msgstr ""
"Etikedoj por ĉi tiuj uzanto (literoj, ciferoj, -, . Kaj _), apartigu per "
"komo aŭ spaco."
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Nevalida markilo: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
msgstr "Vi rajtas entikedi nur abonanton aŭ abonaton."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Malsukcesis konservi etikedojn."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr "Uzu ĉi tiun formularon por etikedi viajn abonantojn aŭ abonatojn."
@@ -5745,6 +6443,7 @@ msgstr "Uzu ĉi tiun formularon por etikedi viajn abonantojn aŭ abonatojn."
msgid "No such tag."
msgstr "Ne estas tiu etikedo."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Vi ne jam blokis la uzanton."
@@ -5765,7 +6464,7 @@ msgstr "Neniu profila ID petiĝas."
msgid "Unsubscribed"
msgstr "Malabonita"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5798,12 +6497,11 @@ msgstr "Nevalida bonvena teksto. La longlimo estas 225 literoj."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Nevalida defaŭlta abono: '%1$s' ne estas uzanto."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profilo"
@@ -5860,54 +6558,70 @@ msgstr "Ĉu permesi al uzantoj inviti novan uzantojn."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Konservi retejan agordon"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Rajtigi abonon"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Bonvolu kontroli la detalojn por certigi ĉu vi deziras aboni la avizoj de ĉi "
"tiu uzanto. Se ne simple alklaku “Rifuzi\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licenco"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Akcepti"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Aboni la uzanton"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Malakcepti"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Rifuzi la abonon"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Ne bezonas permesado!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Abono permesiĝis"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5916,11 +6630,12 @@ msgstr ""
"La abono permesiĝis, sed ne pasiĝis revoka URL. Legu gvidon de la retejo pro "
"detaloj pri kiel rajtigi abonon. Via abono-ĵetono jenas:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Abono rifuziĝis"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5929,54 +6644,78 @@ msgstr ""
"La abono rifuziĝis sed ne pasiĝis revoka URL. Legu gvidon de la retejo pro "
"detaloj pri kiel rajtigi abonon. Via abono-ĵetono jenas:"
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "URL de aboninto ‘%s’ ne troviĝas tie ĉi."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "URL de abonito ‘%s’ tro longas."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "URL de abonito ‘%s’ estas de loka uzanto."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "Profila URL ‘%s’ estas de loka uzanto."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Rigardato-flua permesilo \"%1$s\" ne konformas al reteja permesilo \"%2$s\"."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "Vizaĝbilda URL ‘%s' ne estas valida."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Malsukcesis legi vizaĝbildan URL ‘%s’."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Malĝusta bildotipo por vizaĝbilda URL ‘%s'."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Profila desegno"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr "Agodi kiel aspektu via profilo, per elekto de fonbildo kaj koloraro."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Ĝuu vian kolbasobulkon!"
@@ -6006,7 +6745,7 @@ msgstr "Provu [serĉi grupojn](%%*action.*groupsearch%%) kaj aniĝi."
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Ĝisdatiĝoj de %1$s ĉe %2$s!"
@@ -6066,7 +6805,7 @@ msgid "Plugins"
msgstr "Kromprogramo"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Versio"
@@ -6075,32 +6814,32 @@ msgid "Author(s)"
msgstr "Aŭtoro(j)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Ŝati"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) ŝatis vian avizon"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Malsukcesis trakti URL '%s'"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin pensas ke io neeblas."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6117,7 +6856,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6126,7 +6865,7 @@ msgstr[1] "Dosiero tiel granda superos vian uzantan kvoton kun %d bajtoj."
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6134,7 +6873,7 @@ msgstr[0] "Dosiero tiel granda superos vian monatan kvoton kun %d bajtoj."
msgstr[1] "Dosiero tiel granda superos vian monatan kvoton kun %d bajtoj."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Nevalida dosiernomo."
@@ -6192,7 +6931,7 @@ msgid "Could not create login token for %s"
msgstr "Malsukcesis krei ensalut-ĵetonon por %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Ne troviĝas datumbaza nomo aŭ DSN ie ajn."
@@ -6219,30 +6958,30 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Ne estas tia profilo(%1$d) rilate al avizo (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Datumbaze eraris enmeti heketetikedo: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Malsukcesis konservi avizon. Ĝi tro longas."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Malsukcesis konservi avizon. Uzanto ne kontata."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
"Tro da avizoj tro rapide; pace spiru kaj reafiŝu post kelke da minutoj."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6250,43 +6989,43 @@ msgstr ""
"Tro da refojado tro rapide; pace spiru kaj reafiŝu post kelke da minutoj."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Vi estas blokita de afiŝi ĉe tiu ĉi retejo."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Malsukcesis konservi avizon."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
#, fuzzy
msgid "Bad type provided to saveKnownGroups."
msgstr "Fuŝa tipo donita al saveKnownGroups"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Malsukcesis konservi grupan alvenkeston."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Malsukcesis lokan grupan informon."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6294,14 +7033,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "Malsukcesis revoki rolon \"%1$s\" de uzanto #%2$d; ĝi ne ekzistas."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr "Malsukcesis revoki rolon \"%1$s\" de uzanto #%2$d; datumbaza eraro."
@@ -6371,35 +7110,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Bonvenon al %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Neniu difinata uzanto por sol-uzanta reĝimo."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Malsukcesis krei grupon."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Malsukcesis ĝisdatigi grupan URI."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Malsukcesis ĝisdatigi grupan anecon."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Malsukcesis lokan grupan informon."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Vi ne povas forigi uzantojn."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6436,211 +7196,214 @@ msgid "Other"
msgstr "Alia"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Sentitola paĝo"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Unua reteja navigado"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Tempstrio pri vi kaj amikoj"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Persona"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Ŝanĝu la retpoŝtadreson, vizaĝbildon, pasvorton aŭ la profilon"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Konto"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Konekti al servoj"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Konekti"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Ŝanĝi agordojn de la retejo"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Administri"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviti amikojn kaj kolegojn al %s kun vi"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Inviti"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Elsaluti el la retejo"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr " Elsaluti"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Krei konton"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registriĝi"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Ensaluti al la retejo"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Ensaluti"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Helpu min!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Helpo"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Serĉi homon aŭ tekston"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Serĉi"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Reteja anonco"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Loka vido"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Paĝa anonco"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Dua reteja navigado"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Helpo"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Enkonduko"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "Oftaj demandoj"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Serva Kondiĉo"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Privateco"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Fontkodo"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Kontakto"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Insigno"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Permesilo de la programaro StatusNet"
@@ -6648,7 +7411,7 @@ msgstr "Permesilo de la programaro StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6658,7 +7421,7 @@ msgstr ""
"site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** estas mikrobloga servo."
@@ -6667,7 +7430,7 @@ msgstr "**%%site.name%%** estas mikrobloga servo."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6679,27 +7442,27 @@ msgstr ""
"licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Reteja enhava permesilo"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Enhavo kaj datumo de %1$s estas privata kaj konfidenca."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
"Enhava kaj datuma aŭtorrajto apartenas al %1$s. Ĉiuj rajtoj rezervitaj."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Enhava kaj datuma aŭtorrajto apartenas al kontribuintoj. Ĉiuj rajtoj "
@@ -6707,25 +7470,25 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "Ĉiuj enhavo kaj datumo ĉe %1$s estas havebla sub permesilo %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paĝado"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Poste"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Antaŭe"
@@ -6734,10 +7497,80 @@ msgstr "Antaŭe"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Nekonata lingvo \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Foto"
+msgid "Cannot force remote user to subscribe."
+msgstr "Specifu nomon de la abonota uzanto."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Nekonata dosiertipo"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Vi estas jam grupano."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Serĉi enhavon ĉe la retejo"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Ne ekzistas tiu uzanto."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6809,7 +7642,7 @@ msgid "User configuration"
msgstr "Uzanta agordo"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Uzanto"
@@ -6853,19 +7686,23 @@ msgstr "API-fonto bezonas leg-skriba aliro, sed vi nur rajtas legi."
msgid "No application for that consumer key."
msgstr "Ne estas aplikaĵo kun la kosumanta ŝlosilo."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Fuŝa aliro-ĵetono."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Ne estas uzanto kun tiu ĵetono."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Malsukcesis aŭtentigi vin."
@@ -6888,28 +7725,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Malsukcesis enmeti mesaĝon."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Datumbaza eraro enigi la uzanton de *OAuth-aplikaĵo."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Provis revoki nekonatan ĵetonon."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Malsukcesis forigi revokitan ĵetonon."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Emblemo por tiu ĉi aplikaĵo"
@@ -7020,17 +7861,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Revoki"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Ne forigi la avizon"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Aŭtoro"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Donanto"
@@ -7061,6 +7908,11 @@ msgstr "Ne estas permesita ŝanĝi la pasvorton"
msgid "Block"
msgstr "Bloki"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Bloki la uzanton"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7175,7 +8027,7 @@ msgstr "Plennomo: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Loko: %s"
@@ -7183,7 +8035,7 @@ msgstr "Loko: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Hejmpaĝo: %s"
@@ -7418,65 +8270,65 @@ msgid ""
"tracking - not yet implemented.\n"
msgstr ""
"Komandoj:\n"
-"on - ŝalti sciigon\n"
-"off - malŝalti sciigon\n"
-"help - montri ĉi tiun helpon\n"
-"follow - aboni uzanton\n"
-"groups - listi grupon, kiujn vi aniĝis\n"
-"subscriptions - listi viajn abonatojn\n"
-"subscribers - listi viajn abonantojn\n"
-"leave - malabnoi uzanton\n"
-"d - sendi rektan mesaĝon al uzanto\n"
-"get - legi la lastan avizon de uzanto\n"
-"whois - legi profilan informon pri uzanto\n"
-"lose - ĉesigi la uzanton de sekvi vin\n"
-"fav - ŝati la lastan avizon de uzanto\n"
-"fav # - ŝati la avizon kun la ID\n"
-"repeat # - ripeti la avizon kun la ID\n"
-"repeat - ripeti la lastan avizon de uzanto\n"
-"reply # - respondi la avizon kun la ID\n"
-"reply - respondi la lastan avizon de uzanto\n"
-"join - aniĝi al grupo\n"
-"login - havi ligilon por ensaluti al reta interfaco\n"
-"drop - foriri el grupo\n"
-"stats - legi vian staton\n"
-"stop - same kiel 'off'\n"
-"quit - same kiel 'off'\n"
-"sub - same kiel 'follow'\n"
-"unsub - same kiel 'leave'\n"
-"last - same kiel 'get'\n"
-"on - ankoraŭ ne realigita.\n"
-"off - ankoraŭ ne realigita.\n"
-"nudge - puŝeti la uzanton, ke li ĝisdatigu!\n"
-"invite - ankoraŭ ne realigita.\n"
-"track - ankoraŭ ne realigita.\n"
-"untrack - ankoraŭ ne realigita.\n"
-"track off - ankoraŭ ne realigita.\n"
-"untrack all - ankoraŭ ne realigita.\n"
-"tracks - ankoraŭ ne realigita.\n"
-"tracking -ankoraŭ ne realigita.\n"
+"on — ŝalti sciigon;\n"
+"off — malŝalti sciigon;\n"
+"help — montri ĉi tiun helpon;\n"
+"follow — aboni uzanton;\n"
+"groups — listigi grupojn, kiujn vi aniĝis;\n"
+"subscriptions — listigi viajn abonatojn;\n"
+"subscribers — listigi viajn abonantojn;\n"
+"leave — malaboni uzanton;\n"
+"d — sendi rektan mesaĝon al uzanto;\n"
+"get — legi la lastan avizon de uzanto;\n"
+"whois — legi profilan informon pri uzanto;\n"
+"lose — ĉesigi la uzanton de sekvi vin;\n"
+"fav — ŝati la lastan avizon de uzanto;\n"
+"fav # — ŝati la avizon kun la ID;\n"
+"repeat # — ripeti la avizon kun la ID;\n"
+"repeat — ripeti la lastan avizon de uzanto;\n"
+"reply # — respondi la avizon kun la ID;\n"
+"reply — respondi la lastan avizon de uzanto;\n"
+"join — aniĝi al grupo;\n"
+"login — havi ligilon por ensaluti al reta interfaco;\n"
+"drop — foriri el grupo;\n"
+"stats — legi vian staton;\n"
+"stop — same kiel «off»;\n"
+"quit — same kiel «off»;\n"
+"sub — same kiel «follow»;\n"
+"unsub — same kiel «leave»;\n"
+"last — same kiel «get»;\n"
+"on — ankoraŭ ne realigita;\n"
+"off — ankoraŭ ne realigita;\n"
+"nudge — puŝeti la uzanton, ke li ĝisdatigu!\n"
+"invite — ankoraŭ ne realigita;\n"
+"track — ankoraŭ ne realigita;\n"
+"untrack — ankoraŭ ne realigita;\n"
+"track off — ankoraŭ ne realigita;\n"
+"untrack all — ankoraŭ ne realigita;\n"
+"tracks — ankoraŭ ne realigita;\n"
+"tracking — ankoraŭ ne realigita;\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Ne troviĝas agorda dosiero. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Mi serĉis agordan dosieron je jenaj lokoj: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Vi eble volas uzi instalilon por ripari tiun ĉi."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Al la instalilo."
@@ -7520,14 +8372,19 @@ msgstr "Konektitaj aplikaĵoj rajtigitaj"
msgid "Database error"
msgstr "Datumbaza eraro"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Forigi la uzanton"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Alŝuti dosieron"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7547,26 +8404,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "For"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Restarigi"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Ŝanĝi kolorojn"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Uzu defaŭlton"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Restaŭri defaŭltajn desegnojn"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Redefaŭltiĝi"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Savi desegnon"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Malsukcesis ĝisdatigi vian desegnon."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Desegnaj defaŭltoj konserviĝas."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Maleble revoki aliradon al aplikaĵo: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Neŝati la avizon"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Malŝati ŝataton."
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Ŝati la avizon"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Ŝati"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7583,6 +8488,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Ĉiuj grupanoj"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7617,34 +8535,34 @@ msgstr "Iri"
msgid "Grant this user the \"%s\" role"
msgstr "Donu al la uzanto rolon \"%s\""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 minusklaj literoj aŭ ciferoj, neniu interpunkcio aŭ spaco"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL de la hejmpaĝo aŭ blogo de la grupo aŭ temo"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Priskribo de grupo aŭ temo"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Priskribo de grupo aŭ temo, apenaŭ je %d literoj"
msgstr[1] "Priskribo de grupo aŭ temo, apenaŭ je %d literoj"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Loko de la grupo, se iu ajn, ekzemple \"Urbo, Stato (aŭ Regiono), Lando\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7751,41 +8669,42 @@ msgstr "Etikedoj en avizoj de grupo %s"
msgid "This page is not available in a media type you accept"
msgstr "La paĝo estas ne havebla je la komunikil-tipo, kiun vi akceptas"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
#, fuzzy
msgid "Unsupported image file format."
msgstr "Formato ne subtenata."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "La dosiero tro grandas. Dosiera grandlimo estas %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Parta alŝuto."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Sisteme eraris alŝuti dosieron."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Ne bildo aŭ dosiero difektita."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Perdiĝis nian dosieron."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Nekonata dosiertipo"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7793,7 +8712,7 @@ msgstr[0] "MB"
msgstr[1] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7801,7 +8720,7 @@ msgstr[0] "kB"
msgstr[1] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7822,23 +8741,25 @@ msgstr "Nekonata alvenkesta fonto %d"
msgid "Leave"
msgstr "Forlasi"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Ensaluti per via uzantnomo kaj pasvorto."
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Krei novan konton"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Retpoŝtadresa konfirmo"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7869,14 +8790,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s nun rigardas viajn avizojn ĉe %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7890,7 +8811,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7917,14 +8838,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Biografio: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nova retpoŝta adreso por afiŝi ĉe %s"
@@ -7932,7 +8853,7 @@ msgstr "Nova retpoŝta adreso por afiŝi ĉe %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7955,34 +8876,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s stato"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS-a konfirmo"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: konfirmi ke vi havas la telefonnumeron per tiu ĉi kodo:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "Vin puŝetis %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8011,7 +8932,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nova privata mesaĝo de %s"
@@ -8020,7 +8941,7 @@ msgstr "Nova privata mesaĝo de %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8055,7 +8976,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) ŝatis vian avizon"
@@ -8065,7 +8986,7 @@ msgstr "%s (@%s) ŝatis vian avizon"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8103,7 +9024,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8116,7 +9037,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) afiŝis avizon al vi"
@@ -8127,7 +9048,7 @@ msgstr "%s (@%s) afiŝis avizon al vi"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8176,11 +9097,11 @@ msgstr ""
"\n"
"P.S. Vi rajtas malŝalti tian ĉi retpoŝtan sciigon ĉi tie: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Nur uzanto povas legi sian propran paŝton."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8188,10 +9109,6 @@ msgstr ""
"Vi ne ricevis privatan mesaĝon. Vi povas sendi privatan mesaĝon al iu kaj "
"interparoli kun ili. Homo sendas al vi mesaĝon al vi sole."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "de"
-
#: lib/mailhandler.php:37
#, fuzzy
msgid "Could not parse message."
@@ -8219,42 +9136,6 @@ msgstr "Nesubtenata mesaĝo-tipo: %s"
msgid "There was a database error while saving your file. Please try again."
msgstr "Databaze eraris konservi vian dosieron. Bonvole reprovu."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Alŝutata dosiero superas la dosierujon upload_max_filesize (alŝuta "
-"grandlimo) en php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Alŝutata dosiero superas la dosierujon MAX_FILE_SIZE (Alŝuta grandlimo) "
-"difinitan per HTML formo."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Alŝutata dosiero venas nur parte."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Mankas labora dosierujo."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Malsukcesis skribi dosieron al disko."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8275,7 +9156,7 @@ msgstr "Malsukcesis decidi dosieran MIME-tipon."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8286,7 +9167,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "\"%s\" ne estas subtenata tipo ĉe tiu ĉi servilo."
@@ -8320,19 +9201,28 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Sendi"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Mesaĝo"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "de"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Kromnomo devas havi nur minuskulajn literojn kaj numerojn sed neniun spacon."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8348,11 +9238,11 @@ msgstr "Sendi avizon"
msgid "What's up, %s?"
msgstr "Kio novas, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Aldoni"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Aldoni dosieron"
@@ -8373,55 +9263,59 @@ msgstr ""
"poste."
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "E"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "W"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "al"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "TTT"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "kuntekste"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Ripetita de"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Respondi ĉi tiun avizon"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Respondi"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Forigi la avizon"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Avizo ripetiĝas"
@@ -8458,77 +9352,113 @@ msgstr "Refoja avizo."
msgid "Couldn't insert new subscription."
msgstr "Eraris enmeti novan abonon."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Persona"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Respondoj"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profilo"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Ŝatolisto"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Alvenkesto"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Viaj alvenaj mesaĝoj"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Elirkesto"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Viaj senditaj mesaĝoj"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Etikedoj en avizoj de %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Nekonata"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Abonatoj"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Ĉiuj abonatoj"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Abonantoj"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Ĉiuj abonantoj"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID de uzanto"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Ano ekde"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grupoj"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Taga meznombro"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Ĉiuj grupoj"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Nerealiĝita metodo"
@@ -8576,7 +9506,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Revoki rolon %s de la uzanto"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Metodo de API ne troviĝas."
@@ -8667,6 +9597,10 @@ msgstr "Inviti"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviti amikojn kaj kolegojn al %s kun vi"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Aboni la uzanton"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8782,64 +9716,81 @@ msgstr "Malaboni"
msgid "User %1$s (%2$d) has no profile record."
msgstr "La uzanto ne havas profilon."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Redakti vizaĝbildon"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Nekonata ago"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Forigante uzanton..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Redakti profilan agordon"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Redakti"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Sendi rektan mesaĝon a ĉi tiu uzanto"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Mesaĝo"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderigi"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Uzanta rolo"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administranto"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderanto"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Ne konektita."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "antaŭ kelkaj sekundoj"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "antaŭ ĉirkaŭ unu minuto"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8847,12 +9798,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu minuto"
msgstr[1] "antaŭ ĉirkaŭ %d minutoj"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "antaŭ ĉirkaŭ unu horo"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8860,12 +9811,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu horo"
msgstr[1] "antaŭ ĉirkaŭ %d horoj"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "antaŭ ĉirkaŭ unu tago"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8873,12 +9824,12 @@ msgstr[0] "antaŭ ĉirkaŭ unu tago"
msgstr[1] "antaŭ ĉirkaŭ %d tagoj"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "Antaŭ ĉrikaŭ unu monato"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8886,18 +9837,13 @@ msgstr[0] "antaŭ ĉirkaŭ unu monato"
msgstr[1] "antaŭ ĉirkaŭ %d monatoj"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "antaŭ ĉirkaŭ unu jaro"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s ne estas valida koloro!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s ne estas valida koloro! Uzu 3 aŭ 6 deksesumaĵojn."
@@ -8918,32 +9864,18 @@ msgstr[0] "Mesaĝo tro longas - longlimo estas %1$d, via estas %2$d"
msgstr[1] "Mesaĝo tro longas - longlimo estas %1$d, via estas %2$d"
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Grando nevalida."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Neniu uzanto-ID specifiĝas."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po
index 39cebc687a..d206fc3145 100644
--- a/locale/es/LC_MESSAGES/statusnet.po
+++ b/locale/es/LC_MESSAGES/statusnet.po
@@ -1,10 +1,12 @@
# Translation of StatusNet - Core to Spanish (Español)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Crazymadlover
+# Author: Fitoschido
# Author: Locos epraix
# Author: McDutchie
+# Author: Ovruni
# Author: Patcito
# Author: PerroVerd
# Author: Peter17
@@ -16,17 +18,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:37+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:31+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -81,8 +83,9 @@ msgid "Save access settings"
msgstr "Guardar la configuración de acceso"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -92,13 +95,13 @@ msgstr "Guardar la configuración de acceso"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Guardar"
@@ -106,7 +109,7 @@ msgstr "Guardar"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "No existe tal página."
@@ -116,6 +119,8 @@ msgstr "No existe tal página."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -131,13 +136,23 @@ msgstr "No existe tal página."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -145,15 +160,15 @@ msgstr "No existe tal página."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "No existe ese usuario."
@@ -167,9 +182,10 @@ msgstr "%1$s y sus amistades, página %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s y sus amistades"
@@ -284,7 +300,7 @@ msgstr "¡Actualizaciones de %1$s y sus amistades en %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -318,7 +334,21 @@ msgstr ""
"elegir entre: sms, im, ninguno."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "No se pudo actualizar el usuario."
@@ -328,18 +358,23 @@ msgstr "No se pudo actualizar el usuario."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "El usuario no tiene un perfil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "No se pudo guardar el perfil."
@@ -349,8 +384,8 @@ msgstr "No se pudo guardar el perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -370,13 +405,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "No se pudo grabar tu configuración de diseño."
@@ -384,48 +420,59 @@ msgstr "No se pudo grabar tu configuración de diseño."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "No se pudo actualizar tu diseño."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "línea temporal de %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Suscripciones %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "Favoritos"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "Miembros del grupo %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "¡No puedes bloquearte a tí mismo!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Falló bloquear usuario."
@@ -481,7 +528,8 @@ msgstr "No se encuentra usuario receptor."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -505,8 +553,9 @@ msgid "This status is already a favorite."
msgstr "Este status ya está en favoritos."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "No se pudo crear favorito."
@@ -516,7 +565,8 @@ msgid "That status is not a favorite."
msgstr "Este status no es un favorito."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "No se pudo borrar favorito."
@@ -562,9 +612,9 @@ msgstr "No se pudo encontrar ningún usuario de destino."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "El usuario ya existe. Prueba con otro."
@@ -572,21 +622,22 @@ msgstr "El usuario ya existe. Prueba con otro."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Usuario inválido"
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "La página de inicio no es un URL válido."
@@ -594,9 +645,9 @@ msgstr "La página de inicio no es un URL válido."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "Tu nombre es demasiado largo (max. 255 carac.)"
@@ -604,14 +655,15 @@ msgstr "Tu nombre es demasiado largo (max. 255 carac.)"
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -622,9 +674,9 @@ msgstr[1] "La descripción es demasiado larga (máx. %d caracteres)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "La ubicación es demasiado larga (máx. 255 caracteres)."
@@ -635,8 +687,8 @@ msgstr "La ubicación es demasiado larga (máx. 255 caracteres)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -653,18 +705,16 @@ msgstr "Alias inválido: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "El alias \"%s\" ya está en uso. Intenta usar otro."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "El alias no puede ser el mismo que el usuario."
@@ -675,28 +725,32 @@ msgstr "El alias no puede ser el mismo que el usuario."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Grupo no encontrado."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Ya eres miembro de ese grupo"
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Has sido bloqueado de ese grupo por el administrador."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "No se pudo unir el usuario %s al grupo %s"
@@ -708,9 +762,11 @@ msgstr "No eres miembro de este grupo."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -747,7 +803,7 @@ msgid "Upload failed."
msgstr "Carga falló."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "Token de acceso inválido especificado."
@@ -770,20 +826,25 @@ msgid "Request token already authorized."
msgstr "No estás autorizado."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -802,18 +863,22 @@ msgstr "Error de base de datos al insertar usuario de la aplicación OAuth."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Envío de formulario inesperado."
@@ -856,7 +921,6 @@ msgstr ""
#. TRANS: Fieldset legend.
#: actions/apioauthauthorize.php:455
-#, fuzzy
msgctxt "LEGEND"
msgid "Account"
msgstr "Cuenta"
@@ -864,29 +928,31 @@ msgstr "Cuenta"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Usuario"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Contraseña"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -960,6 +1026,7 @@ msgstr "No puedes borrar el estado de otro usuario."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -979,39 +1046,52 @@ msgstr "No puedes repetir tus propios mensajes"
msgid "Already repeated that notice."
msgstr "Este mensaje ya se ha repetido."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Método de API no encontrado."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Formato no soportado."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Status borrado."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "No hay estado para ese ID"
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "No se puede eliminar este mensaje."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Borrar mensaje"
@@ -1071,7 +1151,7 @@ msgstr "%1$s actualizaciones favoritas de %2$s / %2$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "No se pudo actualizar el grupo."
@@ -1092,13 +1172,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "actualizaciones de %1$s en respuesta a las de %2$s / %3$s"
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "línea temporal pública de %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "¡Actualizaciones de todos en %s!"
@@ -1147,50 +1228,48 @@ msgstr "Sólo el usuario puede leer sus bandejas de correo."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
-msgstr ""
+msgstr "La publicación Atom debe ser una entrada Atom."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr ""
+msgstr "No se puede gestionar actividad del tipo «%s»."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Buscar en el contenido de mensajes"
+msgstr "No hay contenido para el aviso %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
-#, fuzzy, php-format
-msgid "Notice with URI \"%s\" already exists."
-msgstr "No existe ningún mensaje con ese ID."
-
-#: actions/apitimelineuser.php:435
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
+msgid "Notice with URI \"%s\" already exists."
+msgstr "El aviso con la URI «%s» ya existe."
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
@@ -1198,151 +1277,215 @@ msgid "API method under construction."
msgstr "Método API en construcción."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Método de API no encontrado."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "No existe tal perfil."
-#: actions/atompubfavoritefeed.php:145
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Avisos que %1$s ha preferido en %2$s"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "No se puede añadir la suscripción de otra persona."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "Solo se pueden gestionar las actividades preferidas."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Sólo se pueden preferir los avisos."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Nota desconocida."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Ya incluido en favoritos."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
+#: actions/atompubmembershipfeed.php:144
+#, php-format
+msgid "%s group memberships"
+msgstr "%s miembros en el grupo"
+
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, fuzzy, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "%s es miembro de los grupos"
+
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's membership."
msgstr "No se pudo insertar una nueva suscripción."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#: actions/atompubmembershipfeed.php:242
#, fuzzy
-msgid "Can only fave notices."
+msgid "Can only handle join activities."
msgstr "Buscar en el contenido de mensajes"
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Desconocido"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Agregar a favoritos"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "No existe tal perfil."
-
-#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
-msgid "%s group memberships"
-msgstr "Miembros del grupo %s"
-
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "%s es miembro de los grupos"
-
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
-
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Desconocido"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Todos los miembros"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "No existe tal archivo."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "No se pudo borrar favorito."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "No existe ese grupo."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Todos los miembros"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Método de API no encontrado."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "No existe tal perfil."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "No te has suscrito a ese perfil."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "No se pudo eliminar la auto-suscripción."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "No existe tal perfil."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "No te has suscrito a ese perfil."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "No se pudo eliminar la auto-suscripción."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Personas suscritas a %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Tipo de archivo desconocido"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "¡Ya te has suscrito!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1351,11 +1494,15 @@ msgstr "No existe tal archivo adjunto."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Ningún nombre de usuario."
@@ -1372,7 +1519,7 @@ msgstr "Tamaño inválido."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Imagen"
@@ -1385,43 +1532,51 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Puedes subir tu imagen personal. El tamaño máximo de archivo es %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Usuario sin perfil coincidente."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Configuración de imagen"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Original"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Vista previa"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
-#, fuzzy
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Borrar"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
-#, fuzzy
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Subir"
@@ -1438,31 +1593,72 @@ msgstr "Cortar"
msgid "No file uploaded."
msgstr "Ningún archivo fue subido."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Elige un área cuadrada para que sea tu imagen"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Se perdió nuestros datos de archivo."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Imagen actualizada"
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Error al actualizar la imagen."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Imagen borrada."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Sólo los usuarios que hayan accedido pueden repetir mensajes."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Fondo"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1470,7 +1666,8 @@ msgstr "Ya has bloqueado a este usuario."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Bloquear usuario."
@@ -1493,15 +1690,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "No"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "No bloquear a este usuario"
#. TRANS: Button label on the user block form.
@@ -1512,15 +1709,15 @@ msgstr "No bloquear a este usuario"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Sí"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Bloquear este usuario."
#. TRANS: Server error displayed when blocking a user fails.
@@ -1528,31 +1725,6 @@ msgstr "Bloquear este usuario."
msgid "Failed to save block information."
msgstr "No se guardó información de bloqueo."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "No existe ese grupo."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1624,23 +1796,6 @@ msgstr "Tipo de dirección %s desconocida."
msgid "That address has already been confirmed."
msgstr "Esa dirección ya fue confirmada."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "No se pudo actualizar el usuario."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1666,11 +1821,86 @@ msgid "Conversation"
msgstr "Conversación"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Mensajes"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Sólo los usuarios que hayan accedido pueden repetir mensajes."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "No puedes borrar usuarios."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Estoy seguro."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "Debe escribir «%s» exactamente dentro del cuadro."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "Cuenta eliminada."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Eliminar cuenta"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"Esto permanentemente eliminará sus datos de cuenta de este "
+"servidor."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+"Se recomienda encarecidamente respaldar sus datos antes "
+"de la eliminación."
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Confirmar"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Introduzca «%s» para confirmar que desea eliminar su cuenta."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Eliminar permanentemente su cuenta"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1684,14 +1914,14 @@ msgstr "Aplicación no encontrada."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "No eres el propietario de esta aplicación."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Hubo problemas con tu clave de sesión."
@@ -1714,86 +1944,93 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "No eliminar esta aplicación"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Borrar esta aplicación"
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
-#, fuzzy
msgid "You must be logged in to delete a group."
-msgstr "Debes estar conectado para dejar un grupo."
+msgstr "Debe estar conectado para eliminar un grupo."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Ningún nombre de usuario o ID."
#. TRANS: Client error when trying to delete a group without having the rights to delete it.
#: actions/deletegroup.php:107
-#, fuzzy
msgid "You are not allowed to delete this group."
-msgstr "No eres miembro de este grupo."
+msgstr "No puede eliminar este grupo."
#. TRANS: Server error displayed if a group could not be deleted.
#. TRANS: %s is the name of the group that could not be deleted.
#: actions/deletegroup.php:150
-#, fuzzy, php-format
+#, php-format
msgid "Could not delete group %s."
-msgstr "No se pudo actualizar el grupo."
+msgstr "No se pudo eliminar el grupo %s."
#. TRANS: Message given after deleting a group.
#. TRANS: %s is the deleted group's name.
#: actions/deletegroup.php:159
-#, fuzzy, php-format
+#, php-format
msgid "Deleted group %s"
-msgstr "%1$s ha dejado el grupo %2$s"
+msgstr "Grupo %s eliminado"
#. TRANS: Title of delete group page.
#. TRANS: Form legend for deleting a group.
#: actions/deletegroup.php:176 actions/deletegroup.php:202
-#, fuzzy
msgid "Delete group"
-msgstr "Borrar usuario"
+msgstr "Borrar grupo"
#. TRANS: Warning in form for deleleting a group.
#: actions/deletegroup.php:206
-#, fuzzy
msgid ""
"Are you sure you want to delete this group? This will clear all data about "
"the group from the database, without a backup. Public posts to this group "
"will still appear in individual timelines."
msgstr ""
-"¿Realmente deseas eliminar este usuario? Esto borrará de la base de datos "
-"todos los datos sobre el usuario, sin dejar una copia de seguridad."
+"¿Está seguro de que quiere eliminar el grupo? Se eliminarán todos los datos "
+"del grupo de la base de datos, sin ninguna copia de seguridad. Los apuntes "
+"públicos al grupo todavía aparecerán en las líneas de tiempo individuales."
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
-msgstr "No eliminar este mensaje"
+msgid "Do not delete this group."
+msgstr "No eliminar este grupo"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
-msgstr "Borrar este usuario"
+msgid "Delete this group."
+msgstr "Borrar este grupo"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "No conectado."
@@ -1820,27 +2057,39 @@ msgstr "¿Estás seguro de que quieres eliminar este aviso?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "No eliminar este mensaje"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Borrar este mensaje"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "No puedes borrar usuarios."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Sólo puedes eliminar usuarios locales."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
+msgid "Delete user"
+msgstr "Eliminar usuario"
+
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
msgid "Delete user"
msgstr "Borrar usuario"
-#: actions/deleteuser.php:136
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1848,80 +2097,102 @@ msgstr ""
"¿Realmente deseas eliminar este usuario? Esto borrará de la base de datos "
"todos los datos sobre el usuario, sin dejar una copia de seguridad."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "No eliminar este usuario"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Borrar este usuario"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Diseño"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
-msgstr ""
+msgstr "Configuración de diseño de este sitio de StatusNet"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "URL de logotipo inválido."
-#: actions/designadminpanel.php:340
-#, fuzzy
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
-msgstr "URL de logotipo inválido."
+msgstr "URL no válida de logotipo SSL."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Tema no disponible: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Cambiar logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logo del sitio"
-#: actions/designadminpanel.php:457
-#, fuzzy
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
-msgstr "Logo del sitio"
+msgstr "Logo SSL"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Cambiar el tema"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Tema del sitio"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Tema para el sitio."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Personalizar tema"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Puedes subir un tema personalizado StatusNet como un archivo .ZIP."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Cambiar la imagen de fondo"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Fondo"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1931,98 +2202,106 @@ msgstr ""
"es %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Activar"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Desactivar"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Activar o desactivar la imagen de fondo."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Imagen de fondo en mosaico"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
msgstr "Cambiar colores"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Contenido"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Barra lateral"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Texto"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Vínculos"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avanzado"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Personalizar CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
-msgstr "Utilizar los valores predeterminados"
+msgstr "Usar los valores predeterminados"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Restaurar los diseños predeterminados"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Volver a los valores predeterminados"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Guardar"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Guardar el diseño"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Este mensaje no es un favorito!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Agregar a favoritos"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "No existe tal documento \"%s\""
#. TRANS: Title for "Edit application" form.
@@ -2037,7 +2316,7 @@ msgid "You must be logged in to edit an application."
msgstr "Debes haber iniciado sesión para editar una aplicación."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "No existe tal aplicación."
@@ -2047,63 +2326,73 @@ msgid "Use this form to edit your application."
msgstr "Utiliza este formulario para editar tu aplicación."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Se requiere un nombre"
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "El nombre es muy largo (máx. 255 carac.)"
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Ese nombre ya está en uso. Prueba con otro."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Se requiere una descripción"
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "El URL fuente es muy largo."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "El URL fuente es inválido."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Se requiere una organización."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "El texto de organización es muy largo (máx. 255 caracteres)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Se requiere una página principal de organización"
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "La devolución de llamada es muy larga."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "El URL de devolución de llamada es inválido."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "No fue posible actualizar la aplicación."
@@ -2114,14 +2403,17 @@ msgid "Edit %s group"
msgstr "Editar grupo %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Debes estar conectado para crear un grupo"
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Para editar el grupo debes ser administrador."
@@ -2132,63 +2424,65 @@ msgstr "Usa este formulario para editar el grupo."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Alias inválido: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "No se pudo actualizar el grupo."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "No fue posible crear alias."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Se guardó Opciones."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Configuración del correo electrónico"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Gestiona la forma en que recibes correo desde %%site.name%%"
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Dirección de correo electrónico"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Actual dirección de correo electrónico confirmada"
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Eliminar"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2201,44 +2495,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Correo electrónico, como \"NombredeUsuario@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Añadir"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Correo entrante"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Quiero publicar mensajes por correo electrónico."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Envie emails a esta dirección para ingresar nuevos avisos"
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Hace una nueva dirección de correo para postear; cancela la anterior."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2246,90 +2540,92 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nuevo"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Preferencias de correo electrónico"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Enviarme mensajes de nuevas suscripciones por correo electrónico."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Enviarme un correo electrónico cuando alguien agrega mi aviso a favoritos."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr ""
"Enviarme un correo electrónico cuando alguien me envía un mensaje privado."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr ""
"Enviarme un correo electrónico cuando alguien me envíe una \"@-respuesta\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Permitir que amigos me den un toque y me envien un correo electrónico."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publicar un MicroID para mi dirección de correo."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Preferencias de correo electrónico guardadas."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Sin dirección de correo electrónico"
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "No se puede normalizar esta dirección de correo electrónico."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Correo electrónico no válido"
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Esa ya es tu dirección de correo electrónico"
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Esa dirección de correo pertenece a otro usuario."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "No se pudo insertar el código de confirmación."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2339,89 +2635,105 @@ msgstr ""
"instrucciones sobre cómo usarlo."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Ninguna confirmación pendiente para cancelar."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Esa es la dirección de correo electrónico incorrecta."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "No se pudo eliminar la confirmación de correo electrónico."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Confirmación de correo electrónico cancelada."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Esa no es tu dirección de correo electrónico"
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "La dirección de correo electrónico ha sido eliminada."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "No hay dirección de correo entrante."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "No se pudo actualizar información de usuario."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Dirección de correo entrante removida."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Nueva dirección de correo entrante agregada."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "¡Este mensaje ya está en favoritos!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Sacar favorito"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Mensajes populares"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Mensajes populares, página %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Los mensajes más populares del sitio en este momento."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Los mensajes favoritos aparecen en esta página, pero todavía nadie ha "
"marcado algún mensaje como favorito."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2430,7 +2742,9 @@ msgstr ""
"Se la primera persona en añadir un mensaje a tus favoritos con el botón de "
"favoritos que se encuentra al lado de cualquier mensaje que te guste."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2439,142 +2753,186 @@ msgstr ""
"¿Por qué no [registrar una cuenta](%%action.register%%) y ser la primera "
"persona en añadir un mensaje a tus favoritos?"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Mensajes favoritos de %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "¡Actualizaciones favorecidas por %1$s en %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Usuarios que figuran"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Usuarios que figuran, página %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Una selección de fantásticos usuarios en %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "No hay ID de mensaje."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Sin mensaje."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Sin archivo adjunto"
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "No hay archivos adjuntos subidos."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "¡Respuesta inesperada!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "El usuario al que quieres listar no existe."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "¡Puedes usar la suscripción local!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Ese usuario te ha bloqueado la suscripción."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "No estás autorizado."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "No se pudo convertir el token de solicitud en token de acceso."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "El servicio remoto utiliza una versión desconocida del protocolo OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Error al actualizar el perfil remoto."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "No existe tal archivo."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "No se puede leer archivo."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Función no válida."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Esta función es reservada y no puede asignarse."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "No puedes conceder funciones de usuario en este sitio."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "El usuario ya tiene esta función."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "No se especificó perfil."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "No existe perfil con ese ID"
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Grupo no especificado."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Sólo un administrador puede bloquear miembros de un grupo."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Usuario ya está bloqueado del grupo."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Usuario no es miembro del grupo"
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Bloquear usuario de grupo"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2586,34 +2944,42 @@ msgstr ""
"sucesivo."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "No bloquear este usuario de este grupo"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Bloquear este usuario de este grupo"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
"Se ha producido un error en la base de datos al bloquear el usuario del "
"grupo."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Sin ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Debes estar conectado para editar un grupo."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Diseño de grupo"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2621,22 +2987,26 @@ msgstr ""
"Personaliza el aspecto de tu grupo con una imagen de fondo y la paleta de "
"colores que prefieras."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "No fue posible actualizar tu diseño."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "No se pudo grabar tu configuración de diseño."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Preferencias de diseño guardadas."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo de grupo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2644,100 +3014,116 @@ msgstr ""
"Puedes subir una imagen de logo para tu grupo. El tamaño máximo del archivo "
"debe ser %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Subir"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Cortar"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Elige un área cuadrada de la imagen para que sea tu logo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo actualizado."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Error al actualizar el logo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Miembros del grupo %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s miembros de grupo, página %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Lista de los usuarios en este grupo."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Admin"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Bloquear"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Convertir al usuario en administrador del grupo"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Convertir en administrador"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Convertir a este usuario en administrador"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "¡Actualizaciones de miembros de %1$s en %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grupos"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Grupos, página %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Grupos %%%%site.name%%%% te permiten encontrar gente de intereses afines a "
"los tuyo y hablar con ellos. Después de unirte al grupo, podrás enviarle "
@@ -2745,11 +3131,13 @@ msgstr ""
"encuentras un grupo que te guste? ¡Intenta [buscar otro](%%%%action."
"groupsearch%%%%) o [crea tú uno!](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Crear un nuevo grupo"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2758,25 +3146,33 @@ msgstr ""
"Busca grupos en %%site.name%% por su nombre, ubicación o descripción. Separa "
"los términos con espacios. Los términos tienen que ser de 3 o más caracteres."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Búsqueda en grupos"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "No se obtuvo resultados."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Si no puedes encontrar el grupo que estás buscando, puedes [crearlo](%%"
"action.newgroup%%) tú mismo."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2786,138 +3182,148 @@ msgstr ""
"action.newgroup%%) tú mismo?"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Sólo un administrador puede desbloquear miembros de grupos."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "El usuario no está bloqueado del grupo."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Se ha producido un error al eliminar el bloque."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Configuración de mensajería instantánea"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Puedes enviar y recibir avisos vía [mensajes instantáneos](%%doc.im%%) de "
"Jabber/GTalk. Configura tu dirección y opciones abajo."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "La mensajería instantánea no está disponible."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Dirección de mensajería instantánea"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Dirección actual Jabber/Gtalk confirmada."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"A la espera de una confirmación para esta dirección. Busca en tu cuenta "
"Jabber/GTalk un mensaje con más instrucciones. (¿Has añadido a %s a tu lista "
"de amigos?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Dirección Jabber o GTalk, por ejemplo \"NombreUsuario@example.org\". "
"Primero, asegúrate de agregar a %s a tu lista de amigos en tu cliente de "
"mensajería instantánea o en GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Preferencias de mensajería instantánea"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Enviarme mensajes por Jabber/GTalk"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Publicar un mensaje cuando el estado de mi Jabber/GTalk cambie."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Enviarme respuestas por medio de Jabber/GTalk de gente a la cual no sigo."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publicar un MicroID para mi cuenta Jabber/GTalk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Preferencias guardadas."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Ningún Jabber ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "No se puede normalizar este Jabber ID"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Jabber ID no válido"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Ese ya es tu Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "El Jabber ID ya pertenece a otro usuario."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2927,74 +3333,80 @@ msgstr ""
"instantánea que agregaste. Debes aprobar a %s para que pueda enviarte "
"mensajes."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Esa dirección de mensajería instantánea es incorrecta."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "No se pudo eliminar la confirmación de mensajería instantánea."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Confirmación de mensajería instantánea cancelada."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Ese no es tu Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "La dirección de mensajería instantánea ha sido eliminada."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Bandeja de entrada de %1$s - página %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Bandeja de entrada para %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Ésta es tu bandeja de entrada, incluye lista de mensajes privados entrantes."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Se han inhabilitado las invitaciones."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Debes estar conectado para invitar otros usuarios a usar %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Dirección de correo electrónico inválida: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Invitacion(es) enviada(s)"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Invitar nuevos usuarios:"
@@ -3002,7 +3414,7 @@ msgstr "Invitar nuevos usuarios:"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3011,7 +3423,7 @@ msgstr[1] "Ya estás suscrito a estos usuarios:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3020,7 +3432,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3033,7 +3445,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3042,7 +3454,7 @@ msgstr[1] "Invitacion(es) enviada(s) a las siguientes personas:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3051,34 +3463,35 @@ msgstr ""
"registren en el sitio. ¡Gracias por extender la comunidad! "
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
"Usa este formulario para invitar a tus amigos y colegas a usar este servicio."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Direcciones de correo electrónico"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Direcciones de los amigos a invitar (una por línea)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Mensaje Personal"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Opcionalmente añada un mensaje personalizado a su invitación."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Enviar"
@@ -3086,7 +3499,7 @@ msgstr "Enviar"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s te ha invitado a que te unas con el/ellos en %2$s"
@@ -3096,7 +3509,7 @@ msgstr "%1$s te ha invitado a que te unas con el/ellos en %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3153,169 +3566,185 @@ msgstr ""
"\n"
"Saludos cordiales, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Debes estar conectado para unirte a un grupo."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s se ha unido al grupo %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Debes estar conectado para dejar un grupo."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "No eres miembro de este grupo."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s ha dejado el grupo %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
-msgstr ""
+msgstr "Licencia"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privado"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Guardar"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Ya estás conectado."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Nombre de usuario o contraseña incorrectos."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Error al configurar el usuario. Posiblemente no tengas autorización."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Inicio de sesión"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Ingresar a sitio"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Recordarme"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Iniciar sesión automáticamente en el futuro. ¡No usar en ordenadores "
"compartidos! "
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "¿Contraseña olvidada o perdida?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3323,11 +3752,11 @@ msgstr ""
"Por razones de seguridad, por favor vuelve a escribir tu nombre de usuario y "
"contraseña antes de cambiar tu configuración."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Ingresar con tu nombre de usuario y contraseña."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3366,19 +3795,22 @@ msgid "New application"
msgstr "Nueva aplicación"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Debes conectarte para registrar una aplicación."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Utiliza este formulario para registrar una nueva aplicación."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Se requiere el URL fuente."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "No se pudo crear la aplicación."
@@ -3387,11 +3819,23 @@ msgstr "No se pudo crear la aplicación."
msgid "New group"
msgstr "Grupo nuevo "
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "No eres miembro de este grupo."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Usa este formulario para crear un grupo nuevo."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "El alias no puede ser el mismo que el usuario."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nuevo Mensaje "
@@ -3441,7 +3885,9 @@ msgstr "Nuevo mensaje"
msgid "Notice posted"
msgstr "Mensaje publicado"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3450,16 +3896,21 @@ msgstr ""
"Buscar mensajes en %%site.name%% por contenido. Separa los términos de "
"búsqueda con espacios; deben tener una longitud mínima de 3 caracteres."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Búsqueda de texto"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Resultados de la búsqueda de \"%1$s\" en %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3468,7 +3919,9 @@ msgstr ""
"Sé la primera persona en [publicar algo en este tema](%%%%action.newnotice%%%"
"%?status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3478,14 +3931,17 @@ msgstr ""
"en la primera persona en [publicar algo en este tema](%%%%action.newnotice%%%"
"%?status_textarea=%s)?"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Actualizaciones con \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr ""
"¡Actualizaciones que contienen el término de búsqueda \"%1$s\" en %2$s!"
@@ -3528,30 +3984,30 @@ msgid "You have not registered any applications yet."
msgstr "Aún no has registrado aplicación alguna."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Aplicaciones conectadas"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "No eres un usuario de esa aplicación."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "No se puede revocar el acceso para la aplicación: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3559,20 +4015,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "No has autorizado a ninguna aplicación utilizar tu cuenta."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Método de API no encontrado."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Método de API no encontrado."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Mensaje sin perfil."
@@ -3582,6 +4048,16 @@ msgstr "Mensaje sin perfil."
msgid "%1$s's status on %2$s"
msgstr "estado de %1$s en %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "No se encuentra usuario receptor."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3595,16 +4071,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Solamente %s URL sobre HTTP simples, por favor."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "No es un formato de datos compatible."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Búsqueda de gente"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Búsqueda de mensajes"
@@ -3618,69 +4095,80 @@ msgid "Manage various other options."
msgstr "Manejo de varias opciones adicionales."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (servicio gratuito)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Acortar los URL con"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Servicio de acorte automático a usar."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Ver diseños de perfil"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Ocultar o mostrar diseños de perfil."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "El servicio de acortamiento de URL es muy largo (máx. 50 caracteres)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "No se ha especificado ID de usuario."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "No se ha especificado un token de acceso."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Token de acceso solicitado."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Token de acceso inválido especificado."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Token de acceso caducado."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Bandeja de salida de %1$s - página %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Bandeja de salida para %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Ésta es tu bandeja de salida, incluye la lista de mensajes privados enviados."
@@ -3693,7 +4181,8 @@ msgstr "Cambiar contraseña"
msgid "Change your password."
msgstr "Cambia tu contraseña"
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Cambio de contraseña"
@@ -3701,48 +4190,50 @@ msgstr "Cambio de contraseña"
msgid "Old password"
msgstr "Antigua contraseña"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nueva contraseña"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 o más caracteres"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Confirmar"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Igual a la contraseña de arriba"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Cambiar"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "La contraseña debe tener 6 o más caracteres."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Las contraseñas no coinciden"
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Contraseña antigua incorrecta."
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Error al guardar el usuario; inválido."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "No se puede guardar la nueva contraseña."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Se guardó la contraseña."
@@ -3960,7 +4451,7 @@ msgstr "Ruta del directorio de las configuraciones locales"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Adjuntos"
@@ -4034,7 +4525,9 @@ msgstr "Servidor hacia el cual dirigir las solicitudes SSL"
msgid "Save paths"
msgstr "Guardar rutas"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4043,7 +4536,8 @@ msgstr ""
"Buscar personas en %%site.name%% por nombre, ubicación o intereses. Separa "
"los términos con espacios; deben tener una longitud mínima de 3 caracteres."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Buscador de gente"
@@ -4069,12 +4563,12 @@ msgstr ""
"$s’."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Configuración del perfil"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4082,12 +4576,12 @@ msgstr ""
"sepa más sobre ti."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Información del perfil"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
@@ -4095,21 +4589,22 @@ msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Nombre completo"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Página de inicio"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "El URL de tu página de inicio, blog o perfil en otro sitio"
@@ -4117,7 +4612,7 @@ msgstr "El URL de tu página de inicio, blog o perfil en otro sitio"
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4125,74 +4620,81 @@ msgstr[0] "Descríbete y cuéntanos tus intereses en %d caracteres"
msgstr[1] "Descríbete y cuéntanos tus intereses en %d caracteres"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Descríbete y cuéntanos acerca de tus intereses"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Biografía"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Ubicación"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Compartir mi ubicación actual al publicar los mensajes"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Etiquetas"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Etiquetas para ti (letras, números, -, ., y _), separadas por comas o "
"espacios"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Idioma"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Lenguaje de preferencia"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Zona horaria"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "En que zona horaria se encuentra normalmente?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor "
"para no-humanos)"
@@ -4200,7 +4702,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4208,50 +4710,54 @@ msgstr[0] "La biografía es muy larga (máx. %d caracteres)."
msgstr[1] "La biografía es muy larga (máx. %d caracteres)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Zona horaria no seleccionada"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Idioma es muy largo ( max 50 car.)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Etiqueta inválida: \"% s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "No se pudo actualizar el usuario para autosuscribirse."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "No se han podido guardar las preferencias de ubicación."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "No se pudo guardar el perfil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "No se pudo guardar las etiquetas."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "No se han podido guardar las etiquetas."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Se guardó configuración."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Crear una cuenta"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4328,6 +4834,12 @@ msgstr ""
"org/wiki/Microblogging) basada en la herramienta de software libre "
"[StatusNet](http://status.net/) tool."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "¡Actualizaciones de todos en %s!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4373,37 +4885,45 @@ msgstr ""
msgid "Tag cloud"
msgstr "Nube de etiquetas"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "¡Ya te has conectado!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "No existe ese código de recuperación."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "No es un código de recuperación."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Código de recuperación para usuario desconocido."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Error con el código de confirmación."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr ""
"Este código de confirmación es demasiado viejo. Por favor empieza de nuevo."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr ""
"No se pudo actualizar el usuario con la dirección de correo confirmada."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4411,71 +4931,104 @@ msgstr ""
"Si has olvidado tu contraseña, podemos enviarte una nueva a la dirección de "
"correo electrónico que has registrado en tu cuenta."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
"Se te ha identificado. Por favor, escribe una nueva contraseña a "
-"continuación. "
+"continuación."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Recuperación de contraseña"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Nombre de usuario o dirección de correo electrónico"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"Tu nombre de usuario en este servidor, o la dirección de correo electrónico "
"registrada."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Recuperar"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Recuperar"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Restablecer contraseña"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Recuperar contraseña"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Recuperación de contraseña solicitada"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Se guardó la contraseña."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Acción desconocida"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 o más caracteres, ¡no te olvides!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Restablecer"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Ingresa un nombre de usuario o correo electronico"
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "No hay ningún usuario con esa dirección de correo o nombre de usuario."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Ninguna dirección de correo electrónico registrada por este usuario."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Error al guardar confirmación de la dirección."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4483,125 +5036,121 @@ msgstr ""
"Se enviaron instrucciones para recuperar tu contraseña a la dirección de "
"correo registrada."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Restablecimiento de contraseña inesperado."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "La contraseña debe tener 6 o más caracteres."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "La contraseña y la confirmación no coinciden."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Error al configurar el usuario."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Nueva contraseña guardada correctamente. Has iniciado una sesión."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Disculpa, sólo personas invitadas pueden registrarse."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "El código de invitación no es válido."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registro exitoso."
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registrarse"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registro de usuario no permitido."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "No puedes registrarte si no estás de acuerdo con la licencia."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "La dirección de correo electrónico ya existe."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Usuario o contraseña inválidos."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Con este formulario puedes crear una nueva cuenta. Después podrás publicar "
"avisos y enviar vínculos de ellos a tus amigos y colegas. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 letras en minúscula o números, sin signos de puntuación o espacios. "
-"Requerido."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 o más caracters. Requerido."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Igual a la contraseña de arriba. Requerida"
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Correo electrónico"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Se usa sólo para actualizaciones, anuncios y recuperación de contraseñas"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Nombre más largo, preferiblemente tu nombre \"real\""
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "El URL de tu página de inicio, blog o perfil en otro sitio"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
"Entiendo que el contenido y los datos de %1$s son privados y confidenciales."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
"Mi texto y archivos est'an protegidos por los derecho de autor de %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Mi texto y archivos permanecen bajo mi propio derecho de autor."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Todos los derechos reservados."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4611,7 +5160,7 @@ msgstr ""
"información privada: contraseña, dirección de correo electrónico, dirección "
"de mensajería instantánea y número de teléfono."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4644,7 +5193,7 @@ msgstr ""
"\n"
"¡Gracias por apuntarte! Esperamos que disfrutes usando este servicio."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4652,7 +5201,7 @@ msgstr ""
"(Deberías recibir un mensaje por correo eléctronico en unos momentos, con "
"instrucciones sobre cómo confirmar tu dirección de correo.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4664,79 +5213,88 @@ msgstr ""
"[servicio de microblogueo compatible](%%doc.openmublog%%), escribe el URL de "
"tu perfil debajo."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Subscripción remota"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Suscribirse a un usuario remoto"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Usuario"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Usuario a quien quieres seguir"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL del perfil"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "El URL de tu perfil en otro servicio de microblogueo compatible"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Suscribirse"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "El URL del perfil es inválido (formato incorrecto)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"No es un perfil válido URL (no se ha definido un documento YADIS o un XRDS "
"inválido)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "¡Este es un perfil local! Ingresa para suscribirte"
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "No se pudo obtener un token de solicitud"
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Sólo los usuarios que hayan accedido pueden repetir mensajes."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "No se ha especificado un mensaje."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "No puedes repetir tus propios mensajes."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Ya has repetido este mensaje."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Repetido"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "¡Repetido!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Respuestas a %s"
@@ -4788,11 +5346,105 @@ msgstr ""
"Puedes intentar [darle un toque a %1$s](../%2$s) o [publicar algo a su "
"atención](%%%%action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Respuestas a %1$s en %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Sólo los usuarios que hayan accedido pueden repetir mensajes."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Aún no has registrado aplicación alguna."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Subir archivo"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"El archivo subido sobrepasa la directiva upload_max_filesize en php.ini"
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"El archivo subido sobrepasa la directiva MAX_FILE_SIZE que se especificó en "
+"el formulario HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "El archivo subido sólo fue parcialmente subido."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Falta una carpeta temporal."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "No se pudo escribir el archivo en el disco."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "La subida de archivos se detuvo por extensión."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Error del sistema subir el archivo"
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Todos los miembros"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Subir archivo"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "No puedes revocar funciones de usuario en este sitio."
@@ -4801,7 +5453,7 @@ msgstr "No puedes revocar funciones de usuario en este sitio."
msgid "User doesn't have this role."
msgstr "El usuario no tiene esta función."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4843,85 +5495,87 @@ msgstr "Activar la salida de depuración para sesiones."
msgid "Save site settings"
msgstr "Guardar la configuración del sitio"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Tienes que haber iniciado sesión para poder ver aplicaciones."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Perfil de la aplicación"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Icono"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nombre"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organización"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Descripción"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Estadísticas"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Creado por %1$s - acceso predeterminado %2$s - %3$d usuarios"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Acciones de la aplicación"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Reiniciar clave y secreto"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Borrar"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Información de la aplicación"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Clave del consumidor"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Secreto del consumidor"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL del token de solicitud"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL del token de acceso"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Autorizar URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4929,35 +5583,42 @@ msgstr ""
"Nota: Nuestro sistema sólo es compatible con firmas HMAC-SHA1. No son "
"compatibles las firmas de texto sin formato."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "¿realmente deseas reiniciar tu clave y secreto de consumidor?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Mensajes favoritos de %1$s, página %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "No se pudo recibir avisos favoritos."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Canal de las amistades de %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Canal de las amistades de %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Canal de las amistades de %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4965,7 +5626,9 @@ msgstr ""
"Aún no has elegido ningún aviso. Haz click sobre el botón \"favoritos\" en "
"los avisos que quieras para ponerles un marcador o resaltarlos."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4974,7 +5637,10 @@ msgstr ""
"%s aún no ha agregado ningún aviso a sus favoritos. Publica algo interesante "
"que pueda añadir a sus favoritos :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4985,7 +5651,8 @@ msgstr ""
"cuenta](%%%%action.register%%%%) y publicas algo interesante que puedan "
"añadir a sus favoritos :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Esta es una manera de compartir lo que te gusta."
@@ -5003,83 +5670,89 @@ msgid "%1$s group, page %2$d"
msgstr "grupo %1$s, página %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Perfil del grupo"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Nota"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Alias"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Acciones del grupo"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Canal de mensajes del grupo %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Canal de mensajes del grupo %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Canal de mensajes del grupo %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Amistades de amistades del grupo %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Miembros"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Ninguno)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Todos los miembros"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Creado"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
-#, fuzzy
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Miembros"
@@ -5088,7 +5761,7 @@ msgstr "Miembros"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5107,7 +5780,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5121,30 +5794,30 @@ msgstr ""
"comparten mensajes cortos acerca de su vida e intereses. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administradores"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "No existe el mensaje."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Sólo el remitente y el receptor pueden leer este mensaje."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Mensaje a %1$s en %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Mensaje de %1$s en %2$s"
@@ -5160,7 +5833,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, página %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5412,75 +6085,77 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Guardar el mensaje del sitio"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Configuración de SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
"Puedes recibir mensajes SMS por correo electrónico desde %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS no está disponible."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Dirección de SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Actual número telefónico para SMS confirmado."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Esperando confirmación de este número de teléfono."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Código de confirmación"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Ingrese el código recibido en su teléfono"
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Confirmar"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Número de teléfono de SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Número telefónico, sin puntuación ni espacios, incluya código de área"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Preferencias de SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5489,32 +6164,32 @@ msgstr ""
"por mi operador móvil"
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Preferencias de SMS guardadas."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Sin número telefónico"
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "No se seleccionó un operador móvil."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Ese ya es tu número telefónico"
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Ese número telefónico ya pertenece a otro usuario"
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5524,39 +6199,39 @@ msgstr ""
"cómo usarlo."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Ese no es el número de confirmación"
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Confirmación de SMS cancelada."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Ese no es tu número telefónico"
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "El número de teléfono para SMS ha sido eliminado."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Operador de telefonía móvil"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Seleccione un operador móvil"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5567,8 +6242,9 @@ msgstr ""
"informarnos al %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "No ingresó código"
#. TRANS: Menu item for site administration
@@ -5640,15 +6316,19 @@ msgstr "No te has suscrito a ese perfil."
msgid "Could not save subscription."
msgstr "No se ha podido guardar la suscripción."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Esta acción sólo acepta solicitudes POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "No puedes suscribirte a un perfil remoto 0.1 de OMB con esta acción."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Suscrito"
@@ -5680,7 +6360,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Estas son las personas que escuchan los avisos de %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5691,7 +6371,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5702,7 +6382,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5735,7 +6415,7 @@ msgstr "Estas son las personas que %s escucha sus avisos."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5754,23 +6434,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s no está escuchando a nadie."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Canal de mensajes para %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5803,12 +6484,15 @@ msgstr "No existe argumento de ID."
msgid "Tag %s"
msgstr "%s etiqueta"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Perfil de usuario"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Foto"
@@ -5824,6 +6508,11 @@ msgstr ""
"Etiquetas para este usuario (letras, números, -, ., y _), separadas por "
"comas o espacios"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Etiqueta inválida: \"% s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5831,10 +6520,6 @@ msgstr ""
"Sólo puedes marcar a las personas a quienes estás suscrito o que están "
"suscritas a ti."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "No se han podido guardar las etiquetas."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5845,6 +6530,7 @@ msgstr ""
msgid "No such tag."
msgstr "No existe tal etiqueta."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "No has bloqueado ese usuario."
@@ -5865,7 +6551,7 @@ msgstr "No hay id de perfil en solicitud."
msgid "Unsubscribed"
msgstr "Desuscrito"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5899,12 +6585,11 @@ msgstr "Texto de bienvenida inválido. La longitud máx. es de 255 caracteres."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Suscripción predeterminada inválida : '%1$s' no es un usuario"
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Perfil"
@@ -5961,55 +6646,71 @@ msgstr "Si permitir a los usuarios invitar nuevos usuarios."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Guardar la configuración del sitio"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autorizar la suscripción"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Por favor revisa estos detalles para asegurar que deseas suscribirte a los "
"avisos de este usuario. Si no pediste suscribirte a los avisos de alguien, "
"haz clic en \"Cancelar\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licencia"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Aceptar"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Suscribirse a este usuario"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Rechazar"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Rechazar esta suscripción"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "¡Ninguna petición de autorización!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Suscripción autorizada"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -6019,11 +6720,12 @@ msgstr ""
"Consulte con las instrucciones del sitio para obtener detalles acerca de "
"cómo autorizar la suscripción. Tu token de suscripción es:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Suscripción rechazada"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -6033,48 +6735,73 @@ msgstr ""
"de nuevo las instrucciones para saber cómo rechazar la suscripción "
"completamente."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "No se ha encontrado aquí el URI del oyente ‘%s’."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "El URI ‘%s’ del receptor es muy largo."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "El URI ‘%s’ del receptor es un usuario local."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "El URL ‘%s’ de perfil es para un usuario local."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Licencia de flujo del emisor ‘%1$s’ es incompatible con la licencia del "
+"sitio ‘%2$s’."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "La URL ‘%s’ de la imagen no es válida."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "No se puede leer la URL de la imagen ‘%s’."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Tipo de imagen incorrecto para la URL de imagen ‘%s’."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Diseño del perfil"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6082,7 +6809,7 @@ msgstr ""
"Personaliza la vista de tu perfil con una imagen de fondo y la paelta de "
"colores que quieras."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "¡Disfruta de tu perrito caliente!"
@@ -6112,7 +6839,7 @@ msgstr "Intenta [buscar gupos](%%action.groupsearch%%) y unirte a ellos."
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "¡Actualizaciones de %1$s en %2$s!"
@@ -6173,7 +6900,7 @@ msgid "Plugins"
msgstr "Complementos"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Versión"
@@ -6182,32 +6909,32 @@ msgid "Author(s)"
msgstr "Autor(es)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Aceptar"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) agregó tu mensaje a los favoritos"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "No se puede procesar URL '%s'"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr " Robin piensa que algo es imposible."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6224,7 +6951,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6235,7 +6962,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6245,7 +6972,7 @@ msgstr[1] ""
"Un archivo tan grande podría sobrepasar tu cuota mensual de %d bytes."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Nombre de archivo inválido."
@@ -6303,7 +7030,7 @@ msgid "Could not create login token for %s"
msgstr "No se pudo crear el token de acceso para %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Ningún nombre de base de datos o DSN encontrado."
@@ -6330,23 +7057,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "No existe tal perfil (%1$d) para notificar (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Error de la BD al insertar la etiqueta clave: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Ha habido un problema al guardar el mensaje. Es muy largo."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Ha habido un problema al guardar el mensaje. Usuario desconocido."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6354,7 +7081,7 @@ msgstr ""
"minutos."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6363,43 +7090,43 @@ msgstr ""
"pasados unos minutos."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Tienes prohibido publicar avisos en este sitio."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Hubo un problema al guardar el mensaje."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
#, fuzzy
msgid "Bad type provided to saveKnownGroups."
msgstr "Mal tipo proveído a saveKnownGroups"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Hubo un problema al guarda la bandeja de entrada del grupo."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "No se ha podido guardar la información del grupo local."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6407,14 +7134,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "No se puede revocar rol \"%1$s\" para usuario #%2$d; no existe."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6486,35 +7213,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Bienvenido a %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Ningún usuario sólo definido para modo monousuario."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "No se pudo crear grupo."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "No se pudo configurar el URI del grupo."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "No se pudo configurar la membresía del grupo."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "No se ha podido guardar la información del grupo local."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "No puedes borrar usuarios."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6551,211 +7299,214 @@ msgid "Other"
msgstr "Otro"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Página sin título"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Navegación de sitio primario"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Perfil personal y línea temporal de amistades"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Personal"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Cambia tu correo electrónico, imagen, contraseña, perfil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Cuenta"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Conectar a los servicios"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Conectarse"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Cambiar la configuración del sitio"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Admin"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Invita a amistades y compañeros a unirse a tí en %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Invitar"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Cerrar sesión en el sitio"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Cerrar sesión"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Crear una cuenta"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registrarse"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Iniciar sesión en el sitio"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Inicio de sesión"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "¡Ayúdame!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Ayuda"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Buscar personas o texto"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Buscar"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Mensaje de sitio"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Vistas locales"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Mensaje de página"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Navegación de sitio secundario"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Ayuda"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Acerca de"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "Preguntas Frecuentes"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "TOS"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Privacidad"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Fuente"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Ponerse en contacto"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Insignia"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licencia de software de StatusNet"
@@ -6763,7 +7514,7 @@ msgstr "Licencia de software de StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6773,7 +7524,7 @@ msgstr ""
"[%%site.broughtby%%**](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** es un servicio de microblogueo."
@@ -6782,7 +7533,7 @@ msgstr "**%%site.name%%** es un servicio de microblogueo."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6794,27 +7545,27 @@ msgstr ""
"licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licencia de contenido del sitio"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "El contenido y datos de %1$s son privados y confidenciales."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
"Copyright del contenido y los datos de%1$s. Todos los derechos reservados."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Derechos de autor de contenido y datos por los colaboradores. Todos los "
@@ -6822,7 +7573,7 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
@@ -6830,19 +7581,19 @@ msgstr ""
"$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paginación"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Después"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Antes"
@@ -6853,10 +7604,80 @@ msgstr ""
"A espera de un elemento de alimentación de raíz, pero se obtuvo un documento "
"XML entero."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Idioma desconocido \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Foto"
+msgid "Cannot force remote user to subscribe."
+msgstr "Especificar el nombre del usuario al cual se quiere suscribir."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Tipo de archivo desconocido"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Ya eres miembro de ese grupo"
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Buscar en el contenido de mensajes"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "No existe ese usuario."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6928,7 +7749,7 @@ msgid "User configuration"
msgstr "Configuración de usuario"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Usuario"
@@ -6974,19 +7795,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "No hay ninguna aplicación para esa clave de consumidor."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Token de acceso erróneo."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "No hay ningún usuario para ese token."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "No ha sido posible autenticarte."
@@ -7009,28 +7834,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "No se pudo insertar mensaje."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Error de base de datos al insertar usuario de la aplicación OAuth."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Error de base de datos al insertar usuario de la aplicación OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Se intentó revocar un token desconocido."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "No se pudo eliminar el token revocado."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Icono para esta aplicación"
@@ -7142,17 +7971,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Revocar"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "No eliminar este mensaje"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autor"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Proveedor"
@@ -7183,6 +8018,11 @@ msgstr "No está permitido cambiar la contraseña"
msgid "Block"
msgstr "Bloquear"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Bloquear este usuario."
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7298,7 +8138,7 @@ msgstr "Nombre completo: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Lugar: %s"
@@ -7306,7 +8146,7 @@ msgstr "Lugar: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Página de inicio: %s"
@@ -7580,26 +8420,26 @@ msgstr ""
"tracking - aún sin implementar.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Ningún archivo de configuración encontrado. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "He buscado archivos de configuración en los siguientes lugares: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Quizá desees ejecutar el instalador para solucionar este problema."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Ir al instalador."
@@ -7643,14 +8483,19 @@ msgstr "Aplicaciones conectadas autorizadas"
msgid "Database error"
msgstr "Error de la base de datos"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Borrar este usuario"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Subir archivo"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7671,26 +8516,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Desactivar"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Restablecer"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Cambiar colores"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Utilizar los valores predeterminados"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Restaurar los diseños predeterminados"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Volver a los valores predeterminados"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Guardar el diseño"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "No fue posible actualizar tu diseño."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Diseño predeterminado restaurado."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "No se puede revocar el acceso para la aplicación: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Excluir este mensaje de mis favoritos"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Sacar favorito"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Incluir este mensaje en tus favoritos"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Aceptar"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7707,6 +8600,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "Amistad de amistad"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Todos los miembros"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7741,28 +8647,28 @@ msgstr "Ir"
msgid "Grant this user the \"%s\" role"
msgstr "Otorgar al usuario el papel de \"%$\""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
"1-64 letras en minúscula o números, sin signos de puntuación o espacios"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL de página de inicio o blog del grupo o tema"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Describir al grupo o tema"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Describir al grupo o tema en %d caracteres"
msgstr[1] "Describir al grupo o tema en %d caracteres"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
@@ -7770,7 +8676,7 @@ msgstr ""
"Ubicación del grupo, si existe, por ejemplo \"Ciudad, Estado (o Región), País"
"\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7877,40 +8783,41 @@ msgstr "Etiquetas en mensajes del grupo %s"
msgid "This page is not available in a media type you accept"
msgstr "Esta página no está disponible en el tipo de medio que aceptas."
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Formato de imagen no soportado."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "El archivo es muy grande. El tamaño máximo permitido es %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Subida parcial"
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Error del sistema subir el archivo"
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "No es una imagen o es un fichero corrupto."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Se perdió nuestro archivo."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Tipo de archivo desconocido"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7918,7 +8825,7 @@ msgstr[0] "MB"
msgstr[1] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7926,7 +8833,7 @@ msgstr[0] "kB"
msgstr[1] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7947,23 +8854,25 @@ msgstr "Origen de bandeja de entrada %d desconocido."
msgid "Leave"
msgstr "Abandonar"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Ingresar con un nombre de usuario y contraseña."
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Registrarse para una nueva cuenta"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Confirmación de correo electrónico"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7995,14 +8904,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s ahora está escuchando tus avisos en %2$s"
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -8017,7 +8926,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -8046,14 +8955,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Bio: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nueva dirección de correo para postear a %s"
@@ -8061,7 +8970,7 @@ msgstr "Nueva dirección de correo para postear a %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8084,34 +8993,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "estado de %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS confirmación"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: Confirma que este es tu número de teléfono mediante este código:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "%s te ha dado un toque"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8140,7 +9049,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nuevo mensaje privado de %s"
@@ -8149,7 +9058,7 @@ msgstr "Nuevo mensaje privado de %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8184,7 +9093,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) agregó tu mensaje a los favoritos"
@@ -8194,7 +9103,7 @@ msgstr "%s (@%s) agregó tu mensaje a los favoritos"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8232,7 +9141,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8245,7 +9154,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) ha enviado un aviso a tu atención"
@@ -8256,7 +9165,7 @@ msgstr "%s (@%s) ha enviado un aviso a tu atención"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8306,11 +9215,11 @@ msgstr ""
"P.D. Puedes desactivar las notificaciones que recibes en tu correo "
"electrónico aquí: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Sólo el usuario puede leer sus bandejas de correo."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8319,10 +9228,6 @@ msgstr ""
"otros usuarios partícipes de la conversación. La gente puede enviarte "
"mensajes que sólo puedas leer tú."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "desde"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "No se pudo analizar sintácticamente mensaje."
@@ -8351,41 +9256,6 @@ msgstr ""
"Hubo un error en la base de datos mientras subías tu archivo. Por favor, "
"inténtalo de nuevo."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"El archivo subido sobrepasa la directiva upload_max_filesize en php.ini"
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"El archivo subido sobrepasa la directiva MAX_FILE_SIZE que se especificó en "
-"el formulario HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "El archivo subido sólo fue parcialmente subido."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Falta una carpeta temporal."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "No se pudo escribir el archivo en el disco."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "La subida de archivos se detuvo por extensión."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8406,7 +9276,7 @@ msgstr "No se pudo determinar tipo MIME del archivo"
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8417,7 +9287,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "\"%s\" no es un tipo de archivo compatible en este servidor."
@@ -8451,20 +9321,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Enviar"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Mensaje"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "desde"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"El usuario debe tener solamente letras minúsculas y números y no puede tener "
"espacios."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8480,11 +9359,11 @@ msgstr "Enviar un mensaje"
msgid "What's up, %s?"
msgstr "¿Qué tal, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Adjuntar"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Adjuntar un archivo"
@@ -8505,55 +9384,59 @@ msgstr ""
"favor, inténtalo más tarde."
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "E"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "W"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "en"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "red"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "en contexto"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Repetido por"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Responder a este mensaje."
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Responder"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Borrar este mensaje"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Mensaje repetido"
@@ -8590,77 +9473,113 @@ msgstr "Mensaje duplicado."
msgid "Couldn't insert new subscription."
msgstr "No se pudo insertar una nueva suscripción."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Personal"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Respuestas"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Perfil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favoritos"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Bandeja de Entrada"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Mensajes entrantes"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Bandeja de Salida"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Mensajes enviados"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Etiquetas en mensajes de %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Desconocido"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Suscripciones"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Todas las suscripciones"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Suscriptores"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Todos los suscriptores"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID de usuario"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Miembro desde"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grupos"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Promedio diario"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Todos los grupos"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Método no implementado."
@@ -8707,7 +9626,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Revocar el rol \"%s\" de este usuario"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Método de API no encontrado."
@@ -8798,6 +9717,10 @@ msgstr "Invitar"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Invita a amigos y colegas a unirse a %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Suscribirse a este usuario"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8915,64 +9838,81 @@ msgstr "Cancelar suscripción"
msgid "User %1$s (%2$d) has no profile record."
msgstr "El usuario no tiene un perfil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Editar imagen"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Acciones de usuario"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Eliminación de usuario en curso..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Editar configuración del perfil"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Editar"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Enviar un mensaje directo a este usuario"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Mensaje"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderar"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Rol de usuario"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrador"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderador"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "No conectado."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "hace unos segundos"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "hace un minuto"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8980,12 +9920,12 @@ msgstr[0] "hace aproximadamente un minuto"
msgstr[1] "hace aproximadamente %d minutos"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "hace una hora"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8993,12 +9933,12 @@ msgstr[0] "hace aproximadamente una hora"
msgstr[1] "hace aproximadamente %d horas"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "hace un día"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -9006,12 +9946,12 @@ msgstr[0] "hace aproximadamente un día"
msgstr[1] "hace aproximadamente %d días"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "hace un mes"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -9019,18 +9959,13 @@ msgstr[0] "hace aproximadamente un mes"
msgstr[1] "hace aproximadamente %d meses"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "hace un año"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "¡%s no es un color válido!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s no es un color válido! Usar 3 o 6 caracteres hexagesimales"
@@ -9051,32 +9986,18 @@ msgstr[0] "Mensaje muy largo - máximo %1$d caracteres, enviaste %2$d"
msgstr[1] "Mensaje muy largo - máximo %1$d caracteres, enviaste %2$d"
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Tamaño inválido."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "No se ha especificado ID de usuario."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po
index 383e6d5151..bb9c9d662d 100644
--- a/locale/fa/LC_MESSAGES/statusnet.po
+++ b/locale/fa/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Persian (فارسی)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: ArianHT
# Author: Brion
@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:39+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:33+0000\n"
"Last-Translator: Ahmad Sufi Mahmudi\n"
"Language-Team: Persian \n"
"MIME-Version: 1.0\n"
@@ -25,9 +25,9 @@ msgstr ""
"X-Language-Code: fa\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -82,8 +82,9 @@ msgid "Save access settings"
msgstr "ذخیرهٔ تنظیمات دسترسی"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -93,13 +94,13 @@ msgstr "ذخیرهٔ تنظیمات دسترسی"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "ذخیره"
@@ -107,7 +108,7 @@ msgstr "ذخیره"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "چنین صفحهای وجود ندارد."
@@ -117,6 +118,8 @@ msgstr "چنین صفحهای وجود ندارد."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -132,13 +135,23 @@ msgstr "چنین صفحهای وجود ندارد."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -146,15 +159,15 @@ msgstr "چنین صفحهای وجود ندارد."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "چنین کاربری وجود ندارد."
@@ -168,9 +181,10 @@ msgstr "%1$s و دوستان، صفحهٔ %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s و دوستان"
@@ -283,7 +297,7 @@ msgstr "به روز رسانی از %1$s و دوستان در %2$s"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -316,7 +330,21 @@ msgstr ""
"شما باید یک پارامتر را به نام device و مقدار sms، im یا none مشخص کنید."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "نمیتوان کاربر را بههنگامسازی کرد."
@@ -326,18 +354,23 @@ msgstr "نمیتوان کاربر را بههنگامسازی کرد."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "کاربر هیچ نمایهای ندارد."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "نمیتوان نمایه را ذخیره کرد."
@@ -347,8 +380,8 @@ msgstr "نمیتوان نمایه را ذخیره کرد."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -364,13 +397,14 @@ msgstr[0] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "نمیتوان تنظیمات طرحتان را ذخیره کرد."
@@ -378,48 +412,60 @@ msgstr "نمیتوان تنظیمات طرحتان را ذخیره کرد.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "نمیتوان طرحتان بههنگامسازی کرد."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+#, fuzzy
+msgctxt "ATOM"
msgid "Main"
msgstr "اصلی"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "خطزمانی %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s اشتراک"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "برگزیدهها"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "اعضای گروه %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "شما نمیتوانید خودتان رو مسدود کنید!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "مسدود کردن کاربر شکست خورد."
@@ -474,7 +520,8 @@ msgstr "کاربر گیرنده یافت نشد."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "نمیتوان پیام مستقیم را به کاربرانی که دوست شما نیستند، فرستاد."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -498,8 +545,9 @@ msgid "This status is already a favorite."
msgstr "این پیغام را پیشتر به برگزیدههای خود اضافه کردهاید"
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "نمیتوان پیام را برگزید."
@@ -509,7 +557,8 @@ msgid "That status is not a favorite."
msgstr "این پیام یک پیام برگزیده نیست."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "نمیتوان پیام برگزیده را حذف کرد."
@@ -555,9 +604,9 @@ msgstr "نمیتوان کاربر هدف را پیدا کرد."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید."
@@ -565,21 +614,22 @@ msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "لقب نا معتبر."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "صفحهٔ خانگی یک نشانی معتبر نیست."
@@ -587,9 +637,9 @@ msgstr "صفحهٔ خانگی یک نشانی معتبر نیست."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نویسه)."
@@ -597,14 +647,15 @@ msgstr "نام کامل خیلی طولانی است (حداکثر ۲۵۵ نوی
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -614,9 +665,9 @@ msgstr[0] "توصیف خیلی طولانی است (حداکثر %d نویسه)"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "نام مکان خیلی طولانی است (حداکثر ۲۵۵ نویسه)"
@@ -627,8 +678,8 @@ msgstr "نام مکان خیلی طولانی است (حداکثر ۲۵۵ نوی
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -644,18 +695,16 @@ msgstr "نام مستعار نامعتبر است: «%s»."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "ناممستعار «%s» ازپیش گرفتهشدهاست. یکی دیگر را امتحان کنید."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "نام و نام مستعار شما نمی تواند یکی باشد ."
@@ -666,28 +715,32 @@ msgstr "نام و نام مستعار شما نمی تواند یکی باشد .
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "گروه یافت نشد."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "شما از پیش یک عضو این گروه هستید."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "دسترسی شما به گروه توسط مدیر آن محدود شده است."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "نمیتوان کاربر %1$s را عضو گروه %2$s کرد."
@@ -699,9 +752,11 @@ msgstr "شما یک عضو این گروه نیستید."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -738,7 +793,7 @@ msgid "Upload failed."
msgstr "بارگذاری شکست خورد."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "رمز ورود مشخص شده نامعتبر است."
@@ -761,20 +816,25 @@ msgid "Request token already authorized."
msgstr "شما شناسایی نشده اید."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "مشکلی در دریافت نشست شما وجود دارد. لطفا بعدا سعی کنید."
@@ -792,18 +852,22 @@ msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگا
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "ارسال غیر قابل انتظار فرم."
@@ -856,29 +920,31 @@ msgstr "حساب کاربری"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "نام کاربری"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "گذرواژه"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -952,6 +1018,7 @@ msgstr "شما توانایی حذف وضعیت کاربر دیگری را ند
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -971,39 +1038,52 @@ msgstr "نمی توانید پیام خود را تکرار کنید."
msgid "Already repeated that notice."
msgstr "قبلا آن پیام تکرار شده است."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "رابط مورد نظر پیدا نشد."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "قالب پشتیبانی نشده."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "وضعیت حذف شد."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "هیچ وضعیتی با آن شناسه یافت نشد."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "نمیتوان این پیام را پاک کرد."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "پیام را پاک کن"
@@ -1059,7 +1139,7 @@ msgstr "بهروزرسانیهای %1$s که توسط %2$s برگزیده
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "نمیتوان گروه را بههنگامسازی کرد."
@@ -1080,13 +1160,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s به روز رسانی هایی که در پاسخ به $2$s / %3$s"
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s خطزمانی عمومی"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s به روز رسانی های عموم"
@@ -1135,203 +1216,270 @@ msgstr "تنها کاربران می تواند صندوق نامهٔ خودشا
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "پیدا کردن محتوای پیامها"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "پیامی با آن شناسه وجود ندارد."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "روش API در دست ساخت."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "رابط مورد نظر پیدا نشد."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "چنین نمایهای وجود ندارد."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "به روز رسانی از %1$s و دوستان در %2$s"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "نمیتوان اشتراک تازهای افزود."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "پیدا کردن محتوای پیامها"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "پیدا کردن محتوای پیامها"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "ناشناخته"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "افزودن به برگزیدهها"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "چنین نمایهای وجود ندارد."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "اعضای گروه %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "هست عضو %s گروه"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "نمیتوان اشتراک تازهای افزود."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "پیدا کردن محتوای پیامها"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "ناشناخته"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "همهٔ اعضا"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "چنین پروندهای وجود ندارد."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "نمیتوان پیام برگزیده را حذف کرد."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "چنین گروهی وجود ندارد."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "همهٔ اعضا"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "رابط مورد نظر پیدا نشد."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "چنین نمایهای وجود ندارد."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "شما مشترک آن نمایه نیستید."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "نمیتوان اشتراک را ذخیره کرد."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "چنین نمایهای وجود ندارد."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "شما مشترک آن نمایه نیستید."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "نمیتوان اشتراک را ذخیره کرد."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "افراد مشترک %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "نوع فایل پشتیبانی نشده"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "قبلا اشتراک انجام شده است!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1340,11 +1488,15 @@ msgstr "چنین پیوستی وجود ندارد."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "لقبی وجود ندارد."
@@ -1361,7 +1513,7 @@ msgstr "اندازه نادرست است."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "چهره"
@@ -1375,42 +1527,52 @@ msgstr ""
"شما میتوانید چهرهٔ شخصی خود را بارگذاری کنید. حداکثر اندازه پرونده %s است."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "کاربر نمایهٔ تطبیق ندارد."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "تنظیمات چهره"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "اصلی"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "پیشنمایش"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "حذف"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1428,32 +1590,73 @@ msgstr "برش"
msgid "No file uploaded."
msgstr "هیچ پروندهای بارگذاری نشد."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr ""
"یک مربع از عکس خود را انتخاب کنید تا به عنوان تصویر چهرهٔ شما انتخاب شود."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "فایل اطلاعات خود را گم کرده ایم."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "چهره به روز رسانی شد."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "به روز رسانی چهره موفقیت آمیر نبود."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "چهره پاک شد."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "تنها کاربران وارد شده می توانند پیامها را تکرار کنند."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "پیشزمینه"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1461,7 +1664,8 @@ msgstr "شما هم اکنون آن کاربر را مسدود کرده اید."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "مسدود کردن کاربر"
@@ -1485,15 +1689,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "خیر"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "کاربر را مسدود نکن"
#. TRANS: Button label on the user block form.
@@ -1504,15 +1708,15 @@ msgstr "کاربر را مسدود نکن"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "بله"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "کاربر را مسدود کن"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1520,31 +1724,6 @@ msgstr "کاربر را مسدود کن"
msgid "Failed to save block information."
msgstr "ذخیرهٔ ردیف اطلاعات شکست خورد."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "چنین گروهی وجود ندارد."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1615,23 +1794,6 @@ msgstr "نوع نشانی نامشخص است %s."
msgid "That address has already been confirmed."
msgstr "آن نشانی در حال حاضر تصدیق شده است."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "نمیتوان کاربر را به روز کرد."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1657,11 +1819,85 @@ msgid "Conversation"
msgstr "مکالمه"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "پیامها"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "تنها کاربران وارد شده می توانند پیامها را تکرار کنند."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "شما نمیتوانید کاربران را پاک کنید."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "چهره پاک شد."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "ساختن یک جسابکاربری"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "تایید"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "شما نمیتوانید کاربران را پاک کنید."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "شما نمیتوانید کاربران را پاک کنید."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1675,14 +1911,14 @@ msgstr "برنامه یافت نشد."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "شما مالک این برنامه نیستید."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "یک مشکل با رمز نشست شما وجود داشت."
@@ -1705,12 +1941,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "این برنامه حذف نشود"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "این برنامه حذف شود"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1720,8 +1958,10 @@ msgid "You must be logged in to delete a group."
msgstr "برای ترک یک گروه، شما باید وارد شده باشید."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "ناممستعار یا شناسهای وجود ندارد."
@@ -1766,25 +2006,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "این پیام را پاک نکن"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "حذف این کاربر"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "شما به سیستم وارد نشده اید."
@@ -1811,27 +2057,40 @@ msgstr "آیا اطمینان دارید که میخواهید این پیا
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "این پیام را پاک نکن"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "این پیام را پاک کن"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "شما نمیتوانید کاربران را پاک کنید."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "شما فقط میتوانید کاربران محلی را پاک کنید."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "حذف کاربر"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "حذف کاربر"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1839,82 +2098,106 @@ msgstr ""
"آیا مطمئن هستید که میخواهید این کاربر را پاک کنید؟ با این کار تمام اطلاعات "
"پاک و بدون برگشت خواهند بود."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "این پیام را پاک نکن"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "حذف این کاربر"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "طرح"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "نشانی اینترنتی نشان نامعتبر است."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "نشانی اینترنتی نشان نامعتبر است."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "پوسته در دسترس نیست: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "تغییر نشان"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "نشان وبگاه"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "نشان وبگاه"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "تغییر پوسته"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "پوستهٔ وبگاه"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "پوسته برای وبگاه"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "پوستهٔ اختصاصی"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
"شما میتوانید یک پوستهٔ اختصاصی StatusNet را بهعنوان یک آرشیو .ZIP بارگذاری "
"کنید."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "تغییر تصویر پیشزمینه"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "پیشزمینه"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1924,98 +2207,108 @@ msgstr ""
"پرونده %1 $s است."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "روشن"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "خاموش"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "تصویر پیشزمینه را فعال یا غیرفعال کنید."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "تصویر پیشزمینهٔ موزاییکی"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "تغییر رنگها"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "محتوا"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "ستون کناری"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "متن"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "پیوندها"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "پیشرفته"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS اختصاصی"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "استفادهکردن از پیشفرضها"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "بازگرداندن طرحهای پیشفرض"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "برگشت به حالت پیش گزیده"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "ذخیرهکردن"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "ذخیرهکردن طرح"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "این پیام یک پیام برگزیده نیست!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "افزودن به برگزیدهها"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "چنین پیوستی وجود ندارد."
#. TRANS: Title for "Edit application" form.
@@ -2030,7 +2323,7 @@ msgid "You must be logged in to edit an application."
msgstr "برای ویرایش یک برنامه باید وارد شده باشید."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "چنین برنامهای وجود ندارد."
@@ -2040,65 +2333,75 @@ msgid "Use this form to edit your application."
msgstr "از این روش برای ویرایش برنامهتان استفاده کنید."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "نام مورد نیاز است."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "نام خیلی طولانی است (حداکثر ۲۵۵ نویسه)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "این نام در حال حاضر مورد استفاده است. یکی دیگر را بیازمایید."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "توصیف مورد نیاز است."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "نشانی اینترنتی منبع بسیار بلند است."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "نشانی اینترنتی منبع معتبر نیست."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "سازمانیدهی مورد نیاز است."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "نام سازمان خیلی طولانی است (حداکثر ۲۵۵ نویسه)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "صفحهٔخانگی سازمان مورد نیاز است."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
#, fuzzy
msgid "Callback is too long."
msgstr "نشانی اینترنتی منبع بسیار بلند است."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
#, fuzzy
msgid "Callback URL is not valid."
msgstr "نشانی اینترنتی منبع معتبر نیست."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "نمیتوان برنامه را بههنگامسازی کرد."
@@ -2109,14 +2412,17 @@ msgid "Edit %s group"
msgstr "ویرایش گروه %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "برای ساخت یک گروه، باید وارد شده باشید."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "برای ویرایش گروه باید یک مدیر باشید."
@@ -2127,63 +2433,65 @@ msgstr "از این روش برای ویرایش گروه استفاده کنی
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "ناممستعار غیر مجاز: «%s»"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "نمیتوان گروه را بههنگامسازی کرد."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "نمیتوان نامهای مستعار را ساخت."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "گزینهها ذخیره شدند."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "تنظیمات پست الکترونیک"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "چگونگی دریافت نامه از %%site.name%% را اداره کنید."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "نشانی پست الکترونیک"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "نشانی پست الکترونیکی تایید شدهٔ کنونی"
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "حذف"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2196,45 +2504,45 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "نشانی پست الکترونیکی، مانند «UserName@example.org»"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "افزودن"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "پست الکترونیک ورودی"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "میخواهم با نامه پیام بفرستم."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr ""
"برای فرستادن پیام با استفاده از پست الکترونیک به این نشانی نامه بفرستید."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "نشانی جدید برای فرستادن پیام ایجاد کن؛ نشانی قبلی لغو میشود."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2242,89 +2550,91 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "تازه"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "ترجیحات پست الکترونیکی"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "پیامهای کسانی را که به تازگی دنبال میکنم با پست الکترونیک برایم بفرست."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"هرگاه کسی پیام من را به عنوان برگزیده اضافه کرد، به من نامه فرستاده شود."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "هر وقت کسی برای من پیام خصوصی فرستاد، مرا با پست الکترونیک با خبر کن."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "هرگاه کسی به من یک «@-پاسخ» میفرستد، به من نامه بفرست."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
"به دوستان اجازه داده شود که به من یادآوری کنند و یک نامه به من بفرستند."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "یک شناسه برای پست الکترونیک من منتشر کن."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "ترجیحات پست الکترونیکی ذخیره شد."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "پست الکترونیک وجود ندارد."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "نمیتوان نشانی را قانونی کرد"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "یک نشانی پست الکترونیکی معتبر نیست."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "هم اکنون نشانی شما همین است."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "این نشانی در حال حاضر متعلق به فرد دیگری است."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "نمیتوان کد تایید را اضافه کرد."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2333,89 +2643,105 @@ msgstr ""
"کد و راهنمای استفادهٔ آن بررسی کنید."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "هیچ تاییدی برای فسخ کردن وجود ندارد."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "این نشانی پست الکترونیکی نادرست است."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "نمیتوان تصدیق پست الکترونیک را پاک کرد."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "تایید پست الکترونیکی لغو شد."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "آن نشانی شما نیست."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "نشانی پست الکترونیکی پاک شده است."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "هیچ نشانی ورودی وجود ندارد."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "نمیتوان اطلاعات کاربر را به روز کرد."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "نشانی ورودی پاک شد."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "نشانی ورودی جدید اضافه شد."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "این پیام ازقبل برگزیده شده است!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "خارجکردن از برگزیدهها"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "پیامهای برگزیده"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "پیامهای برگزیده، صفحهٔ %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "محبوبترین پیامهایی که اکنون در این وبگاه هستند."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"پیامهای برگزیده در این صفحه نشان داده میشوند، ولی هنوز کسی چیزی را برنگزیده "
"است."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2424,7 +2750,9 @@ msgstr ""
"با کلیک کردن روی دکمهٔ برگزیده کنار هر پیامی که میخواهید، اولین نفری باشید که "
"یک پیام را به برگزیدههایش اضافه میکند."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2433,142 +2761,186 @@ msgstr ""
"چرا به [باز کردن یک حساب](%%action.register%%) اقدام نمیکنید و اولین نفری "
"باشید که یک پیام را به برگزیدههایش اضافه میکند!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "پیامهای برگزیدهٔ %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "پیامهای دوست داشتنی %s در %s"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "کاربران ویژه"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "کاربران ویژه، صفحهٔ %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "یک انتخاب از برخی از کاربران مهم در %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "هیچ شناسهٔ پیامی وجود ندارد."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "هیچ پیامی وجود ندارد."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "هیچ پیوستی وجود ندارد."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "هیچ پیوست بارگذاری شدهای وجود ندارد."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "انتظار چنین واکنشی وجود نداشت!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "کاربری که دنبالش هستید وجود ندارد."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "شما میتوانید از دنبال کردن محلی استفاده کنید!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "این کاربر شما را از دنبال کردن خودش منع کرده است."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "شما شناسایی نشده اید."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "نمیتوان نشانهٔ درخواست شما را به نشانهٔ دسترسی تبدیل کرد."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "خدمات مورد نظر از نسخهٔ نامفهومی از قرارداد OMB استفاده میکند."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "خطا هنگام بههنگامسازی نمایهٔ از راه دور."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "چنین پروندهای وجود ندارد."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "نمیتوان پرونده را خواند."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "وظیفه نامعتبر است."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "این نقش از قبل تعیین شده است و نمیتواند کارگذاشته شود."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "شما نمیتوانید در این وبگاه نقشهای کاربری را اهدا کنید."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "کاربر از قبل این وظیفه را داشته است."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "نمایهای مشخص نشده است."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "کاربری با چنین شناسهای وجود ندارد."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "گروهی مشخص نشده است."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "فقط یک مدیر میتواند اعضای یک گروه را مسدود کند."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "هم اکنون دسترسی کاربر به گروه مسدود شده است."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "کاربر عضو گروه نیست."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "دسترسی کاربر به گروه مسدود شود"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2580,152 +2952,180 @@ msgstr ""
"مشترک گروه شوند."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "دسترسی کاربر به گروه مسدود نشود"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "دسترسی کاربر به گروه مسدود شود"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "اشکال پایگاه داده در مسدود کردن کاربر"
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "هیچ ID وجود ندارد."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "برای ویرایش گروه باید وارد شوید."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "ظاهر گروه"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr "ظاهر گروه را تغییر دهید تا شما را راضی کند."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "نمیتوان ظاهر را به روز کرد."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "نمیتوان تنظیمات طرحتان را ذخیره کرد."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "ترجیحات طرح ذخیره شد."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "نشان گروه"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "شما میتوانید یک نشان برای گروه خود با بیشینه حجم %s بفرستید."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "پایینگذاری"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "برش"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "یک ناحیهی مربع از تصویر را انتخاب کنید تا به عنوان نشان انتخاب شود."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "نشان بههنگامسازی شد."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "بههنگامسازی نشان شکست خورد."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "اعضای گروه %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "اعضای گروه %1$s، صفحهٔ %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "یک فهرست از کاربران در این گروه"
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "مدیر"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "بستن کاربر"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "کاربر یک مدیر گروه شود"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "کاربر را مدیر کن"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "به روز رسانی کابران %1$s در %2$s"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "گروهها"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "گروهها، صفحهٔ %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"گروههای %%%site.name%%% به شما اجازه میدهد با کسانی که همانند شما "
"علاقهمندیهای خاصی دارد صحبت کنید. بعد از پیوستن به یک گروه میتوانید به شکل !"
@@ -2733,11 +3133,13 @@ msgstr ""
"نمیبینید؟ میتوانید برای یافتن آن [بگردید](%%%action.groupsearch%%%) !یا [آن "
"را خودتان بسازید](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "یک گروه جدید بساز"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2746,25 +3148,33 @@ msgstr ""
"برای جستوجوی گروهها در %%site.name%% از نام، مکان یا توصیفشان استفاده کنید. "
"عبارتها را با فاصله جدا کنید؛ آنها باید ۳ نویسه یا بیشتر باشند."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "جستوجوی گروه"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "نتیجهای وجود ندارد."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"اگر نمیتوانید گروه مورد نظر را پیدا کنید خودتان میتوانید آن را [ایجاد](%%"
"action.newgroup%%) کنید."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2774,135 +3184,145 @@ msgstr ""
"newgroup%%) نمیکنید!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "تنها یک مدیر توانایی برداشتن منع کاربران گروه را دارد."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "کاربر از گروه منع نشده است."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "اشکال در پاکسازی"
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "تنظیمات پیامرسان فوری"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"شما میتوانید پیامهای خود را با استفاده از [پیامرسانهای](%%doc.im%%) Jabber "
"یا Gtalk ارسال/دریافت کنید. نشانی خود را در این قسمت تنظیم کنید"
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "پیامرسان فوری در دسترس نیست."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "نشانی پیامرسان فوری"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "نشانی Jabber/GTalk تایید شده کنونی"
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"منتظر تایید این نشانی هستیم. لطفا Jabber/Gtalk خود را برای دریافت توضیحات "
"بیشتر بررسی کنید. (آیا %s را به فهرست خود اضافه کرده اید؟) "
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"نشانی Jabber یا GTalk، مانند «UserName@example.org». ابتدا از اضافه کردن %s "
"به فهرست دوستان خود در کارگیر پیامرسان فوریتان یا در GTalk مطمئن شوید."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "ترجیحات پیامرسان فوری"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "پیامها را از راه Jabber/GTalk برای من بفرست."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "هر وقت که وضعیت Jabber/Gtalk من تغییر کرد، یک پیام بفرست."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr "پاسخ کسانی که من آنها را دنبال نمیکنم را با Jabber/Gtalk برایم بفرست."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "یک شناسهٔ کوچک برای Jabber/Gtalk من منتشر کن."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "تنظیمات ذخیره شد."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "هیچ شناسهٔ Jabber ای وجود ندارد."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "نمیتوان شناسهٔ Jabber را تایید کرد"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "شناسهٔ Jabber درست نیست"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "این شناسه Jabber کنونی شماست."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "شناسهٔ Jabber به یک کاربر دیگر مربوط است."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2911,73 +3331,79 @@ msgstr ""
"یک کد تایید به نشانی پیامرسانی که اضافه کردهاید، فرستاده شد. شما باید %s را "
"برای فرستادن پیام به شما، تایید کنید."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "نشانی پیام رسان اشتباه است."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "نمیتوان تایید پیامرسان فوری را پاک کرد."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "تایید پیامرسان فوری لغو شد."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "این شناسهٔ Jabber شما نیست."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "نشانی پیامرسان فوری پاک شده است."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "صندوق ورودی %1$s - صفحهٔ %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "صندوق ورودی %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "این صندوق ورودیهای شماست که پیامهای خصوصی شما در آن خواهد بود."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "دعوتکردن از کار انداخته شده است."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "شما برای دعوت دیگران به استفاده از %s باید وارد شده باشید."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "پستالکترونیک صحیح نیست: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "دعوتنامه(ها) فرستادهشد"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "دعوت کردن کاربران تازه"
@@ -2985,7 +3411,7 @@ msgstr "دعوت کردن کاربران تازه"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2993,7 +3419,7 @@ msgstr[0] "شما هماکنون مشترک این کاربران هستید:
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3002,7 +3428,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3012,7 +3438,7 @@ msgstr[0] "این کاربرانی هستند که شما به صورت خودک
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3020,7 +3446,7 @@ msgstr[0] "دعوتنامه(ها) برای افراد زیر فرستاده
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3029,34 +3455,35 @@ msgstr ""
"برای رشد اجتماع کاربران تشکر میکنیم!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
"برای دعوت دوستان و تشویق آنها به استفاده از خدمات از فرم زیر استفاده کنید."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "نشانیهای پست الکترونیکی"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "نشانی دوستان (یک نشانی در هر خط("
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "پیام خصوصی"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "در صورت تمایل میتوانید یک پیام به همراه دعوت نامه بفرستید."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "فرستادن"
@@ -3064,7 +3491,7 @@ msgstr "فرستادن"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s شما را دعوت کرده است که در %2$s به آنها بپیوندید."
@@ -3074,7 +3501,7 @@ msgstr "%1$s شما را دعوت کرده است که در %2$s به آنه
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3132,167 +3559,183 @@ msgstr ""
"\n"
"با تشکر، %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "برای پیوستن به یک گروه، باید وارد شده باشید."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s به گروه %2$s پیوست"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "برای ترک یک گروه، شما باید وارد شده باشید."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "شما یک کاربر این گروه نیستید."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s گروه %2$s را ترک کرد"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "متن خوشامدگویی نامعتبر است. بیشینهٔ طول متن ۲۵۵ نویسه است."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "خصوصی"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "ذخیرهکردن"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "قبلا وارد شده"
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "نام کاربری یا گذرواژه نادرست است."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "خطا در تنظیم کاربر. شما احتمالا اجازهٔ این کار را ندارید."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "ورود"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "ورود به وبگاه"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "مرا به یاد بسپار"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "وارد شدن خودکار. نه برای کامپیوترهای مشترک!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "گذرواژهٔ خود را گم یا فراموش کردهاید؟"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3300,11 +3743,11 @@ msgstr ""
"به دلایل امنیتی، لطفا نام کاربری و گذرواژهٔ خود را قبل از تغییر تنظیمات "
"دوباره وارد نمایید."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "با نامکاربری و گذرواژهتان وارد شوید."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3341,19 +3784,22 @@ msgid "New application"
msgstr "برنامهٔ تازه"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "برای ثبت یک برنامه باید وارد شده باشید."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "از این شیوه برای ساختن یک برنامهٔ تازه استفاده کنید."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "نشانی اینترنتی منبع مورد نیاز است."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "نمیتوان برنامه را ساخت."
@@ -3362,11 +3808,23 @@ msgstr "نمیتوان برنامه را ساخت."
msgid "New group"
msgstr "گروه جدید"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "شما یک عضو این گروه نیستید."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "از این فرم برای ساختن یک گروه جدید استفاده کنید"
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "نام و نام مستعار شما نمی تواند یکی باشد ."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "پیام جدید"
@@ -3416,7 +3874,9 @@ msgstr "پیام جدید"
msgid "Notice posted"
msgstr "پیام فرستادهشد."
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3425,16 +3885,21 @@ msgstr ""
"برای جستوجوی پیامها در %%site.name%% از محتوایشان استفاده کنید. عبارتها را "
"با فاصله جدا کنید؛ آنها باید ۳ نویسه یا بیشتر باشند."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "جستوجوی متن"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "پیام از %1$s در %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3443,7 +3908,9 @@ msgstr ""
"اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%"
"s) پیام میفرستد."
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3452,14 +3919,17 @@ msgstr ""
"چرا [ثبت نام](%%%%action.register%%%%) نمیکنید و اولین پیام را در [این موضوع]"
"(%%%%action.newnotice%%%%?status_textarea=%s) نمیفرستید!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "پیامهای با %s"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "پیامهایی که با جستوجوی عبارت »%1$s« در %s یافت شدند."
#: actions/nudge.php:85
@@ -3501,30 +3971,30 @@ msgid "You have not registered any applications yet."
msgstr "شما هنوز هیچ برنامهای را ثبت نکردهاید."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "برنامههای وصلشده"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "شما یک کاربر این برنامه نیستید."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "نمیتوان دسترسی را برای برنامهٔ %s لغو کرد."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3532,20 +4002,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "شما به هیچ برنامهای اجازه ندادهاید که از حسابتان استفاده کند."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "رابط مورد نظر پیدا نشد."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "رابط مورد نظر پیدا نشد."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "این پیام نمایهای ندارد."
@@ -3555,6 +4035,16 @@ msgstr "این پیام نمایهای ندارد."
msgid "%1$s's status on %2$s"
msgstr "وضعیت %1$s در %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "کاربر گیرنده یافت نشد."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3568,16 +4058,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "لطفا تنها از نشانیهای اینترنتی %s از راه HTTP ساده استفاده کنید."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "یک قالب دادهٔ پشتیبانیشده نیست."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "جستوجوی کاربران"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "جستوجوی پیامها"
@@ -3591,69 +4082,80 @@ msgid "Manage various other options."
msgstr "مدیریت انتخاب های مختلف دیگر."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (سرویس آزاد)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "کوتاهکردن نشانیهای اینترنتی با"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "کوتاهکنندهٔ نشانی مورد استفاده."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "نمایش طراحیهای نمایه"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "نمایش دادن یا پنهان کردن طراحیهای نمایه."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "کوتاه کنندهٔ نشانی بسیار طولانی است (بیشتر از ۵۰ حرف)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "هیچ شناسهٔ کاربری مشخص نشده است."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "هیچ رمز ورودی مشخص نشده است."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "هیچ رمز ورودی درخواست نشده است."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "رمز ورود مشخص شده نامعتبر است."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "رمز ورود منسوخ شده است."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "صندوق خروجی %1$s - صفحهٔ %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "فرستادههای %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"این صندوق خروجی شماست، که پیامهای خصوصی فرستاده شده به وسیلهٔ شما را فهرست "
@@ -3667,7 +4169,8 @@ msgstr "تغییر گذرواژه"
msgid "Change your password."
msgstr "تغییر گذرواژهٔ شما"
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "تغییر گذرواژه"
@@ -3675,48 +4178,50 @@ msgstr "تغییر گذرواژه"
msgid "Old password"
msgstr "گذرواژهٔ پیشین"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "گذرواژهٔ تازه"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "۶ نویسه یا بیشتر"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "تایید"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "مانند گذرواژهٔ بالا"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "تغییر"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "گذرواژه باید ۶ نویسه یا بیشتر باشد."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "گذرواژهها مطابقت ندارند."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "گذرواژه پیشین اشتباه است"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "هنگام ذخیرهٔ کاربر خطا رخ داد؛ نامعتبر است."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "نمیتوان گذرواژهٔ جدید را ذخیره کرد."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "گذرواژه ذخیره شد."
@@ -3934,7 +4439,7 @@ msgstr "مسیر پوشه برای زبانهای محلی"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "ضمائم"
@@ -4008,7 +4513,9 @@ msgstr "کارگزار برای هدایت درخواستهای SSL به"
msgid "Save paths"
msgstr "نشانی ذخیره سازی"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4017,7 +4524,8 @@ msgstr ""
"برای جستوجوی افراد در %%site.name%% از نام، مکان یا توصیفشان استفاده کنید. "
"عبارتها را با فاصله جدا کنید؛ آنها باید ۳ نویسه یا بیشتر باشند."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "جستوجوی کاربران"
@@ -4041,12 +4549,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "مجوز پیام «%1$s» با مجوز وبگاه «%2$s» سازگار نیست."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "تنظیمات نمایه"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4054,33 +4562,34 @@ msgstr ""
"در مورد شما بدانند."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "اطلاعات نمایه"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذاری یا فاصله"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "نامکامل"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "صفحهٔ خانگی"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نمایهتان در یک وبگاه دیگر"
@@ -4088,137 +4597,148 @@ msgstr "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نم
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
msgstr[0] "خودتان و علاقهمندیهایتان را در %d نویسه توصیف کنید"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "خودتان و علاقهمندیهایتان را توصیف کنید"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "شرححال"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "موقعیت"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "مکان کنونی من هنگام فرستادن پیامها به اشتراک گذاشته شود"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "برچسبها"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"برچسبها برای خودتان (حروف، اعداد، -، .، و _) جدا شده با کاما- یا فاصله-"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "زبان"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "زبان برگزیده"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "منطقهٔزمانی"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "شما معمولا در کدام منطقهٔ زمانی هستید؟"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"به صورت خودکار مشترک هر کسی بشو که مشترک من میشود (بهترین برای غیر انسانها)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
msgstr[0] "شرححال خیلی طولانی است (بیشینه %d نویسه)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "منطقهٔ زمانی انتخاب نشده است."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "زبان بسیار طولانی است ( حداکثر ۵۰ نویسه)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "نشان نادرست »%s«"
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "نمیتوان کاربر را برای اشتراک خودکار بههنگامسازی کرد."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "نمیتوان تنظیمات مکانی را تنظیم کرد."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "نمیتوان نمایه را ذخیره کرد."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "نمیتوان نشان را ذخیره کرد."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "نمیتوان برچسبها را ذخیره کرد."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "تنظیمات ذخیره شد."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "ساختن یک جسابکاربری"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4292,6 +4812,12 @@ msgstr ""
"85%DB%8C%DA%A9%D8%B1%D9%88%D8%A8%D9%84%D8%A7%DA%AF%DB%8C%D9%86%DA%AF) بر "
"پایهٔ نرمافزار آزاد [StatusNet](http://status.net/) است."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s به روز رسانی های عموم"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4336,35 +4862,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "ابر برچسب"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "شما قبلا وارد شدید"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "چنین کد بازیابی شده ای نیست"
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "کد بازیابی شده ای نیست."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "بازیابی کد برای کاربر ناشناخته"
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "خطا در تایید کد"
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "این کد تایید شده بسیار قدیمی است . لطفا دباره شروع کنید ."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "را به روز کرد user نمیتوان با ایمیلی که تایید شده"
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4373,67 +4907,100 @@ msgstr ""
"که به نشانی پست الکترونیکیتان که در حسابتان ذخیره کردهاید فرستاده شده است، "
"بگیرید."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "هویت شما شناسایی شد. یک گذرواژه تازه را در زیر وارد کنید. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "هویت شما شناسایی شد. یک گذرواژه تازه را در زیر وارد کنید."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "بازیابی گذرواژه"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "نام کاربری یا نشانی پست الکترونیکی"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "نام کاربری شما بر روی این سرور، یا نشانی پست الکترونیکی ثبت شدهٔ شما."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "بازیابی"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "بازیابی"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "بازنشانی گذرواژه"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "بازیابی گذرواژه"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "بازیابی گذرواژه درخواست شد"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "گذرواژه ذخیره شد."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "عمل نامعلوم"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "۶ نویسه یا بیشتر، و این را فراموش نکنید!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "بازنشاندن"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "یک نام کاربری یا نشانی پست الکترونیکی وارد کنید."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "هیچ کاربری با آن نشانی پست الکترونیکی یا نام کاربری وجود ندارد."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "برای آن کاربر نشانی پست الکترونیکی ثبت شده وجود ندارد."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "هنگام ذخیرهٔ تایید نشانی خطا رخ داد."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4441,120 +5008,118 @@ msgstr ""
"راهنمای چگونگی بازیابی گذرواژه به نشانی پست الکترونیکی ثبت شده در حساب شما "
"فرستاده شده است."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "گذرواژه به طور غیر منتظره ریست شد."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "گذرواژه باید ۶ نویسه یا بیشتر باشد."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "گذرواژه و تاییدیهٔ آن با هم تطابق ندارند."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "هنگام گذاشتن کاربر خطا روی داد."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "گذرواژه تازه با موفقیت ذخیره شد. شما اکنون وارد شدهاید."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "با عرض معذرت، تنها افراد دعوت شده می توانند ثبت نام کنند."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "با عرض تاسف، کد دعوت نا معتبر است."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "ثبت نام با موفقیت انجام شد."
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "ثبت نام"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "اجازهٔ ثبتنام داده نشده است."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "شما نمی توانید ثبت نام کنید اگر با لیسانس( جواز ) موافقت نکنید."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "نشانی پست الکترونیکی از قبل وجود دارد."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "نام کاربری یا گذرواژه نا معتبر است."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"با این فرم شما میتوانید یک حساب تازه بسازید. سپس شما میتوانید پیام بفرستید و "
"به دوستان و همکارانتان بپیوندید. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "۱-۶۴ حرف کوچک یا اعداد، بدون نشانه گذاری یا فاصله نیاز است."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "۶ نویسه یا بیشتر مورد نیاز است."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "با گذرواژهٔ بالا یکسان باشد. مورد نیاز است."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "پست الکترونیکی"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "تنها برای بههنگامسازیها، اعلامیهها و بازیابی گذرواژه به کار میرود"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "نام بلند تر، به طور بهتر نام واقعیتان"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نمایهتان در یک وبگاه دیگر"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "مکانی که شما در آن هستید، مانند «شهر، ایالت (یا استان)، کشور»"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr "من متوجه هستم که محتوا و دادههای %1$s خصوصی و محرمانه هستند."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "متن و پروندههای من دارای حق تکثیر %1$s هستند."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "متن و پروندههای من زیر حق تکثیر خودم میمانند."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "تمام حقوق محفوظ است."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4563,7 +5128,7 @@ msgstr ""
"نوشتهها و پروندههای من به جز دادههای خصوصی گذرواژه، نشانی پست الکترونیک، "
"نشانی پیامرسان فوری و شماره تلفن زیر مجوز %s هستند."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4597,7 +5162,7 @@ msgstr ""
"از اینکه نامنویسی کردهاید، تشکر میکنیم و امیدواریم که از استفاده از این "
"سرویس لذت ببرید."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4605,7 +5170,7 @@ msgstr ""
"(شما هر لحظه باید یک پیام با پست الکترونیکی با راهنمای چگونگی تایید نشانی "
"پست الکترونیکتان دریافت کنید.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4616,79 +5181,88 @@ msgstr ""
"ثبت کنید[(%%action.register%%). اگر شما یک حساب در یک ]وبگاه میکروبلاگینگ "
"سازگار[(%%doc.openmublog%%) دارید، نشانی نمایهٔ خود را در زیر وارد کنید."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "اشتراک از راه دور"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "اشتراک یک کاربر از راه دور"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "نام کاربری کاربر"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "نام کاربری، کاربری که می خواهید او را دنبال کنید"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "نشانی نمایه"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "نشانی اینترنتی نمایهٔ شما در سرویس میکروبلاگینگ سازگار دیگری"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "اشتراک"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "نشانی اینترنتی نمایه نامعتبر است (فرمت نامناسب است)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"این یک نشانی نمایهٔ صحیح نیست (هیچ سند YADIS وجود ندارد و یا XRDS مشخص شده "
"نامعتبر است)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "این یک نمایهٔ محلی است! برای اشتراک وارد شوید."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "نمیتوان یک نشانهٔ درخواست را بهدست آورد."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "تنها کاربران وارد شده می توانند پیامها را تکرار کنند."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "هیچ پیامی مشخص نشده است."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "شما نمیتوانید پیام خودتان را تکرار کنید."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "شما قبلا آن پیام را تکرار کردهاید."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "تکرار شده"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "تکرار شد!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "پاسخهای به %s"
@@ -4738,11 +5312,102 @@ msgstr ""
"اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%"
"s) پیام میفرستد."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "پاسخهای به %1$s در %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "تنها کاربران وارد شده می توانند پیامها را تکرار کنند."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "شما هنوز هیچ برنامهای را ثبت نکردهاید."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "بارگذاری پرونده"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "نتها اندکی از فایل بارگذاریشده فرستاده شد."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "گم شدن یک پوشه ی موقتی."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "شکست خوردن در نوشتن فایل روی دیسک."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "بارگذاری پرونده توسط افزونه متوقف شد."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "هنگام بارگذاری پرونده خطای سیستمی رخ داد."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "همهٔ اعضا"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "بارگذاری پرونده"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "شما نمیتوانید نقشهای کاربری را در این وبگاه لغو کنید."
@@ -4751,7 +5416,7 @@ msgstr "شما نمیتوانید نقشهای کاربری را در ای
msgid "User doesn't have this role."
msgstr "کاربر این نقش را ندارد."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4796,85 +5461,87 @@ msgstr "خروجی اشکالزدایی برای نشستها روشن ش
msgid "Save site settings"
msgstr "ذخیرهٔ تنظیمات وبگاه"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "برای دیدن یک برنامه باید وارد شده باشید."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "نمایهٔ برنامه"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "شمایل"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "نام"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "سازمان"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "توصیف"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "آمار"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "ساخته شده توسط %1$s - دسترسی %2$s به صورت پیشفرض - %3$d کاربر"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "اعمال برنامه"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "حذف"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "اطلاعات برنامه"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "کلید مصرفکننده"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "رمز مصرفکننده"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "نشانی اینترنتی شناسهٔ درخواست"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "نشانی اینترنتی نشانهٔ درخواست"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "نشانی اجازهدادن"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4882,35 +5549,42 @@ msgstr ""
"توجه: ما امضاهای HMAC-SHA1 را پشتیبانی میکنیم. ما روش امضای plaintext را "
"پشتیبانی نمیکنیم."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "آیا مطمئن هستید که میخواهید کلید و رمز خریدار را دوباره تعیین کنید؟"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "پیامهای برگزیدهٔ %1$s، صفحهٔ %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "نمیتوان پیامهای برگزیده را دریافت کرد."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "خوراک برای برگزیدههای %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "خوراک برای برگزیدههای %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "خوراک برای برگزیدههای %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4919,7 +5593,9 @@ msgstr ""
"که دوست دارید کلیک کنید تا آنها را برای بعد چوبالفها کنید یا یک نشانه روی "
"آنها بگذارید."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4928,7 +5604,10 @@ msgstr ""
"%s تاکنون هیچ پیامی را به برگزیدههایش اضافه نکرده است. چیز جالبی بفرستید که "
"ممکن است به برگزیدههایشان اضافه کنند :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4938,7 +5617,8 @@ msgstr ""
"چرا به [باز کردن یک حساب](%%action.register%%) اقدام نمیکنید و اولین نفری "
"باشید که یک پیام را به برگزیدههایش اضافه میکند!"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "این یک راه است برای به اشتراک گذاشتن آنچه که دوست دارید."
@@ -4956,82 +5636,89 @@ msgid "%1$s group, page %2$d"
msgstr "گروه %1$s، صفحهٔ %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "نمایهٔ گروه"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "نشانی اینترنتی"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "یادداشت"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "نام های مستعار"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "اعمال گروه"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "خوراک پیام برای گروه %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "خوراک پیام برای گروه %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "خوراک پیام برای گروه %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF برای گروه %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "اعضا"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "هیچ"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "همهٔ اعضا"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "ساخته شد"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5041,7 +5728,7 @@ msgstr "اعضا"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5060,7 +5747,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5075,30 +5762,30 @@ msgstr ""
"میگذارند. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "مدیران"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "چنین پیغامی وجود ندارد."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "تنها فرستنده و گیرنده میتوانند این پیام را بخوانند."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "پیام به %1$s در %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "پیام از %1$s در %2$s"
@@ -5114,7 +5801,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s، صفحهٔ %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5362,75 +6049,77 @@ msgstr "متن پیام عمومی وبگاه (حداکثر ۲۵۵ نویسه
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "ذخیرهٔ پیام وبگاه"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "تنظیمات پیامک"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
"شما میتوانید پیامکها را از راه پست الکترونیک از %%site.name%% دریافت کنید."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "پیامک در دسترس نیست."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "نشانی پیامک"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "شمارهٔ تلفن با قابلیت فرستادن پیامک که در حال حاضر تایید شده است."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "منتظر تاییدیه برای این شماره تلفن."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "کد تاییدیه"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "کدی را که در گوشیتان دریافت کردید، وارد کنید"
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "تایید"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "شمارهٔ تماس پیامک"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "شماره تلفن، بدون نشانه گذاری یا فاصله، با کد منطقه"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "ترجیحات پیامک"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5439,32 +6128,32 @@ msgstr ""
"زیادی از طرف اپراتورم بشوم."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "تنظیمات پیامک ذخیره شد."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "بدون شماره تلفن."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "هیچ اپراتوری انتخاب نشده است."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "آن قبلا شماره تلفن شما بوده است."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "أن شماره تلفن پیش از این به کاربر دیگری تعلق داشته است."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5473,39 +6162,39 @@ msgstr ""
"کد و راهنمای استفاده از آن بررسی کنید."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "این کد تاییدیه نادرست است."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "تایید پیامک لغو شد."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "این شمارهٔ تلفن شما نیست."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "شماره تماس پیامک پاک شد."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "اپراتور موبایل"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "یک اپراتور را انتخاب کنید"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5516,8 +6205,9 @@ msgstr ""
"بفرستید تا ما باخبر شویم."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "کدی وارد نشد"
#. TRANS: Menu item for site administration
@@ -5590,15 +6280,19 @@ msgstr "شما مشترک آن نمایه نیستید."
msgid "Could not save subscription."
msgstr "نمیتوان اشتراک را ذخیره کرد."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "این عمل تنها درخواستهای POST را میپذیرد."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "نمیتوان با این کار مشترک یک نمایهٔ از راه دور OMB 0.1شد."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "مشترکشده"
@@ -5630,7 +6324,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "اینها کسانی هستند که پیامهای %s را دنبال میکنند."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5641,7 +6335,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s هیچ مشترکی ندارد. میخواهید اولین مشترک باشید؟"
@@ -5651,7 +6345,7 @@ msgstr "%s هیچ مشترکی ندارد. میخواهید اولین مشت
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5684,7 +6378,7 @@ msgstr "اینها کسانی هستند که %s پیامهایشان را
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5704,23 +6398,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s هیچکس را دنبال نمیکند."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "خوراک پیامهای %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "پیامک"
@@ -5754,12 +6449,15 @@ msgstr "هیچ پیوستی وجود ندارد."
msgid "Tag %s"
msgstr "برچسب %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "نمایهٔ کاربر"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "تصویر"
@@ -5774,6 +6472,11 @@ msgid ""
msgstr ""
"برچسبها برای این کاربر (حروف، اعداد، -، .، و _)، جدا شده با کاما- یا فاصله-"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "نشان نادرست »%s«"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5781,10 +6484,6 @@ 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 "از این روش برای افزودن برچسب به مشترکها یا اشتراکهایتان استفاده کنید."
@@ -5793,6 +6492,7 @@ msgstr "از این روش برای افزودن برچسب به مشترکه
msgid "No such tag."
msgstr "چنین برچسبی وجود ندارد."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "شما آن کاربر را مسدود نکرده اید."
@@ -5814,7 +6514,7 @@ msgstr "هیچ شناسهٔ نمایهای درخواست نشده است."
msgid "Unsubscribed"
msgstr "لغو اشتراک شده"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, fuzzy, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5846,12 +6546,11 @@ msgstr "متن خوشامدگویی نامعتبر است. بیشینهٔ طول
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "اشتراک پیشفرض نامعتبر است: «%1$s» کاربر نیست."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "نمایه"
@@ -5908,114 +6607,154 @@ msgstr "چنانکه به کاربران اجازهٔ دعوتکردن ک
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "ذخیرهٔ تنظیمات وبگاه"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "تصدیق اشتراک"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"لطفا این جزئیات را برای اطمینان از اینکه میخواهید مشترک پیامهای این کاربر "
"شوید، بررسی کنید. اگر شما درخواست اشتراک پیامهای کسی را ندادهاید، روی «رد "
"کردن» کلیک کنید."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "مجوز"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "پذیرفتن"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "مشترک شدن این کاربر"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "رد کردن"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "رد کردن این اشتراک"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "هیچ درخواست اجازهای وجود ندارد!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "اشتراک تصدیق شد"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "اشتراک پذیرفته نشد"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, fuzzy, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr "نشانی تصویر چهره «%s» معتبر نیست."
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, fuzzy, php-format
-msgid "Listenee URI ‘%s’ is too long."
+msgid "Listenee URI \"%s\" is too long."
msgstr "نشانی تصویر چهره «%s» معتبر نیست."
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, fuzzy, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+msgid "Listenee URI \"%s\" is a local user."
msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر محلی است."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر محلی است."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr "مجوز پیام «%1$s» با مجوز وبگاه «%2$s» سازگار نیست."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "نشانی تصویر چهره «%s» معتبر نیست."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "نمیتوان نشانی اینترنتی چهره را خواند«%s»."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "نوع تصویر برای نشانی اینترنتی چهره نادرست است «%s»."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "طراحی نمایه"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6023,7 +6762,7 @@ msgstr ""
"شیوهٔ نمایش نمایهٔ خود را با یک تصویر پیشزمینه و یک رنگ از جعبهٔ رنگها به "
"انتخاب خودتان سفارشیسازی کنید."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "از هات داگ خود لذت ببرید!"
@@ -6054,7 +6793,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "به روز رسانیهای %1$s در %2$s"
@@ -6113,7 +6852,7 @@ msgid "Plugins"
msgstr "افزونهها"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "نسخه"
@@ -6122,32 +6861,32 @@ msgid "Author(s)"
msgstr "مؤلف(ها)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "برگزیدهکردن"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "پیام شما را به برگزیدههای خود اضافه کرد %s (@%s)"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6161,7 +6900,7 @@ msgstr[0] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6170,7 +6909,7 @@ msgstr[0] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6179,7 +6918,7 @@ msgstr[0] ""
"بگذرد."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "نامپرونده نادرست است."
@@ -6237,7 +6976,7 @@ msgid "Could not create login token for %s"
msgstr "نمیتوان رمز ورود را برای %s ایجاد کرد"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "هیچ پایگاهداده یا DSN هیچجا پیدا نشد."
@@ -6265,23 +7004,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "چنین نمایهای (%1$d) برای پیام (%2$d) وجود ندارد."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "هنگام افزودن برچسب خطا در پایگاه داده رخ داد: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6289,7 +7028,7 @@ msgstr ""
"دوباره بفرستید."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6298,42 +7037,42 @@ msgstr ""
"ارسال کنید."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "شما از فرستادن پیام در این وبگاه منع شدهاید."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "هنگام ذخیرهٔ پیام مشکلی ایجاد شد."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "هنگام ذخیرهٔ صندوق ورودی گروه مشکلی رخ داد."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "نمیتوان اطلاعات گروه محلی را ذخیره کرد."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6341,14 +7080,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "نمیتوان نقش «%1$s» را از کاربر #%2$d گرفت، وجود ندارد."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6420,36 +7159,57 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "@%2$s، به %1$s خوش آمدید!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "هیچ کاربر تنهایی برای حالت تک کاربره مشخص نشده است."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "نمیتوان گروه را تشکیل داد"
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
#, fuzzy
msgid "Could not set group URI."
msgstr "نمیتوان گروه را تشکیل داد"
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "نمیتوان عضویت گروه را تعیین کرد."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "نمیتوان اطلاعات گروه محلی را ذخیره کرد."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "شما نمیتوانید کاربران را پاک کنید."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6486,211 +7246,214 @@ msgid "Other"
msgstr "دیگر"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s (%2$s)"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "صفحهٔ بدون عنوان"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "مسیریابی اصلی وبگاه"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "نمایهٔ شخصی و خطزمانی دوستان"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "شخصی"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "پست الکترونیکی، تصویر، گذرواژه یا نمایهٔ خودتان را تغییر دهید"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "حساب کاربری"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "اتصال به سرویسها"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "وصلشدن"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "تغییر پیکربندی وبگاه"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "مدیر"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "دوستان و همکارانتان را دعوت کنید تا به شما در %s بپیوندند"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "دعوتکردن"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "خارجشدن از وبگاه"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "خروج"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "ساختن یک جسابکاربری"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "ثبتنام"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "ورود به وبگاه"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "ورود"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "به من کمک کنید!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "کمک"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "جستوجو برای افراد یا متن"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "جستوجو"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "پیام وبگاه"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "دید محلی"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "پیام صفحه"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "مسیریابی فرعی وبگاه"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "کمک"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "دربارهٔ"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "سوالهای رایج"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "شرایط سرویس"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "خصوصی"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "منبع"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "تماس"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "نشان"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet مجوز نرم افزار"
@@ -6698,7 +7461,7 @@ msgstr "StatusNet مجوز نرم افزار"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6708,7 +7471,7 @@ msgstr ""
"broughtbyurl%%) برای شما راهاندازی شده است."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** یک سرویس میکروبلاگینگ است."
@@ -6717,7 +7480,7 @@ msgstr "**%%site.name%%** یک سرویس میکروبلاگینگ است."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6729,50 +7492,50 @@ msgstr ""
"org/licensing/licenses/agpl-3.0.html) در دسترس است."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "مجوز محتویات وبگاه"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "محتویات و دادههای %1$s خصوصی و محرمانه هستند."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr "حق تکثیر محتوا و دادهها با %1$s است. تمام حقوق محفوظ است."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr "حق تکثیر محتوا و دادهها با مشارکتکنندگان است. تمام حقوق محفوظ است."
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "تمام محتویات و دادههای %1$s زیر مجوز %2$s در دسترس هستند."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "صفحه بندى"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "پس از"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "قبل از"
@@ -6782,10 +7545,80 @@ msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
"در حال انتظار برای یک عامل خوراک ریشهای، اما یک سند XML کامل دریافت شد."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "زبان «%s» ناشناس است."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "تصویر"
+msgid "Cannot force remote user to subscribe."
+msgstr "نمیتوان کاربر را برای اشتراک خودکار بههنگامسازی کرد."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "نوع فایل پشتیبانی نشده"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "شما از پیش یک عضو این گروه هستید."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "پیدا کردن محتوای پیامها"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "چنین کاربری وجود ندارد."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s (%2$s)"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6857,7 +7690,7 @@ msgid "User configuration"
msgstr "پیکربندی کاربر"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "کاربر"
@@ -6903,19 +7736,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6938,28 +7775,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "پیغام نمی تواند درج گردد"
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "هنگام افزودن کاربر برنامهٔ OAuth در پایگاه داده خطایی رخ داد."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "شمایل این برنامه"
@@ -7069,17 +7910,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "لغو کردن"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "این پیام را پاک نکن"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "مؤلف"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "مهیا کننده"
@@ -7110,6 +7957,11 @@ msgstr "تغییر گذرواژه مجاز نیست"
msgid "Block"
msgstr "بازداشتن"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "کاربر را مسدود کن"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7225,7 +8077,7 @@ msgstr "نام کامل : %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "موقعیت : %s"
@@ -7233,7 +8085,7 @@ msgstr "موقعیت : %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "صفحه خانگی : %s"
@@ -7503,26 +8355,26 @@ msgstr ""
"tracking - هنوز پیاده نشده است.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "بدون کد تصدیق."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "من به دنبال پروندههای پیکربندی در مکانهای زیر بودم: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "برو به نصاب."
@@ -7566,14 +8418,19 @@ msgstr "برنامههای وصلشدهٔ مجاز"
msgid "Database error"
msgstr "خطای پایگاه داده"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "حذف این کاربر"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "بارگذاری پرونده"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7594,26 +8451,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "خاموش"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "بازنشاندن"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "تغییر رنگها"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "استفادهکردن از پیشفرضها"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "بازگرداندن طرحهای پیشفرض"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "برگشت به حالت پیش گزیده"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "ذخیرهکردن طرح"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "نمیتوان ظاهر را به روز کرد."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "پیشفرضهای طراحی برگردانده شدند."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "نمیتوان دسترسی را برای برنامهٔ %s لغو کرد."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "خارجکردن این پیام از برگزیدهها"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "خارجکردن از برگزیدهها"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "برگزیدهکردن این پیام"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "برگزیدهکردن"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr ""
@@ -7631,6 +8536,19 @@ msgstr "مؤلف"
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "همهٔ اعضا"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7665,32 +8583,32 @@ msgstr "برو"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذاری یا فاصله"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "نشانی اینترنتی صفحهٔخانگی یا وبلاگ گروه یا موضوع"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "گروه یا موضوع را توصیف کنید"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "گروه یا موضوع را در %d نویسه توصیف کنید"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "مکان گروه، در صورت وجود داشتن، مانند «شهر، ایالت (یا استان)، کشور»"
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7795,55 +8713,56 @@ msgstr "برچسبها در پیامهای گروه %s"
msgid "This page is not available in a media type you accept"
msgstr "این صفحه در نوع رسانهای که پذیرفتهاید، در دسترس نیست."
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "فرمت(فایل) عکس پشتیبانی نشده."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "این پرونده خیلی بزرگ است. بیشینهٔ اندازهٔ پرونده %s است."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
#, fuzzy
msgid "Partial upload."
msgstr "هیچ پروندهای بارگذاری نشد."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "هنگام بارگذاری پرونده خطای سیستمی رخ داد."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "تصویر یا فایل خرابی نیست"
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "فایلمان گم شده"
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "نوع فایل پشتیبانی نشده"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
msgstr[0] "مگابایت"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
msgstr[0] "کیلوبایت"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7863,23 +8782,25 @@ msgstr "منبع صندوق ورودی نامعلوم است %d."
msgid "Leave"
msgstr "ترک کردن"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "وارد شدن با یک نام کاربری و گذرواژه"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "عضویت برای حساب کاربری جدید"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "تایید نشانی پست الکترونیکی"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7911,14 +8832,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s اکنون پیامهای شما را در %2$s دنبال میکند."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7930,7 +8851,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7957,14 +8878,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "شرححال: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "%s ادرس ایمیل جدید برای"
@@ -7972,7 +8893,7 @@ msgstr "%s ادرس ایمیل جدید برای"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7995,34 +8916,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "وضعیت %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "تأیید پیامک"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: شماره تلفن خود را با این کد تایید کنید:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "شما توسط %s یادآوری شدید."
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8051,7 +8972,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "پیام خصوصی تازه از %s"
@@ -8060,7 +8981,7 @@ msgstr "پیام خصوصی تازه از %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8095,7 +9016,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "پیام شما را به برگزیدههای خود اضافه کرد %s (@%s)"
@@ -8105,7 +9026,7 @@ msgstr "پیام شما را به برگزیدههای خود اضافه کر
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8147,7 +9068,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8160,7 +9081,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) به توجه شما یک پیام فرستاد"
@@ -8171,7 +9092,7 @@ msgstr "%s (@%s) به توجه شما یک پیام فرستاد"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8220,20 +9141,16 @@ msgstr ""
"\n"
"پ.ن. شما میتوانید این آگاهسازی با نامه را اینجا خاموش کنید:%8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "تنها کاربران می تواند صندوق نامهٔ خودشان را بخوانند."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr "از"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "نمیتوان پیام را تجزیه کرد."
@@ -8261,38 +9178,6 @@ msgid "There was a database error while saving your file. Please try again."
msgstr ""
"یک خطای پایگاه داده هنگام ذخیره کردن فایل شما رخ داد. لطفا بعدا سعی کنید."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "نتها اندکی از فایل بارگذاریشده فرستاده شد."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "گم شدن یک پوشه ی موقتی."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "شکست خوردن در نوشتن فایل روی دیسک."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "بارگذاری پرونده توسط افزونه متوقف شد."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8313,7 +9198,7 @@ msgstr "نمیتوان فرمت پرونده را تعیین کرد."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8322,7 +9207,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8356,18 +9241,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "فرستادن"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "پیام"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "از"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "لقب باید شامل حروف کوچک و اعداد و بدون فاصله باشد."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8382,11 +9276,11 @@ msgstr "فرستادن یک پیام"
msgid "What's up, %s?"
msgstr "چه خبر، %s؟"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "پیوست کردن"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "یک فایل پیوست کنید"
@@ -8407,56 +9301,60 @@ msgstr ""
"دوباره تلاش کنید."
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
#, fuzzy
msgid "N"
msgstr "خیر"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "در"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "در زمینه"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "تکرار از"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "به این پیام پاسخ دهید"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "پاسخ"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "این پیام را پاک کن"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "پیام تکرار شد"
@@ -8493,77 +9391,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "نمیتوان اشتراک تازهای افزود."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "شخصی"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "پاسخ ها"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "نمایه"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "برگزیدهها"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "صندوق دریافتی"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "پیام های وارد شونده ی شما"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "صندوق خروجی"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "پیامهای فرستاده شدهٔ شما"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "برچسبها در پیامهای %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "ناشناخته"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "اشتراکها"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "تمام اشتراکها"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "مشترکها"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "تمام مشترکها"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "شناسه کاربر"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "عضو شده از"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "گروهها"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "میانگین روزانه"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "تمام گروهها"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "روش پیاده نشده است."
@@ -8611,7 +9545,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "دسترسی کاربر به گروه مسدود شود"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "رابط مورد نظر پیدا نشد."
@@ -8704,6 +9638,10 @@ msgstr "دعوتکردن"
msgid "Invite friends and colleagues to join you on %s"
msgstr "به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "مشترک شدن این کاربر"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8817,118 +9755,130 @@ msgstr "لغو اشتراک"
msgid "User %1$s (%2$d) has no profile record."
msgstr "کاربر هیچ نمایهای ندارد."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "ویرایش اواتور"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "اعمال کاربر"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "پاککردن کاربر در حالت اجرا است..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "ویرایش تنظیمات نمایه"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "ویرایش"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "پیام مستقیم به این کاربر بفرستید"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "پیام"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "اداره کردن"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "وظیفهٔ کاربر"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "رئیس"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "مدیر"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "شما به سیستم وارد نشده اید."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "چند ثانیه پیش"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "حدود یک دقیقه پیش"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "حدود یک ساعت پیش"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "حدود یک روز پیش"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "حدود یک ماه پیش"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "حدود یک سال پیش"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s یک رنگ صحیح نیست!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s یک رنگ صحیح نیست! از ۳ یا ۶ نویسه مبنای شانزده استفاده کنید"
@@ -8950,31 +9900,18 @@ msgstr[0] ""
"فرستادید."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "اندازه نادرست است."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "هیچ شناسهٔ کاربری مشخص نشده است."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po
index fb4e344692..9fe9dd12da 100644
--- a/locale/fi/LC_MESSAGES/statusnet.po
+++ b/locale/fi/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Finnish (Suomi)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Crt
# Author: Jaakko
@@ -7,6 +7,7 @@
# Author: McDutchie
# Author: Nike
# Author: Str4nd
+# Author: Wwwwolf
# --
# This file is distributed under the same license as the StatusNet package.
#
@@ -14,64 +15,59 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:40+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:36+0000\n"
"Language-Team: Finnish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fi\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363
-#, fuzzy
msgid "Access"
-msgstr "Hyväksy"
+msgstr "Käyttöoikeudet"
#. TRANS: Page notice.
#: actions/accessadminpanel.php:64
-#, fuzzy
msgid "Site access settings"
-msgstr "Profiilikuva-asetukset"
+msgstr "Sivuston käyttöoikeusasetukset"
#. TRANS: Form legend for registration form.
#: actions/accessadminpanel.php:151
-#, fuzzy
msgid "Registration"
-msgstr "Rekisteröidy"
+msgstr "Rekisteröityminen"
#. TRANS: Checkbox instructions for admin setting "Private".
#: actions/accessadminpanel.php:155
msgid "Prohibit anonymous users (not logged in) from viewing site?"
-msgstr ""
+msgstr "Estä anonyymejä (sisäänkirjautumattomia) käyttäjiä lukemasta sivustoa?"
#. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
#: actions/accessadminpanel.php:157
-#, fuzzy
msgctxt "LABEL"
msgid "Private"
-msgstr "Yksityisyys"
+msgstr "Yksityinen"
#. TRANS: Checkbox instructions for admin setting "Invite only".
#: actions/accessadminpanel.php:164
msgid "Make registration invitation only."
-msgstr ""
+msgstr "Salli rekisteröityminen vain kutsusta."
#. TRANS: Checkbox label for configuring site as invite only.
#: actions/accessadminpanel.php:166
-#, fuzzy
msgid "Invite only"
-msgstr "Kutsu"
+msgstr "Vain kutsusta"
#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations).
#: actions/accessadminpanel.php:173
msgid "Disable new registrations."
-msgstr ""
+msgstr "Estä uusien käyttäjien rekisteröityminen."
#. TRANS: Checkbox label for disabling new user registrations.
#: actions/accessadminpanel.php:175
@@ -80,13 +76,13 @@ msgstr "Suljettu"
#. TRANS: Title for button to save access settings in site admin panel.
#: actions/accessadminpanel.php:191
-#, fuzzy
msgid "Save access settings"
-msgstr "Profiilikuva-asetukset"
+msgstr "Tallenna käyttöoikeusasetukset"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -96,13 +92,13 @@ msgstr "Profiilikuva-asetukset"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Tallenna"
@@ -110,7 +106,7 @@ msgstr "Tallenna"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Sivua ei ole."
@@ -120,6 +116,8 @@ msgstr "Sivua ei ole."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -135,13 +133,23 @@ msgstr "Sivua ei ole."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -149,31 +157,32 @@ msgstr "Sivua ei ole."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Käyttäjää ei ole."
#. TRANS: Page title. %1$s is user nickname, %2$d is page number
#: actions/all.php:91
-#, fuzzy, php-format
+#, php-format
msgid "%1$s and friends, page %2$d"
-msgstr "%s ja kaverit"
+msgstr "%1$s ja kaverit, sivu %2$d"
#. TRANS: Page title. %s is user nickname
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s ja kaverit"
@@ -286,7 +295,7 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -316,9 +325,24 @@ msgid ""
"You must specify a parameter named 'device' with a value of one of: sms, im, "
"none."
msgstr ""
+"Sinun pitää antaa parametri 'device', jonka arvona on 'sms', 'im' tai 'none'."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Käyttäjän päivitys epäonnistui."
@@ -328,18 +352,23 @@ msgstr "Käyttäjän päivitys epäonnistui."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Käyttäjällä ei ole profiilia."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Profiilin tallennus epäonnistui."
@@ -349,8 +378,8 @@ msgstr "Profiilin tallennus epäonnistui."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -366,13 +395,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Ulkoasun tallennus epäonnistui."
@@ -380,49 +410,59 @@ msgstr "Ulkoasun tallennus epäonnistui."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
-#, fuzzy
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
-msgstr "Ei voitu päivittää käyttäjää."
+msgstr "Ulkoasua ei voitu päivittää."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s aikajana"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Käyttäjän %s tilaukset"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Suosikit"
+msgstr "%s:n suosikit"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
msgstr "Ryhmän %s jäsenet"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Sinä et voi poistaa käyttäjiä."
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Käyttäjän esto epäonnistui."
@@ -478,14 +518,12 @@ msgstr "Vastaanottajaa ei löytynyt."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-#, fuzzy
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri."
#. TRANS: Client error displayed trying to direct message self (403).
#: actions/apidirectmessagenew.php:154
-#, fuzzy
msgid ""
"Do not send a message to yourself; just say it to yourself quietly instead."
msgstr "Älä lähetä viestiä itsellesi, vaan kuiskaa se vain hiljaa itsellesi."
@@ -500,24 +538,24 @@ msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä."
#. TRANS: Client error displayed when trying to mark a notice favourite that already is a favourite.
#: actions/apifavoritecreate.php:120
-#, fuzzy
msgid "This status is already a favorite."
-msgstr "Tämä päivitys on jo suosikki!"
+msgstr "Tämä päivitys on jo suosikki."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Ei voitu lisätä suosikiksi."
#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite.
#: actions/apifavoritedestroy.php:122
-#, fuzzy
msgid "That status is not a favorite."
-msgstr "Tämä päivitys ei ole suosikki!"
+msgstr "Tämä päivitys ei ole suosikki."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Ei voitu poistaa suosikkia."
@@ -545,7 +583,6 @@ msgstr "Sinä et voi poistaa käyttäjiä."
#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
#: actions/apifriendshipsexists.php:88
-#, fuzzy
msgid "Two valid IDs or nick names must be supplied."
msgstr "Kaksi käyttäjätunnusta tai nimeä täytyy antaa."
@@ -563,9 +600,9 @@ msgstr "Ei voitu päivittää käyttäjää."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Tunnus on jo käytössä. Yritä toista tunnusta."
@@ -573,21 +610,22 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Tuo ei ole kelvollinen tunnus."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Kotisivun verkko-osoite ei ole toimiva."
@@ -595,24 +633,24 @@ msgstr "Kotisivun verkko-osoite ei ole toimiva."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
-#, fuzzy
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Koko nimi on liian pitkä (max 255 merkkiä)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -623,10 +661,9 @@ msgstr[1] "kuvaus on liian pitkä (max %d merkkiä)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
-#, fuzzy
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)."
@@ -636,8 +673,8 @@ msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -647,25 +684,23 @@ msgstr[1] "Liikaa aliaksia. Maksimimäärä on %d."
#. TRANS: Client error shown when providing an invalid alias during group creation.
#. TRANS: %s is the invalid alias.
#: actions/apigroupcreate.php:253
-#, fuzzy, php-format
+#, php-format
msgid "Invalid alias: \"%s\"."
msgstr "Virheellinen alias: \"%s\""
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Alias \"%s\" on jo käytössä. Yritä toista aliasta."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Alias ei voi olla sama kuin ryhmätunnus."
@@ -676,31 +711,35 @@ msgstr "Alias ei voi olla sama kuin ryhmätunnus."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Ei löytynyt."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Sinä kuulut jo tähän ryhmään."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Sinut on estetty osallistumasta tähän ryhmään ylläpitäjän toimesta."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
-#, fuzzy, php-format
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
+#, php-format
msgid "Could not join user %1$s to group %2$s."
-msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s."
+msgstr "Käyttäjä %1$s ei voinut liittyä ryhmään %2$s."
#. TRANS: Server error displayed when trying to leave a group the user is not a member of.
#: actions/apigroupleave.php:115
@@ -709,9 +748,11 @@ msgstr "Sinä et kuulu tähän ryhmään."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -725,9 +766,9 @@ msgstr "Käyttäjän %s ryhmät"
#. TRANS: Used as subtitle in check for group membership. %1$s is a user name, %2$s is the site name.
#: actions/apigrouplist.php:104
-#, fuzzy, php-format
+#, php-format
msgid "%1$s groups %2$s is a member of."
-msgstr "Ryhmät, joiden jäsen %s on"
+msgstr "%1$s ryhmät, joiden jäsen %2$s on."
#. TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name.
#. TRANS: Message is used as a page title. %s is a nick name.
@@ -738,9 +779,9 @@ msgstr "Käyttäjän %s ryhmät"
#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name.
#: actions/apigrouplistall.php:93
-#, fuzzy, php-format
+#, php-format
msgid "groups on %s"
-msgstr "Ryhmän toiminnot"
+msgstr "%s-käyttäjäryhmät"
#. TRANS: Client error displayed when uploading a media file has failed.
#: actions/apimediaupload.php:101
@@ -748,43 +789,45 @@ msgid "Upload failed."
msgstr "Komento epäonnistui"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
-#, fuzzy
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
-msgstr "Päivityksen sisältö ei kelpaa"
+msgstr "Virheellinen pyyntötunniste tai varmistus."
#. TRANS: Client error given when no oauth_token was passed to the OAuth API.
#: actions/apioauthauthorize.php:107
msgid "No oauth_token parameter provided."
-msgstr ""
+msgstr "oauth_token-parametri puuttuu."
#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129
-#, fuzzy
msgid "Invalid request token."
-msgstr "Koko ei kelpaa."
+msgstr "Virheellinen pyyntötunniste."
#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
#: actions/apioauthauthorize.php:121
-#, fuzzy
msgid "Request token already authorized."
-msgstr "Sinulla ei ole valtuutusta tähän."
+msgstr "Pyyntötunniste on jo hyväksytty."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -793,42 +836,44 @@ msgstr ""
#. TRANS: Form validation error given when an invalid username and/or password was passed to the OAuth API.
#: actions/apioauthauthorize.php:168
-#, fuzzy
msgid "Invalid nickname / password!"
msgstr "Käyttäjätunnus tai salasana ei kelpaa."
#. TRANS: Server error displayed when a database action fails.
#: actions/apioauthauthorize.php:217
-#, fuzzy
msgid "Database error inserting oauth_token_association."
-msgstr "Tietokantavirhe tallennettaessa risutagiä: %s"
+msgstr "Tietokantavirhe lisättäessä oauth_token_association-arvoa."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Odottamaton lomakkeen lähetys."
#. TRANS: Title for a page where a user can confirm/deny account access by an external application.
#: actions/apioauthauthorize.php:387
msgid "An application would like to connect to your account"
-msgstr ""
+msgstr "Sovellus haluaa muodostaa yhteyden käyttäjätiliisi"
#. TRANS: Fieldset legend.
#: actions/apioauthauthorize.php:404
msgid "Allow or deny access"
-msgstr ""
+msgstr "Salli tai estä käyttö"
#. TRANS: User notification of external application requesting account access.
#. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename.
@@ -839,6 +884,9 @@ msgid ""
"account data. You should only give access to your %4$s account to third "
"parties you trust."
msgstr ""
+"Sovellus haluaa %3$s-käyttöoikeuden %4$s:n "
+"käyttäjätietoihisi. Sinun tulee sallia pääsy %4$s-tilillesi vain sellaisille "
+"kolmansille osapuolille, joihin luotat."
#. TRANS: User notification of external application requesting account access.
#. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application,
@@ -850,10 +898,13 @@ msgid ""
"the ability to %3$s your %4$s account data. You should only "
"give access to your %4$s account to third parties you trust."
msgstr ""
+"Sovellus %1$s tekijältä %2$s haluaa "
+"%3$s-käyttöoikeuden %4$s:n käyttäjätietoihisi. Sinun tulee "
+"sallia pääsy %4$s-tilillesi vain sellaisille kolmansille osapuolille, joihin "
+"luotat."
#. TRANS: Fieldset legend.
#: actions/apioauthauthorize.php:455
-#, fuzzy
msgctxt "LEGEND"
msgid "Account"
msgstr "Käyttäjätili"
@@ -861,65 +912,63 @@ msgstr "Käyttäjätili"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Tunnus"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Salasana"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
-#, fuzzy
msgctxt "BUTTON"
msgid "Cancel"
msgstr "Peruuta"
#. TRANS: Button text that when clicked will allow access to an account by an external application.
#: actions/apioauthauthorize.php:485
-#, fuzzy
msgctxt "BUTTON"
msgid "Allow"
-msgstr "Kaikki"
+msgstr "Salli"
#. TRANS: Form instructions.
#: actions/apioauthauthorize.php:502
msgid "Authorize access to your account information."
-msgstr ""
+msgstr "Hyväksy pääsy käyttäjätilisi tietoihin."
#. TRANS: Header for user notification after revoking OAuth access to an application.
#: actions/apioauthauthorize.php:594
-#, fuzzy
msgid "Authorization canceled."
-msgstr "Varmistuskoodia ei ole annettu."
+msgstr "Hyväksyminen peruttiin."
#. TRANS: User notification after revoking OAuth access to an application.
#. TRANS: %s is an OAuth token.
#: actions/apioauthauthorize.php:598
#, php-format
msgid "The request token %s has been revoked."
-msgstr ""
+msgstr "Pyyntotunniste %s on nyt mitätöity."
#. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
#: actions/apioauthauthorize.php:621
-#, fuzzy
msgid "You have successfully authorized the application"
-msgstr "Sinulla ei ole valtuutusta tähän."
+msgstr "Olet valtuuttanut sovelluksen onnistuneesti"
#. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
#: actions/apioauthauthorize.php:625
@@ -927,13 +976,15 @@ msgid ""
"Please return to the application and enter the following security code to "
"complete the process."
msgstr ""
+"Ole hyvä, palaa ohjelmaan ja anna seuraava turvakoodi viimeistelläksesi "
+"hyväksymisen."
#. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth.
#. TRANS: %s is the authorised application name.
#: actions/apioauthauthorize.php:632
-#, fuzzy, php-format
+#, php-format
msgid "You have successfully authorized %s"
-msgstr "Sinulla ei ole valtuutusta tähän."
+msgstr "Olet hyväksynyt sovelluksen %s onnistuneesti."
#. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth.
#. TRANS: %s is the authorised application name.
@@ -943,6 +994,8 @@ msgid ""
"Please return to %s and enter the following security code to complete the "
"process."
msgstr ""
+"Ole hyvä, palaa ohjelmaan %s ja anna seuraava turvakoodi viimeistelläksesi "
+"hyväksymisen."
#. TRANS: Client error displayed trying to delete a status not using POST or DELETE.
#. TRANS: POST and DELETE should not be translated.
@@ -957,6 +1010,7 @@ msgstr "Et voi poistaa toisen käyttäjän päivitystä."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -967,9 +1021,8 @@ msgstr "Päivitystä ei ole."
#. TRANS: Client error displayed trying to repeat an own notice through the API.
#. TRANS: Error text shown when trying to repeat an own notice.
#: actions/apistatusesretweet.php:83 lib/command.php:537
-#, fuzzy
msgid "Cannot repeat your own notice."
-msgstr "Ilmoituksia ei voi pistää päälle."
+msgstr "Et voi lähettää uudelleen omaa viestiäsi."
#. TRANS: Client error displayed trying to re-repeat a notice through the API.
#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user.
@@ -977,47 +1030,58 @@ msgstr "Ilmoituksia ei voi pistää päälle."
msgid "Already repeated that notice."
msgstr "Tätä päivitystä ei voi poistaa."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
-#, fuzzy
msgid "HTTP method not supported."
-msgstr "API-metodia ei löytynyt."
+msgstr "HTTP-metodia ei tueta."
-#: actions/apistatusesshow.php:141
-#, fuzzy, php-format
-msgid "Unsupported format: %s"
-msgstr "Formaattia ei ole tuettu."
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
+#, php-format
+msgid "Unsupported format: %s."
+msgstr "Formaattia %s ei ole tuettu."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Päivitys poistettu."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "Tätä päivitystä ei voi poistaa."
-#: actions/apistatusesshow.php:243
-#, fuzzy, php-format
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
+#, php-format
msgid "Deleted notice %d"
-msgstr "Poista päivitys"
+msgstr "Poistettiin päivitys %d"
#. TRANS: Client error displayed when the parameter "status" is missing.
#: actions/apistatusesupdate.php:221
msgid "Client must provide a 'status' parameter with a value."
-msgstr ""
+msgstr "Asiakasohjelman on annettava 'status'-parametri arvoineen."
#. TRANS: Client error displayed when the parameter "status" is missing.
#. TRANS: %d is the maximum number of character for a notice.
@@ -1031,9 +1095,8 @@ msgstr[1] "Päivitys on liian pitkä. Maksimipituus on %d merkkiä."
#. TRANS: Client error displayed when replying to a non-existing notice.
#: actions/apistatusesupdate.php:284
-#, fuzzy
msgid "Parent notice not found."
-msgstr "API-metodia ei löytynyt."
+msgstr "Viestiä, johon vastataan, ei löytynyt."
#. TRANS: Client error displayed exceeding the maximum notice length.
#. TRANS: %d is the maximum lenth for a notice.
@@ -1067,10 +1130,10 @@ msgstr "Käyttäjän %1$s suosikit palvelussa %2$s!"
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
-#, fuzzy, php-format
+#: actions/apitimelinegroup.php:134
+#, php-format
msgid "Could not generate feed for group - %s"
-msgstr "Ei voitu päivittää ryhmää."
+msgstr "Ryhmän %s syötettä ei voitu muodostaa."
#. TRANS: Title for timeline of most recent mentions of a user.
#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
@@ -1089,22 +1152,22 @@ msgstr ""
"%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s julkinen aikajana"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
-#, fuzzy, php-format
+#: actions/apitimelinepublic.php:199
+#, php-format
msgid "%s updates from everyone!"
msgstr "%s päivitykset kaikilta!"
#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'.
#: actions/apitimelineretweetedbyme.php:71
-#, fuzzy
msgid "Unimplemented."
-msgstr "Komentoa ei ole vielä toteutettu."
+msgstr "Toimintoa ei ole vielä toteutettu."
#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname.
#: actions/apitimelineretweetedtome.php:108
@@ -1142,205 +1205,261 @@ msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
msgid "Only accept AtomPub for Atom feeds."
-msgstr ""
+msgstr "Atom-syötteille tuetaan vain AtomPub-muotoa."
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr ""
+msgstr "Atom-viesti ei saa olla tyhjä."
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr ""
+msgstr "Atom-viestin XML-rakenteen tulee olla hyvin muodostettu."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
-msgstr ""
+msgstr "Atom-viestin tulee olla Atom-kohteen muodossa."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr ""
+msgstr "Vain POST-toiminnot ovat tuettuja."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr ""
+msgstr "Toiminto-objektityyppi \"%s\" ei ole tuettu."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Hae päivityksien sisällöstä"
+msgstr "Päivityksen %d sisältö puuttuu."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Ei profiilia tuolla id:llä."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API-metodi on työn alla!"
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "API-metodia ei löytynyt."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Tiedostoa ei ole."
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
+msgstr "Profiilia ei löydy."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Ei voitu lisätä uutta tilausta."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "Vain suosikiksimerkitsemistoimintoja tuetaan."
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
msgid "Can only fave notices."
-msgstr "Hae päivityksien sisällöstä"
+msgstr "Vain päivityksiä voi merkitä suosikeiksi."
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
msgid "Unknown note."
-msgstr "Tuntematon toiminto"
+msgstr "Tuntematon päivitys."
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
msgid "Already a favorite."
-msgstr "Lisää suosikkeihin"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-#, fuzzy
-msgid "No such profile."
-msgstr "Tiedostoa ei ole."
+msgstr "Tämä päivitys on jo suosikkina."
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "Ryhmän %s jäsenet"
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "Ryhmät, joiden jäsen %s on"
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "Ryhmät, joiden jäsen %1$s on palvelimella %2$s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Ei voitu lisätä uutta tilausta."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr "Vain liittymistoimintoja tuetaan."
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Tuntematon toiminto"
+msgstr "Tuntematon ryhmä."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Kaikki jäsenet"
+msgstr "Olet jo ryhmän jäsen."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Ylläpitäjä esti toiminnon."
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "Tiedostoa ei ole."
+msgstr "Suosikkia ei ole."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "Ei voitu poistaa suosikkia."
+msgid "Cannot delete someone else's favorite."
+msgstr "Et voi poistaa jonkin toisen käyttäjän suosikkia."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Tuota ryhmää ei ole."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "Kaikki jäsenet"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "API-metodia ei löytynyt."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "Et ole jäsen."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Tiedostoa ei ole."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Tilausta ei onnistuttu tallentamaan."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
+#, php-format
+msgid "No such profile id: %d."
+msgstr "Ei profiilia tällä tunnuksella: %d."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Tilausta ei onnistuttu tallentamaan."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
-msgstr ""
+msgstr "Vain seuraustoimintoja tuetaan."
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Vain henkilöitä voi seurata."
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Tunnistamaton tiedoston tyyppi"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Ei ole tilattu!."
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1349,11 +1468,15 @@ msgstr "Liitettä ei ole."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Tunnusta ei ole."
@@ -1370,7 +1493,7 @@ msgstr "Koko ei kelpaa."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Kuva"
@@ -1383,50 +1506,57 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Käyttäjällä ei ole profiilia."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Profiilikuva-asetukset"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Alkuperäinen"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Esikatselu"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
-#, fuzzy
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Poista"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
-#, fuzzy
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Lataa"
#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar.
#: actions/avatarsettings.php:243
-#, fuzzy
msgctxt "BUTTON"
msgid "Crop"
msgstr "Rajaa"
@@ -1437,31 +1567,74 @@ msgstr "Rajaa"
msgid "No file uploaded."
msgstr "Profiilia ei ole määritelty."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
-msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
+msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Tiedoston data hävisi."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Kuva päivitetty."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Profiilikuvan päivittäminen epäonnistui."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Kuva poistettu."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Varmuuskopioi tili"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr "Vain kirjautuneet käyttäjät voivat varmuuskopioida tilejään."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "Et voi varmuuskopioida käyttäjätiliäsi."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+"Voit varmuuskopioida käyttäjätilisi tiedot Activity Streams -muodossa. Tämä on kokeellinen ominaisuus ja kaikkia "
+"tietoja ei voida välttämättä varmuuskopioida; yksityisiä tietoja, kuten "
+"sähköposti- ja pikaviestiosoitteita ei voida varmuuskopioida. Myöskään "
+"lähetettyjä tiedostoja ja suoraviestejä ei varmuuskopioida."
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Varmuuskopioi"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr "Varmuuskopioi käyttäjätilisi."
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1469,7 +1642,8 @@ msgstr "!!FUZZZY!!Olet jos tilannut seuraavien käyttäjien päivitykset:"
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Estä käyttäjä"
@@ -1480,6 +1654,9 @@ msgid ""
"unsubscribed from you, unable to subscribe to you in the future, and you "
"will not be notified of any @-replies from them."
msgstr ""
+"Haluatko varmasti estää tämän käyttäjän? Eston jälkeen heidän tilauksensa "
+"päivityksiisi poistetaan, he eivät voi tilata päivityksiäsi tulevaisuudessa, "
+"ja et saa ilmoituksia heidän tekemistään @-vastauksista."
#. TRANS: Button label on the user block form.
#. TRANS: Button label on the delete application form.
@@ -1489,16 +1666,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
-msgstr "Huomaa"
+msgstr "Ei"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
-msgstr "Älä estä tätä käyttäjää"
+#: actions/block.php:158
+msgid "Do not block this user."
+msgstr "Älä estä tätä käyttäjää."
#. TRANS: Button label on the user block form.
#. TRANS: Button label on the delete application form.
@@ -1508,61 +1684,34 @@ msgstr "Älä estä tätä käyttäjää"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
-#, fuzzy
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Kyllä"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
-msgstr "Estä tämä käyttäjä"
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "Estä tämä käyttäjä."
#. TRANS: Server error displayed when blocking a user fails.
#: actions/block.php:189
msgid "Failed to save block information."
msgstr "Käyttäjän estotiedon tallennus epäonnistui."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Tuota ryhmää ei ole."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
-#, fuzzy, php-format
+#, php-format
msgid "%s blocked profiles"
-msgstr "Käyttäjän profiili"
+msgstr "%s:n estetyt profiilit"
#. TRANS: Title for any but the first page with list of users blocked from a group.
#. TRANS: %1$s is a group nickname, %2$d is a page number.
#: actions/blockedfromgroup.php:106
-#, fuzzy, php-format
+#, php-format
msgid "%1$s blocked profiles, page %2$d"
-msgstr "%s ja kaverit, sivu %d"
+msgstr "%1$s:n estetyt profiilit, sivu %2$d"
#. TRANS: Instructions for list of users blocked from a group.
#: actions/blockedfromgroup.php:122
@@ -1576,7 +1725,6 @@ msgstr "Poista käyttäjän esto ryhmästä"
#. TRANS: Button text for unblocking a user from a group.
#: actions/blockedfromgroup.php:323
-#, fuzzy
msgctxt "BUTTON"
msgid "Unblock"
msgstr "Poista esto"
@@ -1620,29 +1768,11 @@ msgstr "Tuntematon osoitetyyppi %s "
msgid "That address has already been confirmed."
msgstr "Tämä osoite on jo vahvistettu."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Ei voitu päivittää käyttäjää."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
-#, fuzzy
msgid "Could not delete address confirmation."
-msgstr "Ei voitu poistaa sähköpostivahvistusta."
+msgstr "Osoitteen vahvistusta ei voitu poistaa."
#. TRANS: Title for the contact address confirmation action.
#: actions/confirmaddress.php:150
@@ -1662,11 +1792,85 @@ msgid "Conversation"
msgstr "Keskustelu"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Päivitykset"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "Sinä et voi poistaa käyttäjätiliäsi."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Olen varma."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "Kirjoita \"%s\" laatikkoon. Tekstien täytyy vastata toisiaan."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "Käyttäjätili poistettu."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Poista käyttäjätili"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"Tämä poistaa lopullisesti kaikki tiedot käyttäjätilistäsi "
+"tältä palvelimelta."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+"Suosittelemme, että luot tiedoista itsellesi varmuuskopion"
+"a> ennen poistoa."
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Vahvista"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Anna \"%s\" varmistaaksesi että haluat todella poistaa käyttäjätilisi."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Poista käyttäjätilisi lopullisesti"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1680,24 +1884,22 @@ msgstr "Vahvistuskoodia ei löytynyt."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
-#, fuzzy
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
-msgstr "Sinä et kuulu tähän ryhmään."
+msgstr "Et ole tämän sovelluksen omistaja."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Istuntoavaimesi kanssa oli ongelma."
#. TRANS: Title for delete application page.
#. TRANS: Fieldset legend on delete application page.
#: actions/deleteapplication.php:124 actions/deleteapplication.php:149
-#, fuzzy
msgid "Delete application"
-msgstr "Päivitystä ei ole."
+msgstr "Poista sovellus"
#. TRANS: Confirmation text on delete application page.
#: actions/deleteapplication.php:152
@@ -1706,31 +1908,32 @@ msgid ""
"about the application from the database, including all existing user "
"connections."
msgstr ""
+"Oletko varma että haluat poistaa tämän sovelluksen? Tämä poistaa kaikki "
+"tietokannassa olevat tiedot tästä sovelluksesta, mukaanlukien kaikki "
+"yhteydet käyttäjätileihin."
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-#, fuzzy
-msgid "Do not delete this application"
-msgstr "Älä poista tätä päivitystä"
+msgid "Do not delete this application."
+msgstr "Älä poista tätä sovellusta."
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-#, fuzzy
-msgid "Delete this application"
-msgstr "Poista tämä päivitys"
+msgid "Delete this application."
+msgstr "Poista tämä sovellus."
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
-#, fuzzy
msgid "You must be logged in to delete a group."
-msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä."
+msgstr "Sinun pitää olla kirjautunut sisään, jotta voit poistaa ryhmän."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
-#, fuzzy
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
-msgstr "Tunnusta ei ole."
+msgstr "Tunnusta tai ID:tä ei ole."
#. TRANS: Client error when trying to delete a group without having the rights to delete it.
#: actions/deletegroup.php:107
@@ -1748,16 +1951,15 @@ msgstr "Ei voitu päivittää ryhmää."
#. TRANS: Message given after deleting a group.
#. TRANS: %s is the deleted group's name.
#: actions/deletegroup.php:159
-#, fuzzy, php-format
+#, php-format
msgid "Deleted group %s"
-msgstr "Käyttäjän %1$s päivitys %2$s"
+msgstr "Ryhmä %s poistettu"
#. TRANS: Title of delete group page.
#. TRANS: Form legend for deleting a group.
#: actions/deletegroup.php:176 actions/deletegroup.php:202
-#, fuzzy
msgid "Delete group"
-msgstr "Poista käyttäjä"
+msgstr "Poista ryhmä"
#. TRANS: Warning in form for deleleting a group.
#: actions/deletegroup.php:206
@@ -1766,29 +1968,36 @@ msgid ""
"the group from the database, without a backup. Public posts to this group "
"will still appear in individual timelines."
msgstr ""
+"Oletko varma, että haluat poistaa tämän ryhmän? Kaikki tieto ryhmästä "
+"poistetaan tietokannasta, eikä varmuuskopiota tehdä. Tämän ryhmän julkiset "
+"päivitykset näkyvät edelleen käyttäjien omilla aikajanoilla."
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-#, fuzzy
-msgid "Do not delete this group"
-msgstr "Älä poista tätä päivitystä"
+msgid "Do not delete this group."
+msgstr "Älä poista tätä ryhmää."
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-#, fuzzy
-msgid "Delete this group"
-msgstr "Poista käyttäjä"
+msgid "Delete this group."
+msgstr "Poista tämä ryhmä."
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Et ole kirjautunut sisään."
@@ -1815,223 +2024,253 @@ msgstr "Oletko varma että haluat poistaa tämän päivityksen?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
-msgstr "Älä poista tätä päivitystä"
+msgid "Do not delete this notice."
+msgstr "Älä poista tätä päivitystä."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
-msgstr "Poista tämä päivitys"
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
+msgstr "Poista tämä päivitys."
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Sinä et voi poistaa käyttäjiä."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Sinä et voi poistaa käyttäjiä."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Poista käyttäjä"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Poista käyttäjä"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+"Oletko varma, että haluat poistaa tämän käyttäjän? Kaikki tieto käyttäjästä "
+"poistetaan tietokannasta, eikä varmuuskopiota tehdä."
+
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Älä poista tätä päivitystä"
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
-msgstr "Poista käyttäjä"
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "Poista tämä käyttäjä."
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Ulkoasu"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
-msgstr ""
+msgstr "Ulkoasuasetukset tälle StatusNet-sivustolle"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
#, fuzzy
msgid "Invalid logo URL."
msgstr "Koko ei kelpaa."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "Koko ei kelpaa."
-#: actions/designadminpanel.php:344
-#, fuzzy, php-format
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
+#, php-format
msgid "Theme not available: %s."
-msgstr "Pikaviestin ei ole käytettävissä."
+msgstr "Teema ei ole käytettävissä: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Vaihda väriä"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Palvelun ilmoitus"
-#: actions/designadminpanel.php:457
-#, fuzzy
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
-msgstr "Palvelun ilmoitus"
+msgstr "SSL-logo"
-#: actions/designadminpanel.php:469
-#, fuzzy
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
-msgstr "Vaihda"
+msgstr "Vaihda teema"
-#: actions/designadminpanel.php:486
-#, fuzzy
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
-msgstr "Palvelun ilmoitus"
+msgstr "Sivuston teema"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
-#, fuzzy
msgid "Theme for the site."
-msgstr "Kirjaudu ulos palvelusta"
+msgstr "Teema sivustolle."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
#, fuzzy
msgid "Custom theme"
msgstr "Palvelun ilmoitus"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
-msgstr ""
+msgstr "Voit ladata mukautetun StatusNet-teeman .ZIP-pakettina."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Vaihda tautakuva"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Tausta"
-#: actions/designadminpanel.php:522
-#, fuzzy, php-format
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
+#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
-msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s."
+msgstr "Voit ladata ryhmälle taustakuvan. Maksimikoko on %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "On"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Off"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
-#, fuzzy
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
-msgstr "Vaihda tautakuva"
+msgstr "Kytke taustakuva päälle tai pois päältä."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
-#, fuzzy
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
-msgstr "Vaihda tautakuva"
+msgstr "Taustakuvan toisto vierekkäin"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
-msgstr "Vaihda väriä"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
+msgstr "Vaihda värejä"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Sisältö"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
-#, fuzzy
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
-msgstr "Haku"
+msgstr "Sivupalkki"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Teksti"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Linkit"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
-msgstr ""
+msgstr "Lisäasetukset"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
-msgstr ""
+msgstr "Mukautettu CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Käytä oletusasetuksia"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-#, fuzzy
-msgid "Restore default designs"
-msgstr "Käytä oletusasetuksia"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
+msgstr "Palauta oletusulkonäkö."
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-#, fuzzy
-msgid "Reset back to default"
-msgstr "Käytä oletusasetuksia"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr "Palauta oletusulkoasu."
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Tallenna"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
+msgstr "Tallenna ulkoasu."
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-#, fuzzy
-msgid "Save design"
-msgstr "Ryhmän ulkoasu"
-
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Tämä päivitys ei ole suosikki!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Lisää suosikkeihin"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
-msgstr "Liitettä ei ole."
+msgid "No such document \"%s\"."
+msgstr "Dokumenttia \"%s\" ei ole."
#. TRANS: Title for "Edit application" form.
#. TRANS: Form legend.
#: actions/editapplication.php:54 lib/applicationeditform.php:129
msgid "Edit application"
-msgstr ""
+msgstr "Muokkaa sovellusta"
#. TRANS: Client error displayed trying to edit an application while not logged in.
#: actions/editapplication.php:66
@@ -2041,82 +2280,83 @@ msgstr ""
"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
-#, fuzzy
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
-msgstr "Päivitystä ei ole."
+msgstr "Sovellusta ei ole."
#. TRANS: Instructions for "Edit application" form.
#: actions/editapplication.php:167
-#, fuzzy
msgid "Use this form to edit your application."
-msgstr "Käytä tätä lomaketta muokataksesi ryhmää."
+msgstr "Käytä tätä lomaketta muokataksesi sovellustasi."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
-#, fuzzy
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
-msgstr "Sama kuin ylläoleva salasana. Pakollinen."
+msgstr "Nimi on pakollinen."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
-#, fuzzy
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
-msgstr "Koko nimi on liian pitkä (max 255 merkkiä)."
+msgstr "Nimi on liian pitkä (max 255 merkkiä)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
-#, fuzzy
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
-msgstr "Tunnus on jo käytössä. Yritä toista tunnusta."
+msgstr "Nimi on jo käytössä. Yritä jotain muuta nimeä."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
-#, fuzzy
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
-msgstr "Kuvaus"
+msgstr "Kuvaus on pakollinen."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
-msgstr ""
+msgstr "Lähteen osoite on liian pitkä."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
-#, fuzzy
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
-msgstr "Kotisivun verkko-osoite ei ole toimiva."
+msgstr "Lähde-URL ei ole oikeassa muodossa."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
-msgstr ""
+msgstr "Organisaatio on pakollinen."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
-#, fuzzy
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
-msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)."
+msgstr "Organisaation nimi on liian pitkä (max 255 merkkiä)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
-msgstr ""
+msgstr "Organisaation kotisivu on pakollinen."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
-#, fuzzy
+#: actions/editapplication.php:284
msgid "Could not update application."
-msgstr "Ei voitu päivittää ryhmää."
+msgstr "Ei voitu päivittää sovellusta."
#. TRANS: Title for form to edit a group. %s is a group nickname.
#: actions/editgroup.php:55
@@ -2125,14 +2365,17 @@ msgid "Edit %s group"
msgstr "Muokkaa ryhmää %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr ""
"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja."
@@ -2144,64 +2387,65 @@ msgstr "Käytä tätä lomaketta muokataksesi ryhmää."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Virheellinen alias: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Ei voitu päivittää ryhmää."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Ei voitu lisätä aliasta."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Asetukset tallennettu."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Profiiliasetukset"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Määritä miten saat sähköpostin palvelusta %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
-#, fuzzy
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
-msgstr "Sähköpostiosoitteet"
+msgstr "Sähköpostiosoite"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Tämän hetken vahvistettu sähköpostiosoite."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Poista"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2215,137 +2459,138 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Sähköpostiosoite, esimerkiksi \"käyttäjätunnus@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
-#, fuzzy
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Lisää"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Saapuva sähköposti"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Haluan lähettää päivityksiä sähköpostilla."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Lähetä sähköpostia tähän osoitteeseen tehdäksesi päivityksiä."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
"Tee uusi sähköpostiosoite johon lähettää päivityksiä; tämä poistaa vanhan "
"osoitteen"
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
+"Jotta voisimme lähettää päivityksiä sähköpostitse, meidän on luotava sinulle "
+"yksilöllinen sähkopostiosoite tällä palvelimella:"
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
-#, fuzzy
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Uusi"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Sähköpostiosoitteet"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Lähetä sähköpostilla tieto uusista tilaajista."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Lähetä sähköpostia, jos joku lähettää minulle yksityisviestin."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Lähetä sähköpostia, jos joku lähettää minulle \"@-vastauksen\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Salli kavereiden tönäistä minua ja lähetä sähköpostilla ilmoitus."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Julkaise MicroID sähköpostiosoitteelleni."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
-#, fuzzy
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
-msgstr "Ulkoasuasetukset tallennettu."
+msgstr "Sähköpostiasetukset tallennettu."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Sähköpostiosoitetta ei ole."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Ei voida normalisoida sähköpostiosoitetta"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Tuo ei ole kelvollinen sähköpostiosoite."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Tämä on jo sähköpostiosoitteesi."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Tämä sähköpostiosoite kuuluu jo toisella käyttäjällä."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Ei voitu asettaa vahvistuskoodia."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2355,406 +2600,490 @@ msgstr ""
"miten sitä käytetään. "
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Avoimia vahvistuksia ei ole peruutettavana."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
-#, fuzzy
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
-msgstr "Tämä on väärä pikaviestiosoite."
+msgstr "Tämä on väärä sähköpostiosoite."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
msgstr "Ei voitu poistaa sähköpostivahvistusta."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Avoimia vahvistuksia ei ole peruutettavana."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Tämä ei ole sähköpostiosoitteesi."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Saapuvan sähköpostin osoite poistettu."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Saapuvan sähköpostin osoitetta ei ole."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr "Ei voitu päivittää käyttäjätietoja."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Saapuvan sähköpostin osoite poistettu."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Uusi saapuvan sähköpostin osoite lisätty."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Tämä päivitys on jo suosikki!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
-msgstr "Poista suosikeista"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
+msgstr "Poista suosikeista."
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Suosituimmat päivitykset"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Suosituimmat päivitykset, sivu %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Suosituimmat päivitykset sivustolla juuri nyt."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Käyttäjän %s suosikkipäivitykset"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Käyttäjän %1$s suosikit palvelussa %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Esittelyssä olevat käyttäjät"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Esittelyssä olevat käyttäjät, sivu %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, fuzzy, php-format
-msgid "A selection of some great users on %s"
+msgid "A selection of some great users on %s."
msgstr "Valikoima joitakin loistavia palvelun %s käyttäjiä"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Päivitystä ei ole."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Päivitystä ei ole."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Liitettä ei ole."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Liitettä ei ole."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Odottamaton vastaus saatu!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
#, fuzzy
msgid "User being listened to does not exist."
msgstr "Käyttäjää jota seurataan ei ole olemassa."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Voit käyttää paikallista tilausta!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Sinulla ei ole valtuutusta tähän."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Ei saatu request tokenia."
-#: actions/finishremotesubscribe.php:118
-#, fuzzy
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
-msgstr "Tuntematon OMB-protokollan versio."
+msgstr "Etäpalvelu käyttää tuntematonta OMB-protokollan versiota."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
-#, fuzzy
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
-msgstr "Virhe tapahtui etäprofiilin päivittämisessä"
+msgstr "Virhe tapahtui päivitettäessä etäprofiilia."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Tiedostoa ei ole."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Tiedostoa ei voi lukea."
-#: actions/grantrole.php:62 actions/revokerole.php:62
-#, fuzzy
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
-msgstr "Koko ei kelpaa."
+msgstr "Virheellinen rooli."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Päivityksesi tähän palveluun on estetty."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Käyttäjällä ei ole profiilia."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Profiilia ei ole määritelty."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
-#, fuzzy
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Ei profiilia tuolle ID:lle."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Ryhmää ei ole määritelty."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Vain ylläpitäjä voi estää ryhmän jäseniä."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Käyttäjää ei ole estetty ryhmästä."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Käyttäjä ei kuulu tähän ryhmään."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Estä käyttäjä ryhmästä"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
"will be removed from the group, unable to post, and unable to subscribe to "
"the group in the future."
msgstr ""
+"Haluatko varmasti estää käyttäjän \"%1$s\" ryhmästä \"%2$s\"? Heidät "
+"poistetaan ryhmästä, eivät voi lähettää päivityksiä, ja eivät voi enää "
+"liittyä ryhmään."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
-msgstr "Älä estä tätä käyttäjää tästä ryhmästä"
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
+msgstr "Älä estä tätä käyttäjää tästä ryhmästä."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
-msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään."
-#: actions/groupblock.php:206
-#, fuzzy
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
-msgstr "Poista käyttäjän esto ryhmästä"
+msgstr "Tietokantavirhe estettäessä käyttäjää ryhmästä."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
#, fuzzy
msgid "No ID."
msgstr "Ei Jabber ID -osoitetta"
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr ""
"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Ryhmän ulkoasu"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Ei voitu päivittää sinun sivusi ulkoasua."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Ulkoasun tallennus epäonnistui."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Ulkoasuasetukset tallennettu."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Ryhmän logo"
-#: actions/grouplogo.php:153
-#, fuzzy, php-format
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
+#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Lataa"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Rajaa"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Valitse neliön muotoinen alue kuvasta logokuvaksi"
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo päivitetty."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Logon päivittäminen epäonnistui."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Ryhmän %s jäsenet"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Ryhmän %s jäsenet"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Lista ryhmän käyttäjistä."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Ylläpito"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
-msgstr ""
+msgstr "Estä"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
-msgstr ""
+msgstr "Estä tämä käyttäjä"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Tee tästä käyttäjästä ylläpitäjä"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
-msgstr ""
+msgstr "Tee ylläpitäjäksi"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
-msgstr ""
+msgstr "Tee tästä käyttäjästä ylläpitäjä"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Ryhmän %1$s käyttäjien päivitykset palvelussa %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Ryhmät"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Ryhmät, sivu %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Luo uusi ryhmä"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, fuzzy, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2764,23 +3093,31 @@ msgstr ""
"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää "
"olla 3 tai useamman merkin pituisia."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Ryhmähaku"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Ei tuloksia"
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2788,139 +3125,149 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Vain ylläpitäjä voi poistaa eston ryhmän jäseniltä."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Käyttäjää ei ole estetty ryhmästä."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Tapahtui virhe, kun estoa poistettiin."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Profiilikuva-asetukset"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Voit lähettää ja vastaanottaa päivityksiä Jabber/GTalk-[pikaviestintä](%%doc."
"im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. "
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "Pikaviestin ei ole käytettävissä."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Sähköpostiosoitteet"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Tämän hetken vahvistettu Jabber/GTalk -osoite."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Odotetaan vahvistusta tälle osoitteelle. Katso Jabber/GTalk "
"käyttäjätililtäsi viesti, jossa on lisäohjeet. (Lisäsitkö %s:n "
"ystävälistaasi?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber ja GTalk -osoite, esimerkiksi \"käyttäjätunnus@example.org\". "
"Varmista että olet lisännyt %s kaverilistaasi pikaviestiohjelmassasi tai "
"GTalkissa."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Asetukset tallennettu."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Lähetä minulle päivityksiä Jabberilla/GTalkilla."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Lähetä Jabberilla/GTalkilla sellaistenkin ihmisten vastaukset, joita en ole "
"tilannut. "
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Asetukset tallennettu."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Ei Jabber ID -osoitetta"
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Ei voida normalisoida Jabber ID -tunnusta"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Tuo ei ole kelvollinen Jabber ID."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Tämä on jo Jabber ID -tunnuksesi."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID kuuluu jo toiselle käyttäjälle."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2929,55 +3276,60 @@ msgstr ""
"Vahvistuskoodi lähetettiin antamaasi pikaviestinosoitteeseen. Sinun täytyy "
"antaa osoitteelle %s oikeus lähettää viestejä sinulle."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Tämä on väärä pikaviestiosoite."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
#, fuzzy
-msgid "Couldn't delete IM confirmation."
+msgid "Could not delete IM confirmation."
msgstr "Ei voitu poistaa sähköpostivahvistusta."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Varmistuskoodia ei ole annettu."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Tämä ei ole Jabber ID-tunnuksesi."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Saapuvan sähköpostin osoite poistettu."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, fuzzy, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Saapuneet viestit käyttäjälle %s"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Saapuneet viestit käyttäjälle %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "Tämä on postilaatikkosi, jossa on sinulle saapuneet yksityisviestit."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Kutsut ovat pois käytöstä."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2985,19 +3337,19 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Sähköpostiosoite %s ei kelpaa"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Kutsu(t) lähetettiin"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Kutsu uusia käyttäjiä"
@@ -3005,7 +3357,7 @@ msgstr "Kutsu uusia käyttäjiä"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3014,7 +3366,7 @@ msgstr[1] "Olet jo tilannut seuraavien käyttäjien päivitykset:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3023,7 +3375,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3038,7 +3390,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3047,7 +3399,7 @@ msgstr[1] "Kutsu(t) lähetettiin seuraaville henkilöille:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3056,7 +3408,7 @@ msgstr ""
"kutsun ja rekisteröityy palveluun. Kiitoksia yhteisön kasvattamisesta!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3064,27 +3416,28 @@ msgstr ""
"tätä palvelua."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Sähköpostiosoitteet"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Kutsuttavien kavereiden osoitteet (yksi per rivi)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Henkilökohtainen viesti"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Voit myös lisätä oman viestisi kutsuun"
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
#, fuzzy
msgctxt "BUTTON"
msgid "Send"
@@ -3093,7 +3446,7 @@ msgstr "Lähetä"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s on kutsunut sinut liittymään palveluun %2$s"
@@ -3103,7 +3456,7 @@ msgstr "%1$s on kutsunut sinut liittymään palveluun %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3159,171 +3512,187 @@ msgstr ""
"\n"
"Terveisin, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Sinun pitää olla kirjautunut sisään, jos haluat liittyä ryhmään."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%s liittyi ryhmään %s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Sinä et kuulu tähän ryhmään."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "Käyttäjän %1$s päivitys %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
#, fuzzy
msgid "Private"
msgstr "Yksityisyys"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
-msgstr ""
+msgstr "Kaikki oikeudet pidätetään"
+
+#: actions/licenseadminpanel.php:240
+msgid "Creative Commons"
+msgstr "Creative Commons"
+
+#: actions/licenseadminpanel.php:245
+msgid "Type"
+msgstr "Tyyppi"
#: actions/licenseadminpanel.php:247
-msgid "Creative Commons"
-msgstr ""
-
-#: actions/licenseadminpanel.php:252
-msgid "Type"
-msgstr ""
-
-#: actions/licenseadminpanel.php:254
msgid "Select license"
-msgstr ""
+msgstr "Valitse lisenssi"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Tallenna"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Olet jo kirjautunut sisään."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Väärä käyttäjätunnus tai salasana"
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
#, fuzzy
msgid "Error setting user. You are probably not authorized."
msgstr "Sinulla ei ole valtuutusta tähän."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Kirjaudu sisään"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Kirjaudu sisään"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Muista minut"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Kirjaudu sisään automaattisesti tulevaisuudessa; ei tietokoneille joilla "
"useampi käyttäjä!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Oletko hukannut tai unohtanut salasanasi?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3331,12 +3700,12 @@ msgstr ""
"Syötä turvallisuussyistä käyttäjätunnuksesi ja salasanasi uudelleen ennen "
"asetuksiesi muuttamista."
-#: actions/login.php:292
+#: actions/login.php:281
#, fuzzy
msgid "Login with your username and password."
msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla"
-#: actions/login.php:295
+#: actions/login.php:284
#, fuzzy, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3374,21 +3743,24 @@ msgid "New application"
msgstr "Päivitystä ei ole."
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
#, fuzzy
msgid "You must be logged in to register an application."
msgstr "Sinun pitää olla kirjautunut sisään jotta voit luoda ryhmän."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
#, fuzzy
msgid "Use this form to register a new application."
msgstr "Käytä tätä lomaketta luodaksesi ryhmän."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr ""
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
#, fuzzy
msgid "Could not create application."
msgstr "Ei voitu lisätä aliasta."
@@ -3398,11 +3770,23 @@ msgstr "Ei voitu lisätä aliasta."
msgid "New group"
msgstr "Uusi ryhmä"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Sinä et kuulu tähän ryhmään."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Käytä tätä lomaketta luodaksesi ryhmän."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Alias ei voi olla sama kuin ryhmätunnus."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Uusi viesti"
@@ -3452,7 +3836,9 @@ msgstr "Uusi päivitys"
msgid "Notice posted"
msgstr "Päivitys lähetetty"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3461,16 +3847,21 @@ msgstr ""
"Hae päivityksiä palvelun %%site.name%% sisällöistä. Erota hakutermit "
"välilyönnillä; hakutermien pitää olla 3 tai useamman merkin pituisia."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Tekstihaku"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Viesti käyttäjältä %1$s, %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3479,7 +3870,9 @@ msgstr ""
"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action."
"newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, fuzzy, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3488,14 +3881,17 @@ msgstr ""
"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action."
"newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, fuzzy, php-format
msgid "Updates with \"%s\""
msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!"
#: actions/nudge.php:85
@@ -3540,31 +3936,31 @@ msgid "You have not registered any applications yet."
msgstr ""
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr ""
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
#, fuzzy
msgid "You are not a user of that application."
msgstr "Sinä et kuulu tähän ryhmään."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Käytä tätä lomaketta muokataksesi ryhmää."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3572,20 +3968,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "API-metodia ei löytynyt."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "API-metodia ei löytynyt."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Käyttäjällä ei ole profiilia."
@@ -3595,6 +4001,16 @@ msgstr "Käyttäjällä ei ole profiilia."
msgid "%1$s's status on %2$s"
msgstr "Käyttäjän %1$s päivitys %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Vastaanottajaa ei löytynyt."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3608,16 +4024,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Tuo ei ole tuettu tietomuoto."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Etsi ihmisiä"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Etsi Päivityksistä"
@@ -3631,73 +4048,84 @@ msgid "Manage various other options."
msgstr "Hallinnoi muita asetuksia."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr ""
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Lyhennä URL-osoitteita"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Käytettävä automaattinen lyhennyspalvelu."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Näytä tai piillota profiilin ulkoasu."
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Näytä tai piillota profiilin ulkoasu."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "URL-lyhennyspalvelun nimi on liian pitkä (max 50 merkkiä)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
#, fuzzy
msgid "No user ID specified."
msgstr "Ryhmää ei ole määritelty."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
#, fuzzy
msgid "No login token specified."
msgstr "Profiilia ei ole määritelty."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Ei valtuutuspyyntöä!"
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
#, fuzzy
msgid "Invalid login token specified."
msgstr "Päivityksen sisältö ei kelpaa"
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
#, fuzzy
msgid "Login token expired."
msgstr "Kirjaudu sisään"
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, fuzzy, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Käyttäjän %s lähetetyt viestit"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Käyttäjän %s lähetetyt viestit"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "Tämä on postilaatikkosi, jossa on lähettämäsi yksityisviestit."
@@ -3709,7 +4137,8 @@ msgstr "Vaihda salasana"
msgid "Change your password."
msgstr "Vaihda salasanasi."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Salasanan vaihto"
@@ -3717,48 +4146,50 @@ msgstr "Salasanan vaihto"
msgid "Old password"
msgstr "Vanha salasana"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Uusi salasana"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 tai useampia merkkejä"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Vahvista"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Sama kuin ylläoleva salasana"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Vaihda"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Salasanassa pitää olla 6 tai useampia merkkejä."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Salasanat eivät täsmää."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Väärä vanha salasana"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Uutta salasanaa ei voida tallentaa."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Salasana tallennettu."
@@ -3979,10 +4410,9 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
-#, fuzzy
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
-msgstr "Liitettä ei ole."
+msgstr "Liitteet"
#. TRANS: Tooltip for field label in Paths admin panel.
#: actions/pathsadminpanel.php:427
@@ -4056,7 +4486,9 @@ msgstr ""
msgid "Save paths"
msgstr "Palvelun ilmoitus"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4066,7 +4498,8 @@ msgstr ""
"kiinnostuksen kohteista. Erota hakutermit välilyönnillä; hakutermien pitää "
"olla 3 tai useamman merkin pituisia."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Etsi ihmisiä"
@@ -4090,12 +4523,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profiiliasetukset"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4103,12 +4536,12 @@ msgstr ""
"enemmän."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profiilitieto"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
@@ -4117,21 +4550,22 @@ msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Koko nimi"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Kotisivu"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite."
@@ -4139,7 +4573,7 @@ msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4147,75 +4581,82 @@ msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä"
msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Kuvaile itseäsi ja kiinnostuksen kohteitasi"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Tietoja"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Kotipaikka"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
#, fuzzy
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Tagit"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin "
"ääkköset, numeroita, -, ., ja _), pilkulla tai välilyönnillä erotettuna"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Kieli"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Ensisijainen kieli"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Aikavyöhyke"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Millä aikavyöhykkeellä olet tavallisesti?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin "
"ihmiskäyttäjille)"
@@ -4223,7 +4664,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4231,51 +4672,54 @@ msgstr[0] "kuvaus on liian pitkä (max %d merkkiä)."
msgstr[1] "kuvaus on liian pitkä (max %d merkkiä)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Aikavyöhykettä ei ole valittu."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Kieli on liian pitkä (enintään 50 merkkiä)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Virheellinen tagi: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
+#: actions/profilesettings.php:405
#, fuzzy
-msgid "Couldn't save location prefs."
+msgid "Could not save location prefs."
msgstr "Tageja ei voitu tallentaa."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Ei voitu tallentaa profiilia."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "Tageja ei voitu tallentaa."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Tagien tallennus epäonnistui."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Asetukset tallennettu."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Luo uusi ryhmä"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4344,6 +4788,12 @@ msgstr ""
"Tämä on %%site.name%%, [mikroblogaus](http://en.wikipedia.org/wiki/Micro-"
"blogging)palvelu "
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s päivitykset kaikilta!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4388,35 +4838,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Tagipilvi"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Olet jo kirjautunut sisään!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Palautuskoodia ei ole."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Tuo ei ole palautuskoodi."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Tuntemattoman käyttäjän palautuskoodi"
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Virhe vahvistuskoodin kanssa."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Vahvistuskoodi on liian vanha. Aloita uudelleen."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Ei voitu päivittää käyttäjälle vahvistettua sähköpostiosoitetta."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
#, fuzzy
msgid ""
"If you have forgotten or lost your password, you can get a new one sent to "
@@ -4425,69 +4883,101 @@ msgstr ""
"Ohjeet salasanan palauttamiseksi on lähetetty sähköpostiisiosoitteeseen, "
"joka on rekisteröity käyttäjätunnuksellesi."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Sinut on tunnistettu. Syötä uusi salasana alapuolelle. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Sinut on tunnistettu. Syötä uusi salasana alapuolelle."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Salasanan palautus"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Käyttäjätunnus tai sähköpostiosoite"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"Käyttäjätunnuksesi tässä palvelussa tai rekisteröity sähköpostiosoitteesi."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Palauta"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Palauta"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Vaihda salasana"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Salasanan palautus"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Salasanan palautuspyyntö lähetetty."
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Salasana tallennettu."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Tuntematon toiminto"
-#: actions/recoverpassword.php:236
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
#, fuzzy
-msgid "6 or more characters, and don't forget it!"
+msgid "6 or more characters, and do not forget it!"
msgstr "6 tai useampia merkkejä äläkä unohda mitä kirjoitit!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Vaihda"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Syötä käyttäjätunnus tai sähköpostiosoite"
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Käyttäjää tuolla sähköpostilla tai käyttäjätunnuksella ei ole."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Rekisteröityä sähköpostiosoitetta ei ole tälle käyttäjälle."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Virhe tapahtui osoitevahvistuksen tallentamisessa"
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4495,123 +4985,118 @@ msgstr ""
"Ohjeet salasanan palauttamiseksi on lähetetty sähköpostiisiosoitteeseen, "
"joka on rekisteröity käyttäjätunnuksellesi."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Odottamaton salasanan uudelleenasetus."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Salasanassa pitää olla 6 tai useampia merkkejä."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Salasana ja salasanan vahvistus eivät täsmää."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Virhe tapahtui käyttäjän asettamisessa."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr ""
"Uusi salasana tallennettiin onnistuneesti. Olet nyt kirjautunut sisään."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Valitettavasti vain kutsutut ihmiset voivat rekisteröityä."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Virheellinen kutsukoodin."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Rekisteröityminen onnistui"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Rekisteröidy"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Rekisteröityminen ei ole sallittu."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Sähköpostiosoite on jo käytössä."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Käyttäjätunnus tai salasana ei kelpaa."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai "
-"välilyöntejä. Pakollinen."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 tai useampia merkkejä. Pakollinen."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Sama kuin ylläoleva salasana. Pakollinen."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Sähköposti"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Käytetään ainoastaan päivityksien lähettämiseen, ilmoitusasioihin ja "
"salasanan uudelleen käyttöönottoon."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Pitempi nimi, mieluiten oikea nimesi"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite."
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, fuzzy, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4620,7 +5105,7 @@ msgstr ""
"poislukien yksityinen tieto: salasana, sähköpostiosoite, IM-osoite, "
"puhelinnumero."
-#: actions/register.php:589
+#: actions/register.php:573
#, fuzzy, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4653,7 +5138,7 @@ msgstr ""
"\n"
"Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4661,7 +5146,7 @@ msgstr ""
"(Saat pian sähköpostiisi viestin, jonka ohjeita seuraamalla voit vahvistaa "
"sähköpostiosoitteesi.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4673,87 +5158,94 @@ msgstr ""
"jo käyttäjätunnus jossain [yhteensopivassa mikroblogauspalvelussa](%%doc."
"openmublog%%), syötä profiilisi URL-osoite alla olevaan kenttään."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Etätilaus"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Tilaa tämä etäkäyttäjä"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Käyttäjätunnus"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Käyttäjän, jota haluat seurata, käyttäjätunnus"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profiilin URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Tilaa"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Profiilin URL-osoite '%s' ei kelpaa (virheellinen muoto)."
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei "
"löytynyt)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr ""
"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset."
-#: actions/remotesubscribe.php:183
+#: actions/remotesubscribe.php:182
#, fuzzy
-msgid "Couldn’t get a request token."
+msgid "Could not get a request token."
msgstr "Ei saatu request tokenia."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
#, fuzzy
msgid "Only logged-in users can repeat notices."
msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
#, fuzzy
msgid "No notice specified."
msgstr "Profiilia ei ole määritelty."
-#: actions/repeat.php:76
+#: actions/repeat.php:75
#, fuzzy
-msgid "You can't repeat your own notice."
+msgid "You cannot repeat your own notice."
msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Sinä kuulut jo tähän ryhmään."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
#, fuzzy
msgid "Repeated"
msgstr "Luotu"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
#, fuzzy
msgid "Repeated!"
msgstr "Luotu"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Vastaukset käyttäjälle %s"
@@ -4803,11 +5295,102 @@ msgstr ""
"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action."
"newnotice%%%%?status_textarea=%s)!"
-#: actions/repliesrss.php:72
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
+msgid "Replies to %1$s on %2$s."
msgstr "Viesti käyttäjälle %1$s, %2$s"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Lataa"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Kaikki jäsenet"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Lataa"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Päivityksesi tähän palveluun on estetty."
@@ -4817,7 +5400,7 @@ msgstr "Päivityksesi tähän palveluun on estetty."
msgid "User doesn't have this role."
msgstr "Käyttäjälle ei löydy profiilia"
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
#, fuzzy
msgid "StatusNet"
msgstr "Päivitys poistettu."
@@ -4863,137 +5446,151 @@ msgstr ""
msgid "Save site settings"
msgstr "Profiilikuva-asetukset"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
#, fuzzy
msgid "You must be logged in to view an application."
msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
#, fuzzy
msgid "Application profile"
msgstr "Päivitykselle ei ole profiilia"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr ""
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
#, fuzzy
msgid "Name"
msgstr "Tunnus"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
#, fuzzy
msgid "Organization"
msgstr "Sivutus"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Kuvaus"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Tilastot"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr ""
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Poista"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr ""
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr ""
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Oletko varma että haluat poistaa tämän päivityksen?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Käyttäjän %s suosikkipäivitykset"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Ei saatu haettua suosikkipäivityksiä."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Käyttäjän %s kavereiden syöte (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -5001,7 +5598,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr ""
@@ -5019,83 +5617,90 @@ msgid "%1$s group, page %2$d"
msgstr "Ryhmät, sivu %d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Ryhmän profiili"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Huomaa"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Aliakset"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Ryhmän toiminnot"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Syöte ryhmän %s päivityksille (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Syöte ryhmän %s päivityksille (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Käyttäjän %s lähetetyt viestit"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Jäsenet"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
#, fuzzy
msgid "(None)"
msgstr "(Tyhjä)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Kaikki jäsenet"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Luotu"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5105,7 +5710,7 @@ msgstr "Jäsenet"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5118,7 +5723,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, fuzzy, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5130,30 +5735,30 @@ msgstr ""
"(http://en.wikipedia.org/wiki/Micro-blogging)"
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Ylläpitäjät"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Tuota viestiä ei ole."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Vain lähettäjä ja vastaanottaja voivat lukea tämän viestin."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Viesti käyttäjälle %1$s, %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Viesti käyttäjältä %1$s, %2$s"
@@ -5169,7 +5774,7 @@ msgid "%1$s tagged %2$s"
msgstr "Ryhmät, sivu %d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5419,76 +6024,77 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
#, fuzzy
-msgid "Save site notice"
+msgid "Save site notice."
msgstr "Palvelun ilmoitus"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Profiilikuva-asetukset"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
"Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS ei ole käytettävissä."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Sähköpostiosoitteet"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Tämän hetken vahvistettu SMS puhelinnumero."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Odotetaan vahvistusta tälle puhelinnumerolle."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Vahvistuskoodi"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Syötä koodi jonka sait puhelimeesi."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
#, fuzzy
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Vahvista"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Puhelinnumeroa ei ole."
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Puhelinnumero, ei välimerkkejä tai välilyöntejä, suuntanumerollinen"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Asetukset tallennettu."
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5497,33 +6103,33 @@ msgstr ""
"tästä matkapuhelinoperaattoriltani."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
#, fuzzy
msgid "SMS preferences saved."
msgstr "Asetukset tallennettu."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Puhelinnumeroa ei ole."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Operaattoria ei ole valittu."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Tämä on jo puhelinnumerosi."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Tämä puhelinnumero kuuluu jo toiselle käyttäjälle."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5532,40 +6138,40 @@ msgstr ""
"vahvistuskoodisi ja ohjeet miten sitä käytetään."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Tämä on väärä vahvistukoodi."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS vahvistus"
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Tämä ei ole puhelinnumerosi."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
#, fuzzy
msgid "The SMS phone number was removed."
msgstr "SMS puhelinnumero"
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Matkapuhelinoperaattori"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Valitse operaattori"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5576,8 +6182,9 @@ msgstr ""
"sähköpostia meille osoitteeseen %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Koodia ei ole syötetty."
#. TRANS: Menu item for site administration
@@ -5650,16 +6257,20 @@ msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
msgid "Could not save subscription."
msgstr "Tilausta ei onnistuttu tallentamaan."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Tilattu"
@@ -5691,7 +6302,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Nämä ihmiset seuraavat käyttäjän %s päivityksiä."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5699,7 +6310,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5709,7 +6320,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5740,7 +6351,7 @@ msgstr "Käyttäjä %s seuraa näiden ihmisten päivityksiä."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5754,23 +6365,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s ei seuraa ketään käyttäjää."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Syöte ryhmän %s päivityksille (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5804,12 +6416,15 @@ msgstr "Ei id parametria."
msgid "Tag %s"
msgstr "Tagi %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Käyttäjän profiili"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Kuva"
@@ -5825,6 +6440,11 @@ msgstr ""
"Käyttäjän tagit (kirjaimet, numerot, -, ., ja _), pilkulla tai välilyönnillä "
"erotettuna"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Virheellinen tagi: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5832,10 +6452,6 @@ msgstr ""
"Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun "
"päivityksiäsi."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Tagien tallennus epäonnistui."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5846,6 +6462,7 @@ msgstr ""
msgid "No such tag."
msgstr "Tuota tagia ei ole."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Älä estä tätä käyttäjää"
@@ -5868,7 +6485,7 @@ msgstr "Ei profiilia tuolle ID:lle."
msgid "Unsubscribed"
msgstr "Tilaus lopetettu"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5900,12 +6517,11 @@ msgstr ""
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profiili"
@@ -5969,57 +6585,71 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Profiilikuva-asetukset"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Valtuuta tilaus"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
#, 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”."
+"click \"Reject\"."
msgstr ""
"Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän "
"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, "
"paina \"Peruuta\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Lisenssi"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Hyväksy"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Tilaa tämä käyttäjä"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Hylkää"
-#: actions/userauthorization.php:220
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
#, fuzzy
-msgid "Reject this subscription"
+msgid "Reject this subscription."
msgstr "Käyttäjän %s tilaukset"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Ei valtuutuspyyntöä!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Tilaus sallittu"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
#, fuzzy
msgid ""
"The subscription has been authorized, but no callback URL was passed. Check "
@@ -6030,11 +6660,12 @@ msgstr ""
"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. "
"Tilauskoodisi on:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Tilaus hylätty"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
#, fuzzy
msgid ""
"The subscription has been rejected, but no callback URL was passed. Check "
@@ -6044,55 +6675,78 @@ msgstr ""
"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole "
"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan."
-#: actions/userauthorization.php:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+msgid "Listenee URI \"%s\" is too long."
msgstr ""
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+msgid "Listenee URI \"%s\" is a local user."
msgstr ""
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+msgid "Profile URL \"%s\" is for a local user."
msgstr ""
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
msgstr ""
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "Kotisivun verkko-osoite ei ole toimiva."
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Kuvan URL-osoitetta '%s' ei voi avata."
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Kuvan '%s' tyyppi on väärä"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
#, fuzzy
msgid "Profile design"
msgstr "Profiiliasetukset"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -6122,7 +6776,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!"
@@ -6171,7 +6825,7 @@ msgid "Plugins"
msgstr ""
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
#, fuzzy
msgid "Version"
msgstr "Omat"
@@ -6181,32 +6835,32 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Lisää suosikiksi"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6219,7 +6873,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6228,7 +6882,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6236,7 +6890,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
#, fuzzy
msgid "Invalid filename."
msgstr "Koko ei kelpaa."
@@ -6299,7 +6953,7 @@ msgid "Could not create login token for %s"
msgstr "Ei voitu lisätä aliasta."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6327,24 +6981,24 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Virhe tapahtui profiilikuvan lisäämisessä"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Ongelma päivityksen tallentamisessa."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6352,7 +7006,7 @@ msgstr ""
"päivityksien lähettämista muutaman minuutin päästä."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6361,43 +7015,43 @@ msgstr ""
"päivityksien lähettämista muutaman minuutin päästä."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Päivityksesi tähän palveluun on estetty."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Ongelma päivityksen tallentamisessa."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
#, fuzzy
msgid "Problem saving group inbox."
msgstr "Ongelma päivityksen tallentamisessa."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Tilausta ei onnistuttu tallentamaan."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6405,14 +7059,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6486,36 +7140,57 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Viesti käyttäjälle %1$s, %2$s"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Ryhmän luonti ei onnistunut."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Ryhmän luonti ei onnistunut."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Ryhmän jäsenyystietoja ei voitu asettaa."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
#, fuzzy
msgid "Could not save local group info."
msgstr "Tilausta ei onnistuttu tallentamaan."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Sinä et voi poistaa käyttäjiä."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6553,152 +7228,154 @@ msgid "Other"
msgstr "Muut"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, fuzzy, php-format
msgid "%1$s - %2$s"
msgstr "%1$s (%2$s)"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Nimetön sivu"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Ensisijainen sivunavigointi"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
#, fuzzy
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Henkilökohtainen profiili ja kavereiden aikajana"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
#, fuzzy
msgctxt "MENU"
msgid "Personal"
msgstr "Omat"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Vaihda salasanasi"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Käyttäjätili"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
#, fuzzy
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Ei voitu uudelleenohjata palvelimelle: %s"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Yhdistä"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
#, fuzzy
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Ensisijainen sivunavigointi"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
#, fuzzy
msgctxt "MENU"
msgid "Admin"
msgstr "Ylläpito"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, fuzzy, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
#, fuzzy
msgctxt "MENU"
msgid "Invite"
msgstr "Kutsu"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Kirjaudu sisään"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Kirjaudu ulos"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Luo uusi ryhmä"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
#, fuzzy
msgctxt "MENU"
msgid "Register"
msgstr "Rekisteröidy"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Kirjaudu sisään"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
#, fuzzy
msgctxt "MENU"
msgid "Login"
msgstr "Kirjaudu sisään"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Ohjeet"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
-#, fuzzy
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
-msgstr "Ohjeet"
+msgstr "Ohje"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Hae lisää ryhmiä"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
#, fuzzy
msgctxt "MENU"
msgid "Search"
@@ -6706,69 +7383,69 @@ msgstr "Haku"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Palvelun ilmoitus"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Paikalliset näkymät"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Sivuilmoitus"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Toissijainen sivunavigointi"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Ohjeet"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Tietoa"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "UKK"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr ""
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Yksityisyys"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Lähdekoodi"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Ota yhteyttä"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
#, fuzzy
msgid "Badge"
msgstr "Tönäise"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet-ohjelmiston lisenssi"
@@ -6776,7 +7453,7 @@ msgstr "StatusNet-ohjelmiston lisenssi"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, fuzzy, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6786,7 +7463,7 @@ msgstr ""
"site.broughtbyurl%%). "
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** on mikroblogipalvelu."
@@ -6795,7 +7472,7 @@ msgstr "**%%site.name%%** on mikroblogipalvelu."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6807,51 +7484,51 @@ msgstr ""
"www.fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
#, fuzzy
msgid "Site content license"
msgstr "StatusNet-ohjelmiston lisenssi"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Sivutus"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Myöhemmin"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Aiemmin"
@@ -6860,10 +7537,80 @@ msgstr "Aiemmin"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Tunnistamaton tiedoston tyyppi"
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Kuva"
+msgid "Cannot force remote user to subscribe."
+msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata"
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Tunnistamaton tiedoston tyyppi"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Sinä kuulut jo tähän ryhmään."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Hae päivityksien sisällöstä"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Käyttäjää ei ole."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s (%2$s)"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6945,7 +7692,7 @@ msgid "User configuration"
msgstr "SMS vahvistus"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Käyttäjä"
@@ -6994,19 +7741,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -7029,29 +7780,33 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Viestin tallennus ei onnistunut."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
#, fuzzy
msgid "Database error inserting OAuth application user."
msgstr "Tietokantavirhe tallennettaessa risutagiä: %s"
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Tietokantavirhe tallennettaessa risutagiä: %s"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr ""
@@ -7166,18 +7921,24 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Poista"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Älä poista tätä päivitystä"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
#, fuzzy
msgid "Author"
msgstr "Atom"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Esikatselu"
@@ -7209,6 +7970,11 @@ msgstr "Salasanan vaihto"
msgid "Block"
msgstr "Estä"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Estä tämä käyttäjä"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7322,7 +8088,7 @@ msgstr "Koko nimi: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Kotipaikka: %s"
@@ -7330,7 +8096,7 @@ msgstr "Kotipaikka: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Kotisivu: %s"
@@ -7569,26 +8335,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Varmistuskoodia ei ole annettu."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Kutsu(t) lähetettiin seuraaville henkilöille:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
#, fuzzy
msgid "Go to the installer."
msgstr "Kirjaudu sisään palveluun"
@@ -7633,15 +8399,20 @@ msgstr ""
msgid "Database error"
msgstr "Tietokantavirhe"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Poista käyttäjä"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
#, fuzzy
msgid "Upload file"
msgstr "Lataa"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
#, fuzzy
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
@@ -7661,12 +8432,39 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Off"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Vaihda väriä"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Käytä oletusasetuksia"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Vaihda"
+msgid "Restore default designs"
+msgstr "Käytä oletusasetuksia"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+#, fuzzy
+msgid "Reset back to default"
+msgstr "Käytä oletusasetuksia"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+#, fuzzy
+msgid "Save design"
+msgstr "Ryhmän ulkoasu"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Ei voitu päivittää sinun sivusi ulkoasua."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
@@ -7674,14 +8472,38 @@ msgstr "Vaihda"
msgid "Design defaults restored."
msgstr "Ulkoasuasetukset tallennettu."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Käytä tätä lomaketta muokataksesi ryhmää."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Poista tämä päivitys suosikeista"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Poista suosikeista"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Merkitse päivitys suosikkeihin"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Lisää suosikiksi"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7698,6 +8520,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Kaikki jäsenet"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7733,30 +8568,30 @@ msgstr "Mene"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
"1-64 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai "
"välilyöntejä"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
#, fuzzy
msgid "Describe the group or topic"
msgstr "Kuvaile ryhmää tai aihetta 140 merkillä"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä"
msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
@@ -7764,7 +8599,7 @@ msgstr ""
"Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa"
"\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7869,40 +8704,41 @@ msgstr "Tagit ryhmän %s päivityksissä"
msgid "This page is not available in a media type you accept"
msgstr "Tämä sivu ei ole saatavilla sinulle sopivassa mediatyypissä."
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Kuvatiedoston formaattia ei ole tuettu."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, fuzzy, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Voit ladata ryhmälle logon."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Osittain ladattu palvelimelle."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Tiedoston lähetyksessä tapahtui järjestelmävirhe."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Tuo ei ole kelvollinen kuva tai tiedosto on rikkoutunut."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Tiedosto hävisi."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Tunnistamaton tiedoston tyyppi"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7910,7 +8746,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7918,7 +8754,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7939,23 +8775,25 @@ msgstr ""
msgid "Leave"
msgstr "Eroa"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Kirjaudu sisään käyttäjätunnuksella ja salasanalla"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Luo uusi käyttäjätili"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Sähköpostiosoitteen vahvistus"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7974,14 +8812,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7993,7 +8831,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -8020,14 +8858,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Kotipaikka: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s"
@@ -8035,7 +8873,7 @@ msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8058,34 +8896,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s päivitys"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
-msgstr "SMS vahvistus"
+msgstr "SMS-vahvistus"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, fuzzy, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "Odotetaan vahvistusta tälle puhelinnumerolle."
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "%s tönäisi sinua"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8103,7 +8941,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Uusi yksityisviesti käyttäjältä %s"
@@ -8112,7 +8950,7 @@ msgstr "Uusi yksityisviesti käyttäjältä %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8133,7 +8971,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi."
@@ -8143,7 +8981,7 @@ msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi."
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8165,7 +9003,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8175,7 +9013,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr ""
@@ -8186,7 +9024,7 @@ msgstr ""
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8213,21 +9051,16 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-#, fuzzy
-msgid "from"
-msgstr " lähteestä "
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Ei voitu lukea viestiä."
@@ -8254,38 +9087,6 @@ msgstr "Kuvatiedoston formaattia ei ole tuettu."
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8306,7 +9107,7 @@ msgstr "Ei voitu poistaa suosikkia."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8315,7 +9116,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8345,25 +9146,34 @@ msgid "Available characters"
msgstr "Sallitut merkit"
#: lib/messageform.php:185 lib/noticeform.php:237
-#, fuzzy
msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Lähetä"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Viesti"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+#, fuzzy
+msgid "from"
+msgstr " lähteestä "
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Käyttäjätunnuksessa voi olla ainoastaan pieniä kirjaimia ja numeroita ilman "
"välilyöntiä."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8379,11 +9189,11 @@ msgstr "Lähetä päivitys"
msgid "What's up, %s?"
msgstr "Mitä teet juuri nyt, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr ""
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr ""
@@ -8404,58 +9214,62 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
#, fuzzy
msgid "N"
msgstr "Ei"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
#, fuzzy
msgid "in context"
msgstr "Ei sisältöä!"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
#, fuzzy
msgid "Repeated by"
msgstr "Luotu"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Vastaa tähän päivitykseen"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Vastaus"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Poista tämä päivitys"
+
+#: lib/noticelist.php:691
#, fuzzy
msgid "Notice repeated"
msgstr "Päivitys on poistettu."
@@ -8493,79 +9307,115 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "Ei voitu lisätä uutta tilausta."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Omat"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Vastaukset"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profiili"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Suosikit"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Saapuneet"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Sinulle saapuneet viestit"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Lähetetyt"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Lähettämäsi viestit"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Tagit käyttäjän %s päivityksissä"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
#, fuzzy
msgid "Unknown"
msgstr "Tuntematon toiminto"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Tilaukset"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Kaikki tilaukset"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Tilaajat"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Kaikki tilaajat"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
#, fuzzy
msgid "User ID"
msgstr "Käyttäjä"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Käyttäjänä alkaen"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Ryhmät"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Kaikki ryhmät"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8615,7 +9465,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "API-metodia ei löytynyt."
@@ -8712,6 +9562,10 @@ msgstr "Kutsu"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Tilaa tämä käyttäjä"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8826,68 +9680,85 @@ msgstr "Peruuta tilaus"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Käyttäjällä ei ole profiilia."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
#, fuzzy
msgid "Edit Avatar"
msgstr "Kuva"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Käyttäjän toiminnot"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
#, fuzzy
msgid "Edit profile settings"
msgstr "Profiiliasetukset"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr ""
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Lähetä suora viesti tälle käyttäjälle"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Viesti"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr ""
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
#, fuzzy
msgid "User role"
msgstr "Käyttäjän profiili"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
#, fuzzy
msgctxt "role"
msgid "Administrator"
msgstr "Ylläpitäjät"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr ""
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Et ole kirjautunut sisään."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "muutama sekunti sitten"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "noin minuutti sitten"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8895,12 +9766,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "noin tunti sitten"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8908,12 +9779,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "noin päivä sitten"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8921,12 +9792,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "noin kuukausi sitten"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8934,18 +9805,13 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "noin vuosi sitten"
-#: lib/webcolor.php:80
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "Kotisivun verkko-osoite ei ole toimiva."
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "Kotisivun verkko-osoite ei ole toimiva."
@@ -8966,32 +9832,18 @@ msgstr[0] "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d"
msgstr[1] "Viesti oli liian pitkä - maksimikoko on 140 merkkiä, lähetit %d"
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Koko ei kelpaa."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Ryhmää ei ole määritelty."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po
index 32c774597d..1efde04401 100644
--- a/locale/fr/LC_MESSAGES/statusnet.po
+++ b/locale/fr/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to French (Français)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Crochet.david
@@ -21,17 +21,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:42+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:39+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -86,8 +86,9 @@ msgid "Save access settings"
msgstr "Sauvegarder les paramètres d’accès"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -97,13 +98,13 @@ msgstr "Sauvegarder les paramètres d’accès"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Enregistrer"
@@ -111,7 +112,7 @@ msgstr "Enregistrer"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Page non trouvée."
@@ -121,6 +122,8 @@ msgstr "Page non trouvée."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -136,13 +139,23 @@ msgstr "Page non trouvée."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -150,15 +163,15 @@ msgstr "Page non trouvée."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Utilisateur non trouvé."
@@ -172,9 +185,10 @@ msgstr "%1$s et ses amis, page %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s et ses amis"
@@ -290,7 +304,7 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -324,7 +338,21 @@ msgstr ""
"sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Impossible de mettre à jour l’utilisateur."
@@ -334,18 +362,23 @@ msgstr "Impossible de mettre à jour l’utilisateur."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Aucun profil ne correspond à cet utilisateur."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Impossible d’enregistrer le profil."
@@ -355,8 +388,8 @@ msgstr "Impossible d’enregistrer le profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -376,13 +409,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Impossible de sauvegarder les parmètres de la conception."
@@ -390,48 +424,59 @@ msgstr "Impossible de sauvegarder les parmètres de la conception."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Impossible de mettre à jour votre conception."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "Principal"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Activité de %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Abonnements de %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Favoris"
+msgstr "Favoris de %s"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "Membres du groupe %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Vous ne pouvez pas vous bloquer vous-même !"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Le blocage de l’utilisateur a échoué."
@@ -487,7 +532,8 @@ msgstr "Destinataire non trouvé."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Vous ne pouvez envoyer des messages personnels qu’aux utilisateurs inscrits "
"comme amis."
@@ -514,8 +560,9 @@ msgid "This status is already a favorite."
msgstr "Cet avis est déjà un favori."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Impossible de créer le favori."
@@ -525,7 +572,8 @@ msgid "That status is not a favorite."
msgstr "Cet avis n’est pas un favori."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Impossible de supprimer le favori."
@@ -570,9 +618,9 @@ msgstr "Impossible de trouver l’utilisateur cible."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Pseudo déjà utilisé. Essayez-en un autre."
@@ -580,21 +628,22 @@ msgstr "Pseudo déjà utilisé. Essayez-en un autre."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Pseudo invalide."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "L’adresse du site personnel n’est pas un URL valide. "
@@ -602,23 +651,24 @@ msgstr "L’adresse du site personnel n’est pas un URL valide. "
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Le nom complet est trop long (limité à 255 caractères maximum)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -629,9 +679,9 @@ msgstr[1] "La description est trop longue (limitée à %d caractères maximum)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "L’emplacement est trop long (limité à 255 caractères maximum)."
@@ -641,8 +691,8 @@ msgstr "L’emplacement est trop long (limité à 255 caractères maximum)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -659,18 +709,16 @@ msgstr "Alias invalide : « %s »."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Alias « %s » déjà utilisé. Essayez-en un autre."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "L’alias ne peut pas être le même que le pseudo."
@@ -681,28 +729,32 @@ msgstr "L’alias ne peut pas être le même que le pseudo."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Groupe non trouvé."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Vous êtes déjà membre de ce groupe."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Vous avez été bloqué de ce groupe par l’administrateur."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Impossible d’inscrire l’utilisateur %1$s au groupe %2$s."
@@ -714,9 +766,11 @@ msgstr "Vous n’êtes pas membre de ce groupe."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -753,7 +807,7 @@ msgid "Upload failed."
msgstr "Échec du téléversement."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Jeton de requête ou de vérification invalide."
@@ -773,20 +827,25 @@ msgid "Request token already authorized."
msgstr "Le jeton de requête a déjà été autorisé."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -807,18 +866,22 @@ msgstr ""
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Soumission de formulaire inattendue."
@@ -870,29 +933,31 @@ msgstr "Compte"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Pseudo"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Mot de passe"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -966,6 +1031,7 @@ msgstr "Vous ne pouvez pas supprimer le statut d’un autre utilisateur."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -985,38 +1051,50 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis."
msgid "Already repeated that notice."
msgstr "Vous avez déjà repris cet avis."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "Méthode HTTP non trouvée !"
-#: actions/apistatusesshow.php:141
-#, php-format
-msgid "Unsupported format: %s"
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
+#, fuzzy, php-format
+msgid "Unsupported format: %s."
msgstr "Format non supporté : %s"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Statut supprimé."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Aucun statut trouvé avec cet identifiant."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Vous ne pouvez supprimer qu’en utilisant le format Atom."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "Impossible de supprimer cet avis."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "A supprimé l’avis %d"
@@ -1079,7 +1157,7 @@ msgstr "%1$s annonces favorites de %2$s, alias %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Impossible de générer le flux pour le groupe — %s"
@@ -1100,13 +1178,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s statuts en réponses aux statuts de %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Activité publique %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s statuts de tout le monde !"
@@ -1150,212 +1229,276 @@ msgstr "Seul l’utilisateur peut ajouter des éléments son flux."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
-msgstr "N’accepter que des AtomPub pour les flux atom."
+msgstr "N’accepte que AtomPub pour les flux atom."
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
#, fuzzy
msgid "Atom post must not be empty."
msgstr "Une publication Atom doit être une entrée « Atom »."
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
#, fuzzy
msgid "Atom post must be well-formed XML."
msgstr "Une publication Atom doit être une entrée « Atom »."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr "Une publication Atom doit être une entrée « Atom »."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
#, fuzzy
msgid "Can only handle POST activities."
msgstr "Ne peut gérer que les activités de publication."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, fuzzy, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr "Ne peut gérer l’objet d’activité de type « %s »"
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Chercher dans le contenu des avis"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "L’avis d’URI « %s » existe déjà."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr "Publication AtomPost avec l’URI d’attention inconnu %s"
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Méthode API en construction."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Page non trouvée."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Profil non-trouvé."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Statuts de %1$s et ses amis dans %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Impossible d’insérer un nouvel abonnement."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
#, fuzzy
-msgid "Can only handle Favorite activities."
+msgid "Can only handle favorite activities."
msgstr "Ne peut gérer que les activités de publication."
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Ne peut gérer que les activités de publication."
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Inconnu"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Ajouter aux favoris"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Profil non-trouvé."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "Membres du groupe %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Groupes de %s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Impossible d’insérer un nouvel abonnement."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
+#: actions/atompubmembershipfeed.php:242
#, fuzzy
-msgid "Can only handle Join activities."
+msgid "Can only handle join activities."
msgstr "Ne peut gérer que les activités de publication."
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Inconnu"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Tous les membres"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Fichier non trouvé."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Impossible de supprimer le favori."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Aucun groupe trouvé."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Tous les membres"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Méthode HTTP non trouvée !"
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Profil non-trouvé."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Vous n’êtes pas abonné(e) à ce profil."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Impossible de supprimer l’abonnement à soi-même."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Profil non-trouvé."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Vous n’êtes pas abonné(e) à ce profil."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Impossible de supprimer l’abonnement à soi-même."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Abonnés de %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
#, fuzzy
msgid "Can only handle Follow activities."
msgstr "Ne peut gérer que les activités de publication."
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Type de fichier inconnu"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Déjà abonné !"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1364,11 +1507,15 @@ msgstr "Pièce jointe non trouvée."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Aucun pseudo."
@@ -1385,7 +1532,7 @@ msgstr "Taille incorrecte."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1400,41 +1547,51 @@ msgstr ""
"taille maximale du fichier est de %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Utilisateur sans profil correspondant."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Paramètres de l’avatar"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Image originale"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Aperçu"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Supprimer"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Téléverser"
@@ -1450,31 +1607,72 @@ msgstr "Recadrer"
msgid "No file uploaded."
msgstr "Aucun fichier n’a été téléversé."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Sélectionnez une zone de forme carrée pour définir votre avatar"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Données perdues."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Avatar mis à jour."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "La mise à jour de l’avatar a échoué."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Avatar supprimé."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Arrière plan"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1482,7 +1680,8 @@ msgstr "Vous avez déjà bloqué cet utilisateur."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Bloquer cet utilisateur"
@@ -1505,15 +1704,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Non"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Ne pas bloquer cet utilisateur"
#. TRANS: Button label on the user block form.
@@ -1524,15 +1723,15 @@ msgstr "Ne pas bloquer cet utilisateur"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Oui"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Bloquer cet utilisateur"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1540,31 +1739,6 @@ msgstr "Bloquer cet utilisateur"
msgid "Failed to save block information."
msgstr "Impossible d’enregistrer les informations de blocage."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Aucun groupe trouvé."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1634,23 +1808,6 @@ msgstr "Type d’adresse non reconnu : %s."
msgid "That address has already been confirmed."
msgstr "Cette adresse a déjà été confirmée."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Impossible de mettre à jour l’utilisateur."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1675,11 +1832,85 @@ msgid "Conversation"
msgstr "Conversation"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Avis"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Vous ne pouvez pas supprimer des utilisateurs."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Avatar supprimé."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Créer un compte"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Confirmer"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Vous ne pouvez pas supprimer des utilisateurs."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Vous ne pouvez pas supprimer des utilisateurs."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1693,14 +1924,14 @@ msgstr "Application non trouvée."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Vous n’êtes pas le propriétaire de cette application."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Un problème est survenu avec votre jeton de session."
@@ -1723,12 +1954,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Ne pas supprimer cette application"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Supprimer cette application"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1737,8 +1970,10 @@ msgid "You must be logged in to delete a group."
msgstr "Vous devez ouvrir une session pour supprimer un groupe."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Aucun pseudo ou ID."
@@ -1781,24 +2016,32 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+#, fuzzy
+msgid "Do not delete this group."
msgstr "Ne pas supprimer ce groupe"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+#, fuzzy
+msgid "Delete this group."
msgstr "Supprimer ce groupe"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Non connecté."
@@ -1825,27 +2068,40 @@ msgstr "Voulez-vous vraiment supprimer cet avis ?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Ne pas supprimer cet avis"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Supprimer cet avis"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Vous ne pouvez pas supprimer des utilisateurs."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Vous pouvez seulement supprimer les utilisateurs locaux."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Supprimer l’utilisateur"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Supprimer l’utilisateur"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1853,79 +2109,103 @@ msgstr ""
"Voulez-vous vraiment supprimer cet utilisateur ? Ceci effacera toutes les "
"données à son propos de la base de données, sans sauvegarde."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Ne pas supprimer ce groupe"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Supprimer cet utilisateur"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Conception"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Paramètres de conception pour ce site StatusNet"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "URL du logo invalide."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "Adresse URL du logo SSL invalide."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Le thème n’est pas disponible : %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Modifier le logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logo du site"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "Logo SSL"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Modifier le thème"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Thème du site"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Thème pour le site."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Thème personnalisé"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
"Vous pouvez importer un thème StatusNet personnalisé dans une archive .ZIP."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Changer l’image d’arrière plan"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Arrière plan"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1935,98 +2215,108 @@ msgstr ""
"maximale du fichier est de %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Activé"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Désactivé"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Activer ou désactiver l’image d’arrière plan."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Répéter l’image d’arrière plan"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Modifier les couleurs"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Contenu"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Barre latérale"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Texte"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Liens"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avancé"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS personnalisé"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Utiliser les valeurs par défaut"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Restaurer les conceptions par défaut"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Revenir aux valeurs par défaut"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Enregistrer"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Sauvegarder la conception"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Cet avis n’est pas un favori !"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Ajouter aux favoris"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Document « %s » non trouvé."
#. TRANS: Title for "Edit application" form.
@@ -2041,7 +2331,7 @@ msgid "You must be logged in to edit an application."
msgstr "Vous devez être connecté pour modifier une application."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Application non trouvée."
@@ -2051,61 +2341,71 @@ msgid "Use this form to edit your application."
msgstr "Utilisez ce formulaire pour modifier votre application."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Le nom est requis."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "Le nom est trop long (limité à 255 caractères maximum)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Ce nom est déjà utilisé. Essayez-en un autre."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "La description est requise."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "L’URL source est trop longue."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "L’URL source est invalide."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "L’organisation est requise."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "L’organisation est trop longue (limitée à 255 caractères maximum)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "La page d’accueil de l’organisation est requise."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Le rappel (Callback) est trop long."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "L’URL de rappel (Callback) est invalide."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Impossible de mettre à jour l’application."
@@ -2116,14 +2416,17 @@ msgid "Edit %s group"
msgstr "Modifier le groupe %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Vous devez ouvrir une session pour créer un groupe."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Vous devez être administrateur pour modifier le groupe."
@@ -2134,63 +2437,65 @@ msgstr "Remplissez ce formulaire pour modifier les options du groupe."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Alias invalide : « %s »"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Impossible de mettre à jour le groupe."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Impossible de créer les alias."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Vos options ont été enregistrées."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Paramètres du courriel"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Configurez les courriels que vous souhaitez recevoir de %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Adresse électronique"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Adresse courriel actuellement confirmée."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Enlever"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2203,44 +2508,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Adresse de courriel (ex : nom@example.org)"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Ajouter"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Courriel entrant"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Je veux envoyer mes avis par courriel."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Écrivez à cette adresse courriel pour poster de nouveaux avis."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Nouvelle adresse courriel pour poster ; annule l’ancienne."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2248,89 +2553,91 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nouveau"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Préférences de courrier électronique"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Avertissez-moi par courriel des nouveaux abonnements."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Envoyez-moi un courriel quand un utilisateur ajoute un de mes avis à ses "
"favoris."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Envoyez-moi un courriel quand quelqu’un m’envoie un message personnel."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Envoyez-moi un courriel quand quelqu’un m’envoie une réponse « @ »."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Autoriser mes amis à m’envoyer des courriels et des clins d’œil."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publier un MicroID pour mon adresse courriel."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Préférences de courrier électronique enregistrées."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Aucune adresse électronique."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Impossible d’utiliser cette adresse courriel"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Adresse courriel invalide."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Vous utilisez déjà cette adresse courriel."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Cette adresse courriel appartient déjà à un autre utilisateur."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Impossible d’insérer le code de confirmation."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2339,89 +2646,105 @@ msgstr ""
"votre boîte de réception pour récupérer le code et les instructions."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Aucune confirmation à annuler."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Cette adresse de messagerie électronique est erronée."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Impossible de supprimer le courriel de confirmation."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Confirmation de courrier électronique annulée."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Ceci n’est pas votre adresse courriel."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "L’adresse électronique a été supprimée."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Aucune adresse de courriel entrant."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Impossible de mettre à jour le dossier de l’utilisateur."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "L’adresse de courriel entrant a été supprimée."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Nouvelle adresse de courriel entrant ajoutée."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Cet avis a déjà été ajouté à vos favoris !"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Retirer ce favori"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Avis populaires"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Avis populaires - page %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Les avis les plus populaires sur le site en ce moment."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Les avis favoris apparaissent sur cette page mais personne n’a mis d’avis en "
"favori pour le moment."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2430,7 +2753,9 @@ msgstr ""
"Soyez le premier à ajouter un avis dans vos favoris en cliquant sur le "
"bouton favori à côté d’un avis que vous aimez."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2439,142 +2764,186 @@ msgstr ""
"Pourquoi ne pas [créer un nouveau compte](%%action.register%%) et être le "
"premier à ajouter un avis à vos favoris !"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Avis favoris de %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Mises à jour privilégiées par %1$s sur %2$s !"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Utilisateurs en vedette"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Utilisateurs en vedette - page %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Une sélection d’utilisateurs à ne pas manquer dans %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Aucun identifiant d’avis."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Aucun avis."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Aucune pièce jointe."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Aucune pièce jointe importée."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Réponse inattendue !"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "L’utilisateur suivi n’existe pas."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Vous pouvez utiliser l’abonnement local."
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Cet utilisateur vous a empêché de vous inscrire."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Vous n’êtes pas autorisé."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Impossible de convertir le jeton de requête en jeton d’accès."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Le service distant utilise une version inconnue du protocole OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Erreur lors de la mise à jour du profil distant."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Fichier non trouvé."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Impossible de lire le fichier"
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Rôle invalide."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Ce rôle est réservé et ne peut pas être défini."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Vous ne pouvez pas attribuer des rôles aux utilisateurs sur ce site."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "L’utilisateur a déjà ce rôle."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Aucun profil n’a été spécifié."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Aucun profil ne correspond à cet identifiant."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Aucun groupe n’a été spécifié."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Seul un administrateur peut bloquer des membres du groupe."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Cet utilisateur est déjà bloqué pour le groupe."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "L’utilisateur n’est pas membre du groupe."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Bloquer cet utilisateur du groupe"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2586,33 +2955,41 @@ msgstr ""
"abonner à l’avenir."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Ne pas bloquer cet utilisateur pour ce groupe"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Bloquer cet utilisateur de de groupe"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
"Erreur de la base de données lors du blocage de l’utilisateur du groupe."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Aucun identifiant."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Vous devez ouvrir une session pour modifier un groupe."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Conception du groupe"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2620,22 +2997,26 @@ msgstr ""
"Personnalisez l’apparence de votre groupe avec une image d’arrière plan et "
"une palette de couleurs de votre choix"
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Impossible de mettre à jour votre conception."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Impossible de sauvegarder les parmètres de la conception."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Préférences de conception enregistrées."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo du groupe"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2643,100 +3024,116 @@ msgstr ""
"Vous pouvez choisir un logo pour votre groupe. La taille maximale du fichier "
"est de %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Transfert"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Recadrer"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Sélectionnez une zone de forme carrée sur l’image qui sera le logo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo mis à jour."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "La mise à jour du logo a échoué."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Membres du groupe %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Membres du groupe %1$s - page %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Liste des utilisateurs inscrits à ce groupe."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Administrer"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Bloquer"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Bloquer cet utilisateur"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Faire de cet utilisateur un administrateur du groupe"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Rendre administrateur"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Faire de cet utilisateur un administrateur"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Mises à jour des membres de %1$s dans %2$s !"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Groupes"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Groupes - page %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Les groupes de %%%%site.name%%%% permettent de trouver et de parler avec des "
"personnes qui ont des intérêts en commun avec vous. Après avoir rejoint un "
@@ -2745,11 +3142,13 @@ msgstr ""
"intéresse ? Essayez d’en [rechercher un](%%%%action.groupsearch%%%%) ou de "
"[créer le vôtre !](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Créer un nouveau groupe"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2759,25 +3158,33 @@ msgstr ""
"leurs intérêts. Séparez les termes de recherche par des espaces. Ils doivent "
"contenir au moins 3 caractères."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Rechercher des groupes"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Aucun résultat."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Si vous ne trouvez pas le groupe que vous recherchez, vous pouvez [le créer]"
"(%%action.newgroup%%) vous-même."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2787,141 +3194,151 @@ msgstr ""
"%action.newgroup%%) vous-même !"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Seul un administrateur peut débloquer les membres du groupes."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Cet utilisateur n’est pas bloqué du groupe."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Erreur lors de l’annulation du blocage."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Paramètres de messagerie instantanée"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée]"
"(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-"
"dessous."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "La messagerie instantanée n’est pas disponible."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Adresse de messagerie instantanée"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Adresse Jabber/GTalk actuellement confirmée."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"En attente d’une confirmation pour cette adresse. Vérifiez votre compte "
"Jabber/GTalk pour recevoir de nouvelles instructions. (Avez-vous ajouté %s à "
"votre liste de contacts ?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Adresse Jabber ou GTalk (ex : nom@exemple.org). Assurez-vous d’ajouter %s à "
"votre liste d’amis dans votre logiciel de messagerie instantanée ou dans "
"GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Préférences de messagerie instantanée"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Envoyez-moi les avis par Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
"Poster un avis chaque fois que mon statut est modifié dans Jabber/GTalk"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Envoyez-moi par Jabber/GTalk les réponses des personnes auxquelles je ne "
"suis pas abonné."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publier un MicroID pour mon adresse Jabber/GTalk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Préférences enregistrées"
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Aucun identifiant Jabber"
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Impossible d’utiliser cet identifiant Jabber"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Identifiant Jabber invalide."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Vous utilisez déjà cet idenfiant Jabber."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Identifiant Jabber déjà utilisé par un autre utilisateur."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2930,56 +3347,62 @@ msgstr ""
"Un code de confirmation a été envoyé à votre adresse de messagerie "
"instantanée. Vous devez approuver %s pour recevoir des messages."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Cette adresse de messagerie instantanée est erronée."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Impossible de supprimer la confirmation de messagerie instantanée."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Confirmation de messagerie instantanée annulée."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Ceci n’est pas votre identifiant Jabber."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "L’adresse de messagerie instantanée a été supprimée."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Boîte de réception de %1$s - page %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Boîte de réception de %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Cette boîte de réception regroupe les messages personnels qui vous sont "
"envoyés."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Les invitations ont été désactivées."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2987,18 +3410,18 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Adresse courriel invalide : %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Invitations envoyées"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Inviter de nouveaux utilisateurs"
@@ -3006,7 +3429,7 @@ msgstr "Inviter de nouveaux utilisateurs"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Vous êtes déjà abonné à cet utilisateur :"
@@ -3014,7 +3437,7 @@ msgstr[1] "Vous êtes déjà abonné à ces utilisateurs :"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3023,7 +3446,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3037,7 +3460,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Invitation envoyée à la personne suivante :"
@@ -3045,7 +3468,7 @@ msgstr[1] "Invitations envoyées aux personnes suivantes :"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3055,7 +3478,7 @@ msgstr ""
"communauté !"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3063,27 +3486,28 @@ msgstr ""
"service."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Adresses courriel"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Adresses d’amis à inviter (un par ligne)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Message personnel"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Ajouter un message personnel à l’invitation (optionnel)."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Envoyer"
@@ -3091,7 +3515,7 @@ msgstr "Envoyer"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s vous invite à vous inscrire sur %2$s"
@@ -3101,7 +3525,7 @@ msgstr "%1$s vous invite à vous inscrire sur %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3160,44 +3584,51 @@ msgstr ""
"\n"
"Cordialement, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Vous devez ouvrir une session pour rejoindre un groupe."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s a rejoint le groupe %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Vous devez ouvrir une session pour quitter un groupe."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Vous n’êtes pas membre de ce groupe."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s a quitté le groupe %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Licence"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Licence de ce site StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Sélection de licence invalide."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3205,127 +3636,136 @@ msgstr ""
"Vous devez spécifier le propriétaire du contenu lorsque vous utilisez la "
"licence « Tous droits réservés »."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Titre de licence invalide. La taille maximale est de 255 caractères."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "URL de licence invalide."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "URL d’image de licence invalide."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "L’URL de la licence doit être vide ou valide."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "L’URL de l’image de la la licence doit être vide ou valide."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Sélection d’une licence"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privé"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Tous droits réservés"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Type"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Sélectionner une licence"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Détails de la licence"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Propriétaire"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Nom du propriétaire du contenu du site (si applicable)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Titre de la licence"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Le titre de la licence."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL de la licence"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL où obtenir plus d'informations sur la licence."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL de l’image de la licence"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL d’une image à afficher avec la licence."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Enregistrer"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Enregistrer les paramètres de licence"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Déjà connecté."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Identifiant ou mot de passe incorrect."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
"Erreur lors de la mise en place de l’utilisateur. Vous n’y êtes probablement "
"pas autorisé."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Ouvrir une session"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Ouverture de session"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Se souvenir de moi"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Ouvrir automatiquement ma session à l’avenir (déconseillé pour les "
"ordinateurs publics ou partagés)"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Mot de passe perdu ?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3333,11 +3773,11 @@ msgstr ""
"Pour des raisons de sécurité, veuillez entrer à nouveau votre identifiant et "
"votre mot de passe afin d’enregistrer vos préférences."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Ouvrez une session avec un identifiant et un mot de passe."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3377,19 +3817,22 @@ msgid "New application"
msgstr "Nouvelle application"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Vous devez être connecté pour enregistrer une application."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Utilisez ce formulaire pour inscrire une nouvelle application."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "L’URL source est requise."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Impossible de créer l’application."
@@ -3398,11 +3841,23 @@ msgstr "Impossible de créer l’application."
msgid "New group"
msgstr "Nouveau groupe"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Vous n’êtes pas autorisé à supprimer ce groupe."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Remplissez les champs ci-dessous pour créer un nouveau groupe :"
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "L’alias ne peut pas être le même que le pseudo."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nouveau message"
@@ -3453,7 +3908,9 @@ msgstr "Nouvel avis"
msgid "Notice posted"
msgstr "Avis publié"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3462,16 +3919,21 @@ msgstr ""
"Recherchez les avis %%site.name%% par leur contenu. Séparez les termes de "
"recherche par des espaces. Ils doivent contenir au moins 3 caractères."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Recherche de texte"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Résultats de la recherche pour « %1$s » sur %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3480,7 +3942,9 @@ msgstr ""
"Soyez le premier à [poster sur ce sujet](%%%%action.newnotice%%%%?"
"status_textarea=%s) !"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3490,14 +3954,17 @@ msgstr ""
"premier à [poster sur ce sujet](%%%%action.newnotice%%%%?status_textarea=%"
"s) !"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Mises à jour avec « %s »"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "mises à jour correspondant au(x) terme(s) « %1$s » sur %2$s !"
#: actions/nudge.php:85
@@ -3538,31 +4005,31 @@ msgid "You have not registered any applications yet."
msgstr "Vous n’avez encore enregistré aucune application."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Applications connectées."
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
"Vous avez autorisé les applications suivantes à se connecter à votre compte."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Vous n’êtes pas un utilisateur de cette application."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Impossible de révoquer l’accès par l’application : %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3572,14 +4039,14 @@ msgstr ""
"jeton personnel d’accès commençant par %2$s."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Vous n’avez autorisé aucune application à utiliser votre compte."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3588,6 +4055,16 @@ msgstr ""
"Êtes-vous un développeur ? [Inscrivez une application cliente OAuth](%s) à "
"utiliser avec cette instance de StatusNet."
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Page non trouvée."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "L’avis parent correspondant à cette réponse n’a pas été trouvé."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "L’avis n’a pas de profil."
@@ -3597,6 +4074,16 @@ msgstr "L’avis n’a pas de profil."
msgid "%1$s's status on %2$s"
msgstr "Statut de %1$s sur %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Destinataire non trouvé."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3610,16 +4097,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Veuillez n'utiliser que des URL HTTP complètes en %s."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Format de données non supporté."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Recherche de personnes"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Recherche d’avis"
@@ -3633,68 +4121,79 @@ msgid "Manage various other options."
msgstr "Autres options à configurer"
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (service gratuit)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Raccourcir les URL avec"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Sélectionnez un service de réduction d’URL."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Afficher les conceptions de profils"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Afficher ou masquer les paramètres de conception."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Le service de réduction d’URL est trop long (50 caractères maximum)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Aucun identifiant d’utilisateur n’a été spécifié."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Aucun jeton d’identification n’a été spécifié."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Aucun jeton d’identification n’a été demandé."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Jeton d’identification invalide."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Jeton d’identification périmé."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Boîte d’envoi de %1$s - page %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Boîte d’envoi de %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Cette boîte d’envoi regroupe les messages personnels que vous avez envoyés."
@@ -3707,7 +4206,8 @@ msgstr "Changer de mot de passe"
msgid "Change your password."
msgstr "Modifier votre mot de passe."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Modification du mot de passe"
@@ -3715,48 +4215,50 @@ msgstr "Modification du mot de passe"
msgid "Old password"
msgstr "Ancien mot de passe"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nouveau mot de passe"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 caractères ou plus"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Confirmer"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Identique au mot de passe ci-dessus"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Modifier"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Votre mot de passe doit contenir au moins 6 caractères."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Les mots de passe ne correspondent pas."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Ancien mot de passe incorrect"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Erreur lors de l’enregistrement de l’utilisateur ; invalide."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Impossible de sauvegarder le nouveau mot de passe."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Mot de passe enregistré."
@@ -3962,7 +4464,7 @@ msgstr "Le répertoire où les fonds d’écran sont stockés."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Pièces jointes"
@@ -4030,7 +4532,9 @@ msgstr "Serveur vers lequel diriger les requêtes SSL."
msgid "Save paths"
msgstr "Enregistrer les chemins."
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4040,7 +4544,8 @@ msgstr ""
"ou leurs intérêts. Séparez les termes de recherche par des espaces. Ils "
"doivent contenir au moins 3 caractères."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Recherche de personnes"
@@ -4066,12 +4571,12 @@ msgstr ""
"$s »."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Paramètres du profil"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4079,32 +4584,33 @@ msgstr ""
"sache plus à votre sujet."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Information de profil"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Nom complet"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Site personnel"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr ""
"Adresse URL de votre page personnelle, blogue ou profil sur un autre site."
@@ -4112,7 +4618,7 @@ msgstr ""
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4120,74 +4626,81 @@ msgstr[0] "Décrivez-vous avec vos intérêts en %d caractère"
msgstr[1] "Décrivez-vous avec vos intérêts en %d caractères"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Décrivez vous et vos interêts"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Bio"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Emplacement"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Partager ma localisation lorsque je poste des avis"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Balises"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des "
"virgules ou des espaces"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Langue"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Langue préférée"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Fuseau horaire"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Quel est votre fuseau horaire habituel ?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"M’abonner automatiquement à tous ceux qui s’abonnent à moi (recommandé pour "
"les utilisateurs non-humains)"
@@ -4195,7 +4708,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4203,49 +4716,53 @@ msgstr[0] "La biographie est trop longue (limitée à %d caractère maximum)."
msgstr[1] "La biographie est trop longue (limitée à %d caractères maximum)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Aucun fuseau horaire n’a été choisi."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "La langue est trop longue (limitée à 50 caractères maximum)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Marque invalide : « %s »"
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Impossible de mettre à jour l’auto-abonnement."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Impossible d’enregistrer les préférences de localisation."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Impossible d’enregistrer le profil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Impossible d’enregistrer les marques."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Préférences enregistrées."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Créer un compte"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4321,6 +4838,12 @@ msgstr ""
"%%site.name%% est un service de [micro-blogging](http://fr.wikipedia.org/"
"wiki/Microblog) basé sur le logiciel libre [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s statuts de tout le monde !"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4366,36 +4889,44 @@ msgstr ""
msgid "Tag cloud"
msgstr "Nuage de marques"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Votre session est déjà ouverte !"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Code de récupération non trouvé."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Ceci n’est pas un code de récupération."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Code de récupération d’un utilisateur inconnu."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Erreur dans le code de confirmation."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Ce code de validation est périmé. Veuillez recommencer."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr ""
"Impossible de mettre l’utilisateur à jour avec l’adresse courriel confirmée."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4404,68 +4935,100 @@ msgstr ""
"nouveau qui sera envoyé à votre adresse de courriel définie dans votre "
"compte."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Vous avez été identifié. Entrez un nouveau mot de passe ci-dessous. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Vous avez été identifié. Entrez un nouveau mot de passe ci-dessous."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Récupération de mot de passe"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Pseudo ou adresse de courriel"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"Votre pseudo sur ce serveur, ou l’adresse courriel que vous avez enregistrée."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Récupérer"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Récupérer"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Réinitialiser le mot de passe"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Récupérer le mot de passe"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Récupération de mot de passe demandée"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Mot de passe enregistré."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Action inconnue"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 caractères ou plus, et ne l’oubliez pas !"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Réinitialiser"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Entrez un pseudo ou une adresse courriel."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Aucun utilisateur trouvé avec ce courriel ou ce nom."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Aucune adresse courriel enregistrée pour cet utilisateur."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Erreur lors de l’enregistrement de la confirmation du courriel."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4473,102 +5036,98 @@ msgstr ""
"Les instructions pour récupérer votre mot de passe ont été envoyées à "
"l’adresse courriel indiquée dans votre compte."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Réinitialisation inattendue du mot de passe."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Le mot de passe doit contenir au moins 6 caractères."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Le mot de passe et sa confirmation ne correspondent pas."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Erreur lors de la configuration de l’utilisateur."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr ""
"Nouveau mot de passe créé avec succès. Votre session est maintenant ouverte."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Désolé ! Seules les personnes invitées peuvent s’inscrire."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Désolé, code d’invitation invalide."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Compte créé avec succès"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Créer un compte"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Inscription non autorisée."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Vous ne pouvez pas vous inscrire si vous n’acceptez pas la licence."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Cette adresse courriel est déjà utilisée."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Identifiant ou mot de passe incorrect."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Avec ce formulaire vous pouvez créer un nouveau compte. Vous pourrez ensuite "
"poster des avis and et vous relier à des amis et collègues. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. Requis."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 caractères ou plus. Requis."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Identique au mot de passe ci-dessus. Requis."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Courriel"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Utilisé uniquement pour les mises à jour, les notifications, et la "
"récupération de mot de passe"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Nom plus long, votre \"vrai\" nom de préférence"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr ""
-"Adresse URL de votre page personnelle, blogue ou profil sur un autre site"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
@@ -4576,23 +5135,23 @@ msgstr ""
"Je comprends que le contenu et les données de %1$s sont privés et "
"confidentiels."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Mon texte et les fichiers sont protégés par copyright par %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Mon texte et les fichiers restent sous mon propre droit d'auteur."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Tous droits réservés."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4602,7 +5161,7 @@ msgstr ""
"données personnelles : mot de passe, adresse électronique, adresse de "
"messagerie instantanée, numéro de téléphone."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4636,7 +5195,7 @@ msgstr ""
"Merci pour votre inscription ! Nous vous souhaitons d’apprécier notre "
"service."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4644,7 +5203,7 @@ msgstr ""
"(Vous recevrez bientôt un courriel contenant les instructions pour confirmer "
"votre adresse.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4656,78 +5215,87 @@ msgstr ""
"sur un [site de micro-blogging compatible](%%doc.openmublog%%), entrez l’URL "
"de votre profil ci-dessous."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Abonnement à distance"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "S’abonner à un utilisateur distant"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Pseudo de l’utilisateur"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Pseudo de l’utilisateur que vous voulez suivre"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL du profil"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "URL de votre profil sur un autre service de micro-blogging compatible"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "S’abonner"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "URL du profil invalide (mauvais format)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"URL de profil invalide (aucun document YADIS ou définition XRDS invalide)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Ce profil est local ! Connectez-vous pour vous abonner."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Impossible d’obtenir un jeton de requête."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Aucun avis n’a été spécifié."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Vous ne pouvez pas reprendre votre propre avis."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Vous avez déjà repris cet avis."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Repris"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Repris !"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Réponses à %s"
@@ -4781,11 +5349,104 @@ msgstr ""
"quelque chose à son intention](%%%%action.newnotice%%%%?status_textarea=%3"
"$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Réponses à %1$s sur %2$s !"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Seuls les utilisateurs identifiés peuvent reprendre des avis."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Vous n’avez encore enregistré aucune application."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Importer un fichier"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Le fichier importé dépasse le réglage upload_max_filesize de php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Le fichier importé dépasse le réglage MAX_FILE_SIZE qui a été précisé dans "
+"le formulaire HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Le fichier n’a été que partiellement importé."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Un dossier temporaire est manquant."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Impossible d’écrire sur le disque."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Import de fichier stoppé par une extension."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Erreur système lors du transfert du fichier."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Tous les membres"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Importer un fichier"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Vous ne pouvez pas révoquer les rôles des utilisateurs sur ce site."
@@ -4794,7 +5455,7 @@ msgstr "Vous ne pouvez pas révoquer les rôles des utilisateurs sur ce site."
msgid "User doesn't have this role."
msgstr "L'utilisateur ne possède pas ce rôle."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4837,85 +5498,87 @@ msgstr "Activer la sortie de déboguage pour les sessions."
msgid "Save site settings"
msgstr "Sauvegarder les paramètres du site"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Vous devez être connecté pour voir une application."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Profil de l’application"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Icône"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nom"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organisation"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Description"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistiques"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Créé par %1$s - accès %2$s par défaut - %3$d utilisateurs"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Actions de l’application"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Réinitialiser la clé et le secret"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Supprimer"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Informations sur l’application"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Clé de l’utilisateur"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Secret de l’utilisateur"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL du jeton de requête"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL du jeton d’accès"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Autoriser l’URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4923,35 +5586,42 @@ msgstr ""
"Note : Nous utilisons les signatures HMAC-SHA1. Nous n’utilisons pas la "
"méthode de signature en texte clair."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Voulez-vous vraiment réinitialiser votre clé consommateur et secrète ?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Avis favoris de %1$s, page %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Impossible d’afficher les favoris."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Flux pour les amis de %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Flux pour les amis de %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Flux pour les amis de %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4960,7 +5630,9 @@ msgstr ""
"favori sur les avis que vous aimez pour les mémoriser à l’avenir ou les "
"mettre en lumière."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4969,7 +5641,10 @@ msgstr ""
"%s n’a pas ajouté d’avis à ses favoris pour le moment. Publiez quelque chose "
"d’intéressant, et cela pourrait être ajouté à ses favoris :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4980,7 +5655,8 @@ msgstr ""
"un compte](%%%%action.register%%%%), puis poster quelque chose "
"d’intéressant, qu’il pourrait ajouter à ses favoris :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "C’est un moyen de partager ce que vous aimez."
@@ -4998,81 +5674,88 @@ msgid "%1$s group, page %2$d"
msgstr "Groupe %1$s, page %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Profil du groupe"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Note"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Alias"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Actions du groupe"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Fil des avis du groupe %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Fil des avis du groupe %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Fil des avis du groupe %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "ami d’un ami pour le groupe %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Membres"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(aucun)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Tous les membres"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Créé"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Membres"
@@ -5081,7 +5764,7 @@ msgstr "Membres"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5100,7 +5783,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5114,17 +5797,17 @@ msgstr ""
"messages courts à propos de leur vie et leurs intérêts. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administrateurs"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Message introuvable."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr ""
"Ce message personnel ne peut être lu que par son expéditeur et son "
@@ -5132,14 +5815,14 @@ msgstr ""
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Message adressé à %1$s le %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Message reçu de %1$s le %2$s"
@@ -5155,7 +5838,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s a marqué « %2$s »"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5408,17 +6091,18 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Enregistrer l'avis du site"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Paramètres SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
@@ -5426,59 +6110,60 @@ msgstr ""
"name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "Les SMS ne sont pas disponibles."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Adresse SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Numéro de téléphone actuellement confirmé pour recevoir les SMS."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Numéro de téléphone en attente de confirmation."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Code de confirmation"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Entrez le code que vous avez reçu sur votre téléphone."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Confirmer"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Numéro de téléphone pour les SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr ""
"Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Préférences pour les SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5487,32 +6172,32 @@ msgstr ""
"facture de téléphonie mobile."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Préférences pour les SMS enregistrées."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Aucun numéro de téléphone."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Aucun fournisseur sélectionné."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Vous utilisez déjà ce numéro de téléphone."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Ce numéro de téléphone est déjà utilisé."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5522,39 +6207,39 @@ msgstr ""
"pour son utilisation."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Ce code de confirmation est incorrect."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Confirmation de SMS annulée."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Ceci n’est pas votre numéro de téléphone."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Le numéro de téléphone pour les SMS a été retiré."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Fournisseur de téléphonie mobile"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Sélectionnez un fournisseur de téléphone mobile"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5565,8 +6250,9 @@ msgstr ""
"écrivez-nous à %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Aucun code entré"
#. TRANS: Menu item for site administration
@@ -5638,17 +6324,21 @@ msgstr "Vous n’êtes pas abonné(e) à ce profil."
msgid "Could not save subscription."
msgstr "Impossible d’enregistrer l’abonnement."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Cette action n'accepte que les requêtes de type POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
"Vous ne pouvez pas vous abonner à un profil OMB 0.1 distant par cette "
"action."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Abonné"
@@ -5680,7 +6370,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Ces personnes suivent les avis de %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5690,7 +6380,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s n’a pas d’abonnés. Voulez-vous être le premier ?"
@@ -5700,7 +6390,7 @@ msgstr "%s n’a pas d’abonnés. Voulez-vous être le premier ?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5733,7 +6423,7 @@ msgstr "Les avis de ces personnes sont suivis par %s."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5753,23 +6443,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s ne suit actuellement personne."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Flux des avis de %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5802,12 +6493,15 @@ msgstr "Aucun argument d’identifiant."
msgid "Tag %s"
msgstr "Marque %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Profil de l’utilisateur"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Photo"
@@ -5823,6 +6517,11 @@ msgstr ""
"Marques pour cet utilisateur (lettres, chiffres, -, ., et _), séparées par "
"des virgules ou des espaces"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Marque invalide : « %s »"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5830,10 +6529,6 @@ msgstr ""
"Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné(e) "
"ou qui sont abonnées à vous."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Impossible d’enregistrer les marques."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5843,6 +6538,7 @@ msgstr ""
msgid "No such tag."
msgstr "Cette marque n’existe pas."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Vous n’avez pas bloqué cet utilisateur."
@@ -5863,7 +6559,7 @@ msgstr "Aucun identifiant de profil dans la requête."
msgid "Unsubscribed"
msgstr "Désabonné"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5895,13 +6591,12 @@ msgstr "Texte de bienvenue invalide. La taille maximale est de 255 caractères."
#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
-#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+#, fuzzy, php-format
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Abonnement par défaut invalide : « %1$s » n’est pas un utilisateur."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5959,55 +6654,71 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "Sauvegarder les paramètres utilisateur"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autoriser l’abonnement"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous "
"abonner aux avis de cet utilisateur. Si vous n’avez pas demandé à vous "
"abonner aux avis de quelqu’un, cliquez « Rejeter »."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licence"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Accepter"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "S’abonner à cet utilisateur"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Refuser"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Rejeter cet abonnement"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Pas de requête d’autorisation !"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Abonnement autorisé"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -6017,11 +6728,12 @@ msgstr ""
"Vérifiez les instructions du site pour savoir comment compléter "
"l’autorisation de l’abonnement. Votre jeton d’abonnement est :"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Abonnement refusé"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -6031,49 +6743,74 @@ msgstr ""
"Vérifiez les instructions du site pour savoir comment refuser pleinement "
"l’abonnement."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "L’URI de l’auditeur ‘%s’ n’a pas été trouvée ici."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "L’URI à laquelle vous vous êtes abonné(e) ‘%s’ est trop longue."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr ""
"L’URI à laquelle vous vous êtes abonné(e) ‘%s’ est un utilisateur local."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "L’URL du profil ‘%s’ est pour un utilisateur local."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"La licence du flux auquel vous êtes abonné(e), « %1$s », n’est pas compatible "
+"avec la licence du site « %2$s »."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "L’URL de l’avatar ‘%s’ n’est pas valide."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Impossible de lire l’URL de l’avatar « %s »."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Format d’image invalide pour l’URL de l’avatar « %s »."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Conception de profil"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6081,7 +6818,7 @@ msgstr ""
"Personnalisez l’apparence de votre profil avec une image d’arrière plan et "
"une palette de couleurs de votre choix."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Bon appétit !"
@@ -6113,7 +6850,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Statuts de %1$s dans %2$s!"
@@ -6174,7 +6911,7 @@ msgid "Plugins"
msgstr "Extensions"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Version"
@@ -6183,32 +6920,32 @@ msgid "Author(s)"
msgstr "Auteur(s)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Ajouter à mes favoris"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s a marqué l’avis %2$s comme favori."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Impossible de traiter l’URL « %s »"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin pense que quelque chose est impossible."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6227,7 +6964,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6238,7 +6975,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6246,7 +6983,7 @@ msgstr[0] "Un fichier aussi gros dépasserait votre quota mensuel de %d octet."
msgstr[1] "Un fichier aussi gros dépasserait votre quota mensuel de %d octets."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Nom de fichier non valide."
@@ -6304,7 +7041,7 @@ msgid "Could not create login token for %s"
msgstr "Impossible de créer le jeton d’identification pour %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Aucun nom de base de données ou DSN trouvé nulle part."
@@ -6331,23 +7068,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Impossible de trouver le profil (%1$d) pour l’avis (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problème lors de l’enregistrement de l’avis ; trop long."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Erreur lors de l’enregistrement de l’avis. Utilisateur inconnu."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6355,7 +7092,7 @@ msgstr ""
"minutes."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6364,42 +7101,42 @@ msgstr ""
"dans quelques minutes."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Il vous est interdit de poster des avis sur ce site."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problème lors de l’enregistrement de l’avis."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr "Le type renseigné pour la méthode saveKnownGroups() est incorrect."
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Impossible d’enregistrer la réponse à %1$d, %2$d."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6407,7 +7144,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
@@ -6416,7 +7153,7 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6488,35 +7225,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Bienvenue à %1$s, @%2$s !"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr "Code en mode mono-utilisateur appelé quand ce n’est pas autorisé."
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Impossible de créer le groupe."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Impossible de définir l'URI du groupe."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Impossible d’établir l’inscription au groupe."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Impossible d’enregistrer les informations du groupe local."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Vous ne pouvez pas supprimer des utilisateurs."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6553,211 +7311,214 @@ msgid "Other"
msgstr "Autres"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Page sans nom"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Voir davantage"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Navigation primaire du site"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Profil personnel et flux des amis"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Personnel"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Modifier votre adresse électronique, avatar, mot de passe, profil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Compte"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Se connecter aux services"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Connexion"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Modifier la configuration du site"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Administrer"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviter des amis et collègues à vous rejoindre sur %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Inviter"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Fermer la session"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Déconnexion"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Créer un compte"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "S’inscrire"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Ouvrir une session"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Connexion"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "À l’aide !"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Aide"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Rechercher des personnes ou du texte"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Rechercher"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Notice du site"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Vues locales"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Avis de la page"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Navigation secondaire du site"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Aide"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "À propos"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "CGU"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Confidentialité"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Source"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Contact"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Insigne"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licence du logiciel StatusNet"
@@ -6765,7 +7526,7 @@ msgstr "Licence du logiciel StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6775,7 +7536,7 @@ msgstr ""
"%site.broughtby%%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** est un service de micro-blogging."
@@ -6784,7 +7545,7 @@ msgstr "**%%site.name%%** est un service de micro-blogging."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6796,20 +7557,20 @@ msgstr ""
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licence du contenu du site"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Le contenu et les données de %1$s sont privés et confidentiels."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
@@ -6817,7 +7578,7 @@ msgstr ""
"réservés."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Le contenu et les données sont sous le droit d’auteur du contributeur. Tous "
@@ -6825,26 +7586,26 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
"Tous les contenus %1$s et les données sont disponibles sous la licence %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Pagination"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Après"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Avant"
@@ -6853,10 +7614,80 @@ msgstr "Avant"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "Attendait un élément racine mais a reçu tout un document XML."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Langue « %s » inconnue."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Photo"
+msgid "Cannot force remote user to subscribe."
+msgstr "Indiquez le nom de l’utilisateur auquel vous souhaitez vous abonner."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Type de fichier inconnu"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Vous êtes déjà membre de ce groupe."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Chercher dans le contenu des avis"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Utilisateur non trouvé."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6928,7 +7759,7 @@ msgid "User configuration"
msgstr "Configuration utilisateur"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Utilisateur"
@@ -6974,19 +7805,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Aucune demande trouvée pour cette clé de consommateur."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Jeton d’accès erroné."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Aucun utilisateur associé à ce jeton."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Impossible de vous authentifier."
@@ -7009,28 +7844,33 @@ msgstr ""
"requête."
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "Impossible d’émettre le jeton d’accès."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr ""
"Erreur de base de donnée en insérant l’utilisateur de l’application OAuth"
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr ""
+"Erreur de base de donnée en insérant l’utilisateur de l’application OAuth"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Révocation essayée d’un jeton inconnu."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Impossible de supprimer un jeton révoqué."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Icône pour cette application"
@@ -7143,17 +7983,24 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Révoquer"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+#, fuzzy
+msgid "Author element must contain a name element."
msgstr "l’élément « author » doit contenir un élément « name »."
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Ne pas supprimer ce groupe"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Auteur"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Fournisseur"
@@ -7182,6 +8029,11 @@ msgstr "La modification du mot de passe n’est pas autorisée."
msgid "Block"
msgstr "Bloquer"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Bloquer cet utilisateur"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7295,7 +8147,7 @@ msgstr "Nom complet : %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Emplacement : %s"
@@ -7303,7 +8155,7 @@ msgstr "Emplacement : %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Site Web : %s"
@@ -7585,25 +8437,25 @@ msgstr ""
"tracking - pas encore implémenté.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "Aucun fichier de configuration n’a été trouvé."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr ""
"Les fichiers de configuration ont été cherchés aux emplacements suivants :"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Aller au programme d’installation"
@@ -7644,14 +8496,19 @@ msgstr "Applications autorisées connectées"
msgid "Database error"
msgstr "Erreur de la base de données"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Supprimer cet utilisateur"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Importer un fichier"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7670,25 +8527,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Désactivé"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Réinitialiser"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Modifier les couleurs"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Utiliser les valeurs par défaut"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Restaurer les conceptions par défaut"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Revenir aux valeurs par défaut"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Sauvegarder la conception"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Impossible de mettre à jour votre conception."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Les paramètre par défaut de la conception ont été restaurés."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Impossible de révoquer l’accès par l’application : %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Retirer des favoris"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Retirer ce favori"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Ajouter aux favoris"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Ajouter à mes favoris"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7705,6 +8611,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "Ami d’un ami"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Tous les membres"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7739,33 +8658,33 @@ msgstr "Aller"
msgid "Grant this user the \"%s\" role"
msgstr "Accorder le rôle « %s » à cet utilisateur"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces"
+msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces."
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "Adresse URL du site web ou blogue pour le groupe ou sujet."
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Description du groupe ou du sujet"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Description du groupe ou du sujet, en %d caractère ou moins"
msgstr[1] "Description du groupe ou du sujet, en %d caractères ou moins"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Emplacement du groupe, s’il y a lieu, de la forme « Ville, État (ou région), "
"pays »"
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7875,40 +8794,41 @@ msgid "This page is not available in a media type you accept"
msgstr ""
"Cette page n’est pas disponible dans un des formats que vous avez autorisés."
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Format de fichier d’image non supporté."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Ce fichier est trop grand. La taille maximale est %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Transfert partiel."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Erreur système lors du transfert du fichier."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Ceci n’est pas une image, ou c’est un fichier corrompu."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Fichier perdu."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Type de fichier inconnu"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7916,7 +8836,7 @@ msgstr[0] "%d Mo"
msgstr[1] "%d Mo"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7924,7 +8844,7 @@ msgstr[0] "%d Ko"
msgstr[1] "%d Ko"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7945,23 +8865,25 @@ msgstr "Source %d inconnue pour la boîte de réception."
msgid "Leave"
msgstr "Quitter"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Ouvrez une session avec un identifiant et un mot de passe"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Créer un nouveau compte"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Confirmation de l’adresse courriel"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7993,14 +8915,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s suit maintenant vos avis sur %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -8015,7 +8937,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -8043,14 +8965,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Bio : %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nouvelle adresse courriel pour poster dans %s"
@@ -8058,7 +8980,7 @@ msgstr "Nouvelle adresse courriel pour poster dans %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8081,19 +9003,19 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Statut de %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Confirmation SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
@@ -8101,15 +9023,15 @@ msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "Vous avez reçu un clin d’œil de %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8138,7 +9060,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nouveau message personnel de %s"
@@ -8147,7 +9069,7 @@ msgstr "Nouveau message personnel de %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8182,7 +9104,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) a ajouté votre avis à ses favoris"
@@ -8192,7 +9114,7 @@ msgstr "%1$s (@%2$s) a ajouté votre avis à ses favoris"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8231,7 +9153,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8244,7 +9166,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) a envoyé un avis à votre attention"
@@ -8255,7 +9177,7 @@ msgstr "%1$s (@%2$s) a envoyé un avis à votre attention"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8305,11 +9227,11 @@ msgstr ""
"\n"
"P.S. Vous pouvez désactiver ces notifications électroniques ici : %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "L’accès à cette boîte de réception est réservé à son utilisateur."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8318,10 +9240,6 @@ msgstr ""
"pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent "
"vous envoyer des messages destinés à vous seul(e)."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "de"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Impossible de déchiffrer ce message."
@@ -8350,40 +9268,6 @@ msgstr ""
"Une erreur de base de données s’est produite pendant la sauvegarde de votre "
"fichier. Veuillez réessayer."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Le fichier importé dépasse le réglage upload_max_filesize de php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Le fichier importé dépasse le réglage MAX_FILE_SIZE qui a été précisé dans "
-"le formulaire HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Le fichier n’a été que partiellement importé."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Un dossier temporaire est manquant."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Impossible d’écrire sur le disque."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Import de fichier stoppé par une extension."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8404,7 +9288,7 @@ msgstr "Impossible de déterminer le type MIME du fichier."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8415,7 +9299,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "« %s » n’est pas un type de fichier supporté sur ce serveur."
@@ -8447,20 +9331,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Envoyer"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Message"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "de"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Les pseudos ne peuvent contenir que des caractères minuscules et des "
"chiffres, sans espaces."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "Le pseudonyme ne peut pas être vide."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8476,11 +9369,11 @@ msgstr "Envoyer un avis"
msgid "What's up, %s?"
msgstr "Quoi de neuf, %s ?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Attacher"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Joindre un fichier"
@@ -8501,55 +9394,59 @@ msgstr ""
"Veuillez réessayer plus tard."
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "E"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "O"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "chez"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "dans le contexte"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Repris par"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Répondre à cet avis"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Répondre"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Supprimer cet avis"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Avis repris"
@@ -8586,77 +9483,113 @@ msgstr "Avis en doublon."
msgid "Couldn't insert new subscription."
msgstr "Impossible d’insérer un nouvel abonnement."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Personnel"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Réponses"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favoris"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Boîte de réception"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Vos messages reçus"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Boîte d’envoi"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Vos messages envoyés"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Marques dans les avis de %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Inconnu"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Abonnements"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Tous les abonnements"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Abonnés"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Tous les abonnés"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID de l’utilisateur"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Membre depuis"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Groupes"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Moyenne journalière"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Tous les groupes"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Méthode non implémentée."
@@ -8703,7 +9636,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Révoquer le rôle « %s » de cet utilisateur"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "Page non trouvée."
@@ -8793,6 +9726,10 @@ msgstr "Inviter"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviter des amis et collègues à vous rejoindre dans %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "S’abonner à cet utilisateur"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8912,64 +9849,81 @@ msgstr "Désabonnement"
msgid "User %1$s (%2$d) has no profile record."
msgstr "L’utilisateur %1$s (%2$d) n’a pas de profil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Modifier l’avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Actions de l’utilisateur"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Suppression de l'utilisateur en cours..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Modifier les paramètres du profil"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Modifier"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Envoyer un message à cet utilisateur"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Message"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Modérer"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Rôle de l'utilisateur"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrateur"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Modérateur"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Non connecté."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "il y a quelques secondes"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "il y a 1 minute"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8977,12 +9931,12 @@ msgstr[0] "il y a environ une minute"
msgstr[1] "il y a environ %d minutes"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "il y a 1 heure"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8990,12 +9944,12 @@ msgstr[0] "il y a environ une heure"
msgstr[1] "il y a environ %d heures"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "il y a 1 jour"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -9003,12 +9957,12 @@ msgstr[0] "il y a environ un jour"
msgstr[1] "il y a environ %d jours"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "il y a 1 mois"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -9016,18 +9970,13 @@ msgstr[0] "il y a environ un mois"
msgstr[1] "il y a environ %d mois"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "il y a environ 1 an"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "&s n’est pas une couleur valide !"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr ""
@@ -9054,30 +10003,17 @@ msgstr[1] ""
"envoyé %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "XML invalide."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr "XML invalide, racine XRD manquante."
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Obtention de la sauvegarde depuis le fichier « %s »."
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Aucun utilisateur spécifié ; utilisation de l’utilisateur de secours."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "%d entrée dans la sauvegarde."
-msgstr[1] "%d entrées dans la sauvegarde."
diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po
new file mode 100644
index 0000000000..4c127f81de
--- /dev/null
+++ b/locale/fur/LC_MESSAGES/statusnet.po
@@ -0,0 +1,9393 @@
+# Translation of StatusNet - Core to Friulian (Furlan)
+# Exported from translatewiki.net
+#
+# Author: Klenje
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Core\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:43+0000\n"
+"Language-Team: Friulian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: fur\n"
+"X-Message-Group: #out-statusnet-core\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Page title for Access admin panel that allows configuring site access.
+#. TRANS: Menu item for site administration
+#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363
+msgid "Access"
+msgstr "Acès"
+
+#. TRANS: Page notice.
+#: actions/accessadminpanel.php:64
+msgid "Site access settings"
+msgstr ""
+
+#. TRANS: Form legend for registration form.
+#: actions/accessadminpanel.php:151
+msgid "Registration"
+msgstr "Regjistrazion"
+
+#. TRANS: Checkbox instructions for admin setting "Private".
+#: actions/accessadminpanel.php:155
+msgid "Prohibit anonymous users (not logged in) from viewing site?"
+msgstr ""
+
+#. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
+#: actions/accessadminpanel.php:157
+msgctxt "LABEL"
+msgid "Private"
+msgstr "Privât"
+
+#. TRANS: Checkbox instructions for admin setting "Invite only".
+#: actions/accessadminpanel.php:164
+msgid "Make registration invitation only."
+msgstr ""
+
+#. TRANS: Checkbox label for configuring site as invite only.
+#: actions/accessadminpanel.php:166
+msgid "Invite only"
+msgstr ""
+
+#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations).
+#: actions/accessadminpanel.php:173
+msgid "Disable new registrations."
+msgstr ""
+
+#. TRANS: Checkbox label for disabling new user registrations.
+#: actions/accessadminpanel.php:175
+msgid "Closed"
+msgstr "Sierât"
+
+#. TRANS: Title for button to save access settings in site admin panel.
+#: actions/accessadminpanel.php:191
+msgid "Save access settings"
+msgstr ""
+
+#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
+#. TRANS: Button label to save e-mail preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
+#. TRANS: Button text for saving "Other settings" in profile.
+#. TRANS: Button text to store form data in the Paths admin panel.
+#. TRANS: Button to save input in profile settings.
+#. TRANS: Button text for saving site notice in admin panel.
+#. TRANS: Button label to save SMS preferences.
+#. TRANS: Save button for settings for a profile in a subscriptions list.
+#. TRANS: Button text to save user settings in user admin panel.
+#. TRANS: Button label in the "Edit application" form.
+#. TRANS: Button text on profile design page to save settings.
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
+msgctxt "BUTTON"
+msgid "Save"
+msgstr "Salve"
+
+#. TRANS: Server error when page not found (404).
+#. TRANS: Server error when page not found (404)
+#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
+#: actions/showfavorites.php:140 actions/tag.php:52
+msgid "No such page."
+msgstr "La pagjine no esist."
+
+#. TRANS: Client error when user not found for an action.
+#. TRANS: Client error when user not found for an rss related action.
+#. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting.
+#. TRANS: Client error displayed if a user could not be found.
+#. TRANS: Client error when user not found updating a profile background image.
+#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
+#. TRANS: Client error when user not found for an API action to remove a block for a user.
+#. TRANS: Client error given when a user was not found (404).
+#. TRANS: Client error when user not found for an API direct message action.
+#. TRANS: Client error given when a user was not found (404).
+#. TRANS: Client error displayed when checking group membership for a non-existing user.
+#. TRANS: Client error displayed when trying to have a non-existing user join a group.
+#. TRANS: Client error displayed when trying to have a non-existing user leave a group.
+#. TRANS: Client error displayed when updating a status for a non-existing user.
+#. TRANS: Client error displayed when requesting a list of followers for a non-existing user.
+#. TRANS: Client error displayed when requesting most recent favourite notices by a user for a non-existing user.
+#. TRANS: Client error displayed when requesting dents of a user and friends for a user that does not exist.
+#. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user.
+#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
+#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
+#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
+#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
+#: actions/all.php:80 actions/allrss.php:69
+#: actions/apiaccountupdatedeliverydevice.php:110
+#: actions/apiaccountupdateprofile.php:103
+#: actions/apiaccountupdateprofilebackgroundimage.php:118
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
+#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
+#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
+#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
+#: actions/apigrouplist.php:70 actions/apistatusesupdate.php:230
+#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
+#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
+#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
+#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
+#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
+#: lib/mailbox.php:80 lib/profileaction.php:77
+msgid "No such user."
+msgstr "Utent no cjatât."
+
+#. TRANS: Page title. %1$s is user nickname, %2$d is page number
+#: actions/all.php:91
+#, php-format
+msgid "%1$s and friends, page %2$d"
+msgstr "%1$s e ams, page %2$d"
+
+#. TRANS: Page title. %s is user nickname
+#. TRANS: H1 text for page. %s is a user nickname.
+#. TRANS: Message is used as link title. %s is a user nickname.
+#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
+#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
+#: lib/personalgroupnav.php:102
+#, php-format
+msgid "%s and friends"
+msgstr "%s e amîs"
+
+#. TRANS: %s is user nickname.
+#: actions/all.php:108
+#, php-format
+msgid "Feed for friends of %s (RSS 1.0)"
+msgstr "Canâl dai amîs di %s (RSS 1.0)"
+
+#. TRANS: %s is user nickname.
+#: actions/all.php:117
+#, php-format
+msgid "Feed for friends of %s (RSS 2.0)"
+msgstr "Canâl dai amîs di %s (RSS 2.0)"
+
+#. TRANS: %s is user nickname.
+#: actions/all.php:126
+#, php-format
+msgid "Feed for friends of %s (Atom)"
+msgstr "Canâl dai amîs di %s (Atom)"
+
+#. TRANS: Empty list message. %s is a user nickname.
+#: actions/all.php:139
+#, php-format
+msgid ""
+"This is the timeline for %s and friends but no one has posted anything yet."
+msgstr ""
+
+#. TRANS: Encouragement displayed on logged in user's empty timeline.
+#. TRANS: This message contains Markdown links. Keep "](" together.
+#: actions/all.php:146
+#, php-format
+msgid ""
+"Try subscribing to more people, [join a group](%%action.groups%%) or post "
+"something yourself."
+msgstr ""
+"Prove a sotscriviti a plui int, [unîti a un grup](%%action.groups%%) o "
+"publicâ alc di personâl."
+
+#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@".
+#. TRANS: This message contains Markdown links. Keep "](" together.
+#: actions/all.php:150
+#, php-format
+msgid ""
+"You can try to [nudge %1$s](../%2$s) from their profile or [post something "
+"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)."
+msgstr ""
+
+#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users.
+#. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together.
+#. TRANS: Second sentence of empty message for anonymous users. %s is a user nickname.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:227
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
+"post a notice to them."
+msgstr ""
+
+#. TRANS: H1 text for page when viewing a list for self.
+#: actions/all.php:188
+msgid "You and friends"
+msgstr "Tu e i tiei amîs"
+
+#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
+#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name.
+#: actions/allrss.php:122 actions/apitimelinefriends.php:213
+#: actions/apitimelinehome.php:119
+#, php-format
+msgid "Updates from %1$s and friends on %2$s!"
+msgstr "Inzornaments di %1$s e dai siei amîs su %2$s!"
+
+#. TRANS: Client error displayed handling a non-existing API method.
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours.
+#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials.
+#. TRANS: Client error given when an API method was not found (404).
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#. TRANS: Client error displayed trying to execute an unknown API method showing friendship.
+#. TRANS: Client error given when an API method was not found (404).
+#. TRANS: Client error displayed trying to execute an unknown API method showing group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method joining a group.
+#. TRANS: Client error displayed trying to execute an unknown API method leaving a group.
+#. TRANS: Client error displayed trying to execute an unknown API method checking group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups.
+#. TRANS: Client error displayed trying to execute an unknown API method showing group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method showing a group.
+#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity.
+#. TRANS: Client error displayed trying to execute an unknown API method deleting a status.
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#: actions/apiaccountratelimitstatus.php:69
+#: actions/apiaccountupdatedeliverydevice.php:92
+#: actions/apiaccountupdateprofile.php:94
+#: actions/apiaccountupdateprofilebackgroundimage.php:92
+#: actions/apiaccountupdateprofilecolors.php:115
+#: actions/apiaccountverifycredentials.php:68 actions/apidirectmessage.php:157
+#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:98
+#: actions/apifriendshipscreate.php:99 actions/apifriendshipsdestroy.php:99
+#: actions/apifriendshipsshow.php:124 actions/apigroupcreate.php:138
+#: actions/apigroupismember.php:115 actions/apigroupjoin.php:160
+#: actions/apigroupleave.php:145 actions/apigrouplist.php:134
+#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:105
+#: actions/apigroupshow.php:114 actions/apihelptest.php:84
+#: actions/apistatusesdestroy.php:101 actions/apistatusesretweets.php:110
+#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
+#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
+#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
+#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
+#: actions/apitimelineretweetedtome.php:118
+#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
+#: actions/apitimelineuser.php:206 actions/apiusershow.php:100
+msgid "API method not found."
+msgstr ""
+
+#. TRANS: Client error message. POST is a HTTP command. It should not be translated.
+#. TRANS: Client error. POST is a HTTP command. It should not be translated.
+#: actions/apiaccountupdatedeliverydevice.php:83
+#: actions/apiaccountupdateprofile.php:85
+#: actions/apiaccountupdateprofilebackgroundimage.php:83
+#: actions/apiaccountupdateprofilecolors.php:106
+#: actions/apiaccountupdateprofileimage.php:80 actions/apiblockcreate.php:87
+#: actions/apiblockdestroy.php:85 actions/apidirectmessagenew.php:107
+#: actions/apifavoritecreate.php:88 actions/apifavoritedestroy.php:88
+#: actions/apifriendshipscreate.php:89 actions/apifriendshipsdestroy.php:89
+#: actions/apigroupcreate.php:102 actions/apigroupjoin.php:89
+#: actions/apigroupleave.php:89 actions/apimediaupload.php:66
+#: actions/apistatusesretweet.php:63 actions/apistatusesupdate.php:194
+msgid "This method requires a POST."
+msgstr ""
+
+#. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting.
+#: actions/apiaccountupdatedeliverydevice.php:103
+msgid ""
+"You must specify a parameter named 'device' with a value of one of: sms, im, "
+"none."
+msgstr ""
+
+#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
+#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
+msgid "Could not update user."
+msgstr ""
+
+#. TRANS: Client error displayed if a user profile could not be found.
+#. TRANS: Client error displayed when a user has no profile.
+#. TRANS: Client error displayed a user has no profile updating profile colours.
+#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
+#. TRANS: Client error displayed when requesting user information for a user without a profile.
+#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
+#: actions/apiaccountupdateprofile.php:111
+#: actions/apiaccountupdateprofilebackgroundimage.php:199
+#: actions/apiaccountupdateprofilecolors.php:183
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
+#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
+#: lib/profileaction.php:85
+msgid "User has no profile."
+msgstr "L'utent nol à un profîl."
+
+#. TRANS: Server error displayed if a user profile could not be saved.
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
+msgid "Could not save profile."
+msgstr ""
+
+#. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
+#. TRANS: %s is the number of bytes of the CONTENT_LENGTH.
+#. TRANS: Form validation error in design settings form. POST should remain untranslated.
+#: actions/apiaccountupdateprofilebackgroundimage.php:108
+#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
+#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
+#: lib/designsettings.php:298
+#, php-format
+msgid ""
+"The server was unable to handle that much POST data (%s byte) due to its "
+"current configuration."
+msgid_plural ""
+"The server was unable to handle that much POST data (%s bytes) due to its "
+"current configuration."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error displayed when saving design settings fails because of an empty id.
+#. TRANS: Client error displayed when saving design settings fails because of an empty result.
+#. TRANS: Client error displayed when a database error occurs inserting profile colours.
+#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
+#: actions/apiaccountupdateprofilebackgroundimage.php:138
+#: actions/apiaccountupdateprofilebackgroundimage.php:149
+#: actions/apiaccountupdateprofilecolors.php:160
+#: actions/apiaccountupdateprofilecolors.php:171
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
+msgid "Unable to save your design settings."
+msgstr ""
+
+#. TRANS: Error displayed when updating design settings fails.
+#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#: actions/apiaccountupdateprofilebackgroundimage.php:191
+#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
+msgid "Could not update your design."
+msgstr ""
+
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
+msgid "Main"
+msgstr "Principâl"
+
+#. TRANS: Title for Atom feed. %s is a user nickname.
+#. TRANS: Message is used as link title. %s is a user nickname.
+#. TRANS: Title in atom group notice feed. %s is a group name.
+#. TRANS: Title in atom user notice feed. %s is a user name.
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
+#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
+#: lib/atomusernoticefeed.php:88
+#, php-format
+msgid "%s timeline"
+msgstr "Ativitât di %s"
+
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
+#. TRANS: Header for subscriptions overview for a user (first page).
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
+#: actions/subscriptions.php:51
+#, php-format
+msgid "%s subscriptions"
+msgstr "Sotscrizions di %s"
+
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
+msgid "%s favorites"
+msgstr "Preferîts di %s"
+
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
+msgid "%s memberships"
+msgstr "Grups di %s"
+
+#. TRANS: Client error displayed when users try to block themselves.
+#: actions/apiblockcreate.php:105
+msgid "You cannot block yourself!"
+msgstr ""
+
+#. TRANS: Server error displayed when blocking a user has failed.
+#: actions/apiblockcreate.php:127
+msgid "Block user failed."
+msgstr ""
+
+#. TRANS: Server error displayed when unblocking a user has failed.
+#: actions/apiblockdestroy.php:113
+msgid "Unblock user failed."
+msgstr ""
+
+#. TRANS: Title. %s is a user nickname.
+#: actions/apidirectmessage.php:88
+#, php-format
+msgid "Direct messages from %s"
+msgstr "Messaçs direts di %s"
+
+#. TRANS: Subtitle. %s is a user nickname.
+#: actions/apidirectmessage.php:93
+#, php-format
+msgid "All the direct messages sent from %s"
+msgstr "Ducj i messaçs direts inviâts di %s"
+
+#. TRANS: Title. %s is a user nickname.
+#: actions/apidirectmessage.php:102
+#, php-format
+msgid "Direct messages to %s"
+msgstr "Messaçs direts par %s"
+
+#. TRANS: Subtitle. %s is a user nickname.
+#: actions/apidirectmessage.php:107
+#, php-format
+msgid "All the direct messages sent to %s"
+msgstr "Ducj i messaçs direts inviâts a %s"
+
+#. TRANS: Client error displayed when no message text was submitted (406).
+#: actions/apidirectmessagenew.php:117
+msgid "No message text!"
+msgstr "Nissun test tal messaç!"
+
+#. TRANS: Client error displayed when message content is too long.
+#. TRANS: %d is the maximum number of characters for a message.
+#. TRANS: Form validation error displayed when message content is too long.
+#. TRANS: %d is the maximum number of characters for a message.
+#: actions/apidirectmessagenew.php:127 actions/newmessage.php:152
+#, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] ""
+"Test masse lunc. La lungjece massime pai messaçs e je di %d caratar."
+msgstr[1] ""
+"Test masse lunc. La lungjece massime pai messaçs e je di %d caratars."
+
+#. TRANS: Client error displayed if a recipient user could not be found (403).
+#: actions/apidirectmessagenew.php:139
+msgid "Recipient user not found."
+msgstr ""
+
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
+msgid "Cannot send direct messages to users who aren't your friend."
+msgstr ""
+
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
+#. TRANS: Client error displayed when requesting a status with a non-existing ID.
+#. TRANS: Client error displayed when trying to remove a favourite with an invalid ID.
+#. TRANS: Client error displayed trying to delete a status with an invalid ID.
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:108
+#: actions/apistatusesdestroy.php:121
+msgid "No status found with that ID."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to mark a notice favourite that already is a favourite.
+#: actions/apifavoritecreate.php:120
+msgid "This status is already a favorite."
+msgstr ""
+
+#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
+#. TRANS: Error message text shown when a favorite could not be set.
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
+msgid "Could not create favorite."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite.
+#: actions/apifavoritedestroy.php:122
+msgid "That status is not a favorite."
+msgstr ""
+
+#. TRANS: Client error displayed when removing a favourite has failed.
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
+msgid "Could not delete favorite."
+msgstr ""
+
+#. TRANS: Client error displayed when trying follow who's profile could not be found.
+#: actions/apifriendshipscreate.php:109
+msgid "Could not follow user: profile not found."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to follow a user that's already being followed.
+#. TRANS: %s is the nickname of the user that is already being followed.
+#: actions/apifriendshipscreate.php:120
+#, php-format
+msgid "Could not follow user: %s is already on your list."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to unfollow a user that cannot be found.
+#: actions/apifriendshipsdestroy.php:109
+msgid "Could not unfollow user: User not found."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to unfollow self.
+#: actions/apifriendshipsdestroy.php:121
+msgid "You cannot unfollow yourself."
+msgstr ""
+
+#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
+#: actions/apifriendshipsexists.php:88
+msgid "Two valid IDs or nick names must be supplied."
+msgstr ""
+
+#. TRANS: Client error displayed when a source user could not be determined showing friendship.
+#: actions/apifriendshipsshow.php:131
+msgid "Could not determine source user."
+msgstr ""
+
+#. TRANS: Client error displayed when a target user could not be determined showing friendship.
+#: actions/apifriendshipsshow.php:140
+msgid "Could not find target user."
+msgstr ""
+
+#. TRANS: Client error trying to create a group with a nickname this is already in use.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
+msgid "Nickname already in use. Try another one."
+msgstr "Il sorenon al è za doprât. Provent un altri."
+
+#. TRANS: Client error in form for group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
+msgid "Not a valid nickname."
+msgstr "Nol è un sorenon valit."
+
+#. TRANS: Client error in form for group creation.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
+#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
+msgid "Homepage is not a valid URL."
+msgstr "La pagjine web no je une direzion valide."
+
+#. TRANS: Client error in form for group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
+msgid "Full name is too long (maximum 255 characters)."
+msgstr "Il non complet al è masse lunc (max 255 caratars)."
+
+#. TRANS: Client error shown when providing too long a description during group creation.
+#. TRANS: %d is the maximum number of allowed characters.
+#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
+#. TRANS: Group edit form validation error.
+#. TRANS: Form validation error in New application form.
+#. TRANS: %d is the maximum number of characters for the description.
+#. TRANS: Group create form validation error.
+#. TRANS: %d is the maximum number of allowed characters.
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
+#, php-format
+msgid "Description is too long (maximum %d character)."
+msgid_plural "Description is too long (maximum %d characters)."
+msgstr[0] "La descrizion e je masse lungje (massim %d caratar)."
+msgstr[1] "La descrizion e je masse lungje (massim %d caratars)."
+
+#. TRANS: Client error shown when providing too long a location during group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
+msgid "Location is too long (maximum 255 characters)."
+msgstr "Il lûc al è masse lunc (max 255 caratars)."
+
+#. TRANS: Client error shown when providing too many aliases during group creation.
+#. TRANS: %d is the maximum number of allowed aliases.
+#. TRANS: Group edit form validation error.
+#. TRANS: %d is the maximum number of allowed aliases.
+#. TRANS: Group create form validation error.
+#. TRANS: %d is the maximum number of allowed aliases.
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
+#, php-format
+msgid "Too many aliases! Maximum %d allowed."
+msgid_plural "Too many aliases! Maximum %d allowed."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error shown when providing an invalid alias during group creation.
+#. TRANS: %s is the invalid alias.
+#: actions/apigroupcreate.php:253
+#, php-format
+msgid "Invalid alias: \"%s\"."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
+#. TRANS: %s is the alias that is already in use.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
+#, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
+#. TRANS: Group edit form validation error.
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
+msgid "Alias can't be the same as nickname."
+msgstr ""
+
+#. TRANS: Client error displayed when checking group membership for a non-existing group.
+#. TRANS: Client error displayed when trying to join a group that does not exist.
+#. TRANS: Client error displayed when trying to leave a group that does not exist.
+#. TRANS: Client error displayed trying to show group membership on a non-existing group.
+#. TRANS: Client error displayed when trying to show a group that could not be found.
+#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
+#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
+#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
+msgid "Group not found."
+msgstr "Grup no cjatât."
+
+#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
+#. TRANS: Error text shown a user tries to join a group they already are a member of.
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
+msgid "You are already a member of that group."
+msgstr "Tu fasis za part di chest grup."
+
+#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
+#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
+msgid "You have been blocked from that group by the admin."
+msgstr ""
+
+#. TRANS: Server error displayed when joining a group fails.
+#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
+#. TRANS: Message given having failed to add a user to a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
+#, php-format
+msgid "Could not join user %1$s to group %2$s."
+msgstr "No si à podût zontâ l'utent %1$s al grup %2$s."
+
+#. TRANS: Server error displayed when trying to leave a group the user is not a member of.
+#: actions/apigroupleave.php:115
+msgid "You are not a member of this group."
+msgstr "No tu fasis part di chest grup."
+
+#. TRANS: Server error displayed when leaving a group fails.
+#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
+#. TRANS: Message given having failed to remove a user from a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
+#: lib/command.php:398
+#, php-format
+msgid "Could not remove user %1$s from group %2$s."
+msgstr ""
+
+#. TRANS: Used as title in check for group membership. %s is a user name.
+#: actions/apigrouplist.php:94
+#, php-format
+msgid "%s's groups"
+msgstr "Grups di %s"
+
+#. TRANS: Used as subtitle in check for group membership. %1$s is a user name, %2$s is the site name.
+#: actions/apigrouplist.php:104
+#, php-format
+msgid "%1$s groups %2$s is a member of."
+msgstr ""
+
+#. TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name.
+#. TRANS: Message is used as a page title. %s is a nick name.
+#: actions/apigrouplistall.php:88 actions/usergroups.php:63
+#, php-format
+msgid "%s groups"
+msgstr "Grups di %s"
+
+#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name.
+#: actions/apigrouplistall.php:93
+#, php-format
+msgid "groups on %s"
+msgstr "grups su %s"
+
+#. TRANS: Client error displayed when uploading a media file has failed.
+#: actions/apimediaupload.php:101
+msgid "Upload failed."
+msgstr "Cjamade falide."
+
+#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
+#: actions/apioauthaccesstoken.php:102
+msgid "Invalid request token or verifier."
+msgstr ""
+
+#. TRANS: Client error given when no oauth_token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:107
+msgid "No oauth_token parameter provided."
+msgstr ""
+
+#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129
+msgid "Invalid request token."
+msgstr ""
+
+#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:121
+msgid "Request token already authorized."
+msgstr ""
+
+#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
+#: lib/designsettings.php:310
+msgid "There was a problem with your session token. Try again, please."
+msgstr ""
+
+#. TRANS: Form validation error given when an invalid username and/or password was passed to the OAuth API.
+#: actions/apioauthauthorize.php:168
+msgid "Invalid nickname / password!"
+msgstr "Il sorenon o la password no son valits."
+
+#. TRANS: Server error displayed when a database action fails.
+#: actions/apioauthauthorize.php:217
+msgid "Database error inserting oauth_token_association."
+msgstr ""
+
+#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
+#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
+#. TRANS: Client error displayed submitting invalid form data for edit application.
+#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
+#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
+#. TRANS: Message given submitting a form with an unknown action in SMS settings.
+#. TRANS: Unknown form validation error in design settings form.
+#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
+msgid "Unexpected form submission."
+msgstr ""
+
+#. TRANS: Title for a page where a user can confirm/deny account access by an external application.
+#: actions/apioauthauthorize.php:387
+msgid "An application would like to connect to your account"
+msgstr ""
+
+#. TRANS: Fieldset legend.
+#: actions/apioauthauthorize.php:404
+msgid "Allow or deny access"
+msgstr ""
+
+#. TRANS: User notification of external application requesting account access.
+#. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename.
+#: actions/apioauthauthorize.php:425
+#, php-format
+msgid ""
+"An application would like the ability to %3$s your %4$s "
+"account data. You should only give access to your %4$s account to third "
+"parties you trust."
+msgstr ""
+
+#. TRANS: User notification of external application requesting account access.
+#. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application,
+#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename.
+#: actions/apioauthauthorize.php:433
+#, php-format
+msgid ""
+"The application %1$s by %2$s would like "
+"the ability to %3$s your %4$s account data. You should only "
+"give access to your %4$s account to third parties you trust."
+msgstr ""
+
+#. TRANS: Fieldset legend.
+#: actions/apioauthauthorize.php:455
+msgctxt "LEGEND"
+msgid "Account"
+msgstr "Identitât"
+
+#. TRANS: Field label on OAuth API authorisation form.
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for group nickname (dt). Text hidden by default.
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
+msgid "Nickname"
+msgstr "Sorenon"
+
+#. TRANS: Field label on OAuth API authorisation form.
+#. TRANS: Link description in user account settings menu.
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
+msgid "Password"
+msgstr "Password"
+
+#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
+#. TRANS: by an external application.
+#. TRANS: Button label to cancel an e-mail address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
+#. TRANS: Button label to cancel a SMS address confirmation procedure.
+#. TRANS: Button label in the "Edit application" form.
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
+#: lib/applicationeditform.php:351
+msgctxt "BUTTON"
+msgid "Cancel"
+msgstr "Scancele"
+
+#. TRANS: Button text that when clicked will allow access to an account by an external application.
+#: actions/apioauthauthorize.php:485
+msgctxt "BUTTON"
+msgid "Allow"
+msgstr "Permet"
+
+#. TRANS: Form instructions.
+#: actions/apioauthauthorize.php:502
+msgid "Authorize access to your account information."
+msgstr ""
+
+#. TRANS: Header for user notification after revoking OAuth access to an application.
+#: actions/apioauthauthorize.php:594
+msgid "Authorization canceled."
+msgstr ""
+
+#. TRANS: User notification after revoking OAuth access to an application.
+#. TRANS: %s is an OAuth token.
+#: actions/apioauthauthorize.php:598
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
+#: actions/apioauthauthorize.php:621
+msgid "You have successfully authorized the application"
+msgstr ""
+
+#. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
+#: actions/apioauthauthorize.php:625
+msgid ""
+"Please return to the application and enter the following security code to "
+"complete the process."
+msgstr ""
+
+#. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth.
+#. TRANS: %s is the authorised application name.
+#: actions/apioauthauthorize.php:632
+#, php-format
+msgid "You have successfully authorized %s"
+msgstr ""
+
+#. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth.
+#. TRANS: %s is the authorised application name.
+#: actions/apioauthauthorize.php:639
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete a status not using POST or DELETE.
+#. TRANS: POST and DELETE should not be translated.
+#: actions/apistatusesdestroy.php:111
+msgid "This method requires a POST or DELETE."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete a status of another user.
+#: actions/apistatusesdestroy.php:136
+msgid "You may not delete another user's status."
+msgstr ""
+
+#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
+#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
+#. TRANS: Error message displayed trying to delete a non-existing notice.
+#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
+#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
+#: actions/shownotice.php:92
+msgid "No such notice."
+msgstr "L'avîs nol esist."
+
+#. TRANS: Client error displayed trying to repeat an own notice through the API.
+#. TRANS: Error text shown when trying to repeat an own notice.
+#: actions/apistatusesretweet.php:83 lib/command.php:537
+msgid "Cannot repeat your own notice."
+msgstr ""
+
+#. TRANS: Client error displayed trying to re-repeat a notice through the API.
+#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user.
+#: actions/apistatusesretweet.php:92 lib/command.php:543
+msgid "Already repeated that notice."
+msgstr ""
+
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
+#: actions/atompubsubscriptionfeed.php:109
+msgid "HTTP method not supported."
+msgstr ""
+
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
+#, php-format
+msgid "Unsupported format: %s."
+msgstr ""
+
+#. TRANS: Client error displayed requesting a deleted status.
+#: actions/apistatusesshow.php:155
+msgid "Status deleted."
+msgstr "Stât eliminât."
+
+#. TRANS: Client error displayed requesting a status with an invalid ID.
+#: actions/apistatusesshow.php:162
+msgid "No status with that ID found."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
+msgid "Can only delete using the Atom format."
+msgstr ""
+
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
+#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
+msgstr "No si pues eliminâ chest avîs."
+
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
+#, php-format
+msgid "Deleted notice %d"
+msgstr "L'avîs %d al è stât eliminât."
+
+#. TRANS: Client error displayed when the parameter "status" is missing.
+#: actions/apistatusesupdate.php:221
+msgid "Client must provide a 'status' parameter with a value."
+msgstr ""
+
+#. TRANS: Client error displayed when the parameter "status" is missing.
+#. TRANS: %d is the maximum number of character for a notice.
+#: actions/apistatusesupdate.php:244 actions/newnotice.php:161
+#: lib/mailhandler.php:60
+#, php-format
+msgid "That's too long. Maximum notice size is %d character."
+msgid_plural "That's too long. Maximum notice size is %d characters."
+msgstr[0] "Test masse lunc. La lungjece massime pai avîs e je di %d caratar."
+msgstr[1] "Test masse lunc. La lungjece massime pai avîs e je di %d caratars."
+
+#. TRANS: Client error displayed when replying to a non-existing notice.
+#: actions/apistatusesupdate.php:284
+msgid "Parent notice not found."
+msgstr ""
+
+#. TRANS: Client error displayed exceeding the maximum notice length.
+#. TRANS: %d is the maximum lenth for a notice.
+#: actions/apistatusesupdate.php:308 actions/newnotice.php:184
+#, php-format
+msgid "Maximum notice size is %d character, including attachment URL."
+msgid_plural "Maximum notice size is %d characters, including attachment URL."
+msgstr[0] ""
+"La lungjece massime pai avîs e je di %d caratar, includint la URL alegade."
+msgstr[1] ""
+"La lungjece massime pai avîs e je di %d caratars, includint la URL alegade."
+
+#. TRANS: Client error displayed when requesting profiles of followers in an unsupported format.
+#. TRANS: Client error displayed when requesting IDs of followers in an unsupported format.
+#: actions/apisubscriptions.php:228 actions/apisubscriptions.php:258
+msgid "Unsupported format."
+msgstr ""
+
+#. TRANS: Title for timeline of most recent favourite notices by a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
+#: actions/apitimelinefavorites.php:108
+#, php-format
+msgid "%1$s / Favorites from %2$s"
+msgstr "%1$s / Preferîts di %2$s"
+
+#. TRANS: Subtitle for timeline of most recent favourite notices by a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name,
+#. TRANS: %3$s is a user nickname.
+#: actions/apitimelinefavorites.php:120
+#, php-format
+msgid "%1$s updates favorited by %2$s / %3$s."
+msgstr "%1$s inzornaments preferîts di %2$s / %3$s."
+
+#. TRANS: Server error displayed when generating an Atom feed fails.
+#. TRANS: %s is the error.
+#: actions/apitimelinegroup.php:134
+#, php-format
+msgid "Could not generate feed for group - %s"
+msgstr ""
+
+#. TRANS: Title for timeline of most recent mentions of a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
+#: actions/apitimelinementions.php:115
+#, php-format
+msgid "%1$s / Updates mentioning %2$s"
+msgstr "%1$s / Inzornaments che a tabain di %2$s"
+
+#. TRANS: Subtitle for timeline of most recent mentions of a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname,
+#. TRANS: %3$s is a user's full name.
+#: actions/apitimelinementions.php:131
+#, php-format
+msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgstr "Inzornaments di %1$s che a rispuindin a inzornaments di %2$s / %3$s."
+
+#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
+#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
+#, php-format
+msgid "%s public timeline"
+msgstr "Ativitât publiche di %s"
+
+#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
+#: actions/apitimelinepublic.php:199
+#, php-format
+msgid "%s updates from everyone!"
+msgstr "Inzornaments di %s di ducj cuancj!"
+
+#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'.
+#: actions/apitimelineretweetedbyme.php:71
+msgid "Unimplemented."
+msgstr ""
+
+#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname.
+#: actions/apitimelineretweetedtome.php:108
+#, php-format
+msgid "Repeated to %s"
+msgstr "Ripetût a %s"
+
+#. TRANS: Title of list of repeated notices of the logged in user.
+#. TRANS: %s is the nickname of the logged in user.
+#: actions/apitimelineretweetsofme.php:112
+#, php-format
+msgid "Repeats of %s"
+msgstr "Ripetizions di %s"
+
+#. TRANS: Title for timeline with lastest notices with a given tag.
+#. TRANS: %s is the tag.
+#: actions/apitimelinetag.php:101 actions/tag.php:67
+#, php-format
+msgid "Notices tagged with %s"
+msgstr "Avîs etichetâts cun %s"
+
+#. TRANS: Subtitle for timeline with lastest notices with a given tag.
+#. TRANS: %1$s is the tag, $2$s is the StatusNet sitename.
+#: actions/apitimelinetag.php:105 actions/tagrss.php:65
+#, php-format
+msgid "Updates tagged with %1$s on %2$s!"
+msgstr "Inzornaments etichetâts cun %1$s su %2$s!"
+
+#. TRANS: Client error displayed trying to add a notice to another user's timeline.
+#: actions/apitimelineuser.php:297
+msgid "Only the user can add to their own timeline."
+msgstr ""
+
+#. TRANS: Client error displayed when using another format than AtomPub.
+#: actions/apitimelineuser.php:304
+msgid "Only accept AtomPub for Atom feeds."
+msgstr ""
+
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
+msgid "Atom post must not be empty."
+msgstr ""
+
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
+msgid "Atom post must be well-formed XML."
+msgstr ""
+
+#. TRANS: Client error displayed when not using an Atom entry.
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
+msgid "Atom post must be an Atom entry."
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
+msgid "Can only handle POST activities."
+msgstr ""
+
+#. TRANS: Client error displayed when using an unsupported activity object type.
+#. TRANS: %s is the unsupported activity object type.
+#: actions/apitimelineuser.php:345
+#, php-format
+msgid "Cannot handle activity object type \"%s\"."
+msgstr ""
+
+#. TRANS: Client error displayed when posting a notice without content through the API.
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
+msgid "No content for notice %d."
+msgstr ""
+
+#. TRANS: Client error displayed when using another format than AtomPub.
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
+#, php-format
+msgid "Notice with URI \"%s\" already exists."
+msgstr ""
+
+#. TRANS: Server error for unfinished API method showTrends.
+#: actions/apitrends.php:85
+msgid "API method under construction."
+msgstr ""
+
+#. TRANS: Client error displayed when requesting user information for a non-existing user.
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
+msgid "User not found."
+msgstr "L'utent nol è stât cjatât."
+
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
+msgstr "Il profîl nol esist."
+
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Avîs che %1$s al metût tai preferîts su %2$s"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "No si pues zontâ sotscrizions a cualchidun altri."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr ""
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
+#: actions/atompubmembershipfeed.php:144
+#, php-format
+msgid "%s group memberships"
+msgstr "Apartignincis ai grups di %s"
+
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "Grups dal utent %1$s su %2$s"
+
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "No si pues zontâ une apartignince a cualchidun altri."
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
+msgid "Unknown group."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
+msgid "Already a member."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
+msgid "Blocked by admin."
+msgstr ""
+
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
+msgid "No such favorite."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
+#: actions/atompubshowfavorite.php:151
+msgid "Cannot delete someone else's favorite."
+msgstr ""
+
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr ""
+
+#. TRANS: Client exception thrown when deleting someone else's membership.
+#: actions/atompubshowmembership.php:150
+msgid "Cannot delete someone else's membership."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
+#, php-format
+msgid "No such profile id: %d."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Il profîl %1$d nol è sotscrit al profîl %2$d."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr ""
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "Sotscrizions di %1$s su %2$s"
+
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
+msgid "Can only handle Follow activities."
+msgstr ""
+
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
+msgid "Can only follow people."
+msgstr ""
+
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr ""
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "Tu sês za sotscrit a %s."
+
+#. TRANS: Client error displayed trying to get a non-existing attachment.
+#: actions/attachment.php:73
+msgid "No such attachment."
+msgstr ""
+
+#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
+#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
+#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
+#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
+#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
+#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
+#: actions/grouplogo.php:86 actions/groupmembers.php:76
+#: actions/grouprss.php:89 actions/showgroup.php:116
+msgid "No nickname."
+msgstr ""
+
+#. TRANS: Client error displayed trying to get an avatar without providing an avatar size.
+#: actions/avatarbynickname.php:66
+msgid "No size."
+msgstr "Nissune dimension."
+
+#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size.
+#: actions/avatarbynickname.php:72
+msgid "Invalid size."
+msgstr "La dimension no je valide."
+
+#. TRANS: Title for avatar upload page.
+#. TRANS: Label for group avatar (dt). Text hidden by default.
+#. TRANS: Link description in user account settings menu.
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
+#: lib/accountsettingsaction.php:113
+msgid "Avatar"
+msgstr "Avatar"
+
+#. TRANS: Instruction for avatar upload page.
+#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
+#: actions/avatarsettings.php:78
+#, php-format
+msgid "You can upload your personal avatar. The maximum file size is %s."
+msgstr ""
+"Tu puedis cjamâ un avatar personâl. La dimension massime dal file e je di %s."
+
+#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
+#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
+msgid "User without matching profile."
+msgstr ""
+
+#. TRANS: Avatar upload page form legend.
+#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
+#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
+#: actions/grouplogo.php:261
+msgid "Avatar settings"
+msgstr "Impuestazions dal avatar"
+
+#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
+#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
+msgid "Original"
+msgstr "Origjinâl"
+
+#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
+#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
+msgid "Preview"
+msgstr "Anteprime"
+
+#. TRANS: Button on avatar upload page to delete current avatar.
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
+msgctxt "BUTTON"
+msgid "Delete"
+msgstr "Elimine"
+
+#. TRANS: Button on avatar upload page to upload an avatar.
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
+msgctxt "BUTTON"
+msgid "Upload"
+msgstr "Cjame"
+
+#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar.
+#: actions/avatarsettings.php:243
+msgctxt "BUTTON"
+msgid "Crop"
+msgstr "Taie"
+
+#. TRANS: Validation error on avatar upload form when no file was uploaded.
+#: actions/avatarsettings.php:318
+msgid "No file uploaded."
+msgstr "No si à cjamât nissun file."
+
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
+msgstr "Cjape une aree retangolâr de figure par doprâle come avatar."
+
+#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
+msgid "Lost our file data."
+msgstr "I dâts dal file a son lâts pierdûts."
+
+#. TRANS: Success message for having updated a user avatar.
+#: actions/avatarsettings.php:384
+msgid "Avatar updated."
+msgstr "Avatar inzornât."
+
+#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
+#: actions/avatarsettings.php:388
+msgid "Failed updating avatar."
+msgstr "Erôr tal inzornament dal avatar."
+
+#. TRANS: Success message for deleting a user avatar.
+#: actions/avatarsettings.php:412
+msgid "Avatar deleted."
+msgstr "Avatar eliminât."
+
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr ""
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
+#. TRANS: Client error displayed when blocking a user that has already been blocked.
+#: actions/block.php:68
+msgid "You already blocked that user."
+msgstr "Tu âs za blocât chest utent."
+
+#. TRANS: Title for block user page.
+#. TRANS: Legend for block user form.
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
+msgid "Block user"
+msgstr "Bloche utent"
+
+#. TRANS: Explanation of consequences when blocking a user on the block user page.
+#: actions/block.php:139
+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 ""
+
+#. TRANS: Button label on the user block form.
+#. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
+#. TRANS: Button label on the delete notice form.
+#. TRANS: Button label on the delete user form.
+#. TRANS: Button label on the form to block a user from a group.
+#: actions/block.php:154 actions/deleteapplication.php:157
+#: actions/deletegroup.php:220 actions/deletenotice.php:155
+#: actions/deleteuser.php:154 actions/groupblock.php:187
+msgctxt "BUTTON"
+msgid "No"
+msgstr "No"
+
+#. TRANS: Submit button title for 'No' when blocking a user.
+#: actions/block.php:158
+msgid "Do not block this user."
+msgstr "No stâ blocâ chest utent"
+
+#. TRANS: Button label on the user block form.
+#. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
+#. TRANS: Button label on the delete notice form.
+#. TRANS: Button label on the delete user form.
+#. TRANS: Button label on the form to block a user from a group.
+#: actions/block.php:161 actions/deleteapplication.php:164
+#: actions/deletegroup.php:227 actions/deletenotice.php:162
+#: actions/deleteuser.php:161 actions/groupblock.php:194
+msgctxt "BUTTON"
+msgid "Yes"
+msgstr "Sì"
+
+#. TRANS: Submit button title for 'Yes' when blocking a user.
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "Bloche chest utent"
+
+#. TRANS: Server error displayed when blocking a user fails.
+#: actions/block.php:189
+msgid "Failed to save block information."
+msgstr ""
+
+#. TRANS: Title for first page with list of users blocked from a group.
+#. TRANS: %s is a group nickname.
+#: actions/blockedfromgroup.php:101
+#, php-format
+msgid "%s blocked profiles"
+msgstr "Profîi blocâts di %s"
+
+#. TRANS: Title for any but the first page with list of users blocked from a group.
+#. TRANS: %1$s is a group nickname, %2$d is a page number.
+#: actions/blockedfromgroup.php:106
+#, php-format
+msgid "%1$s blocked profiles, page %2$d"
+msgstr ""
+
+#. TRANS: Instructions for list of users blocked from a group.
+#: actions/blockedfromgroup.php:122
+msgid "A list of the users blocked from joining this group."
+msgstr "Une liste dai utents che a son blocâts e no puedin unîsi al grup."
+
+#. TRANS: Form legend for unblocking a user from a group.
+#: actions/blockedfromgroup.php:291
+msgid "Unblock user from group"
+msgstr ""
+
+#. TRANS: Button text for unblocking a user from a group.
+#: actions/blockedfromgroup.php:323
+msgctxt "BUTTON"
+msgid "Unblock"
+msgstr "Disbloche"
+
+#. TRANS: Tooltip for button for unblocking a user from a group.
+#. TRANS: Description of the form to unblock a user.
+#: actions/blockedfromgroup.php:327 lib/unblockform.php:78
+msgid "Unblock this user"
+msgstr "Disbloche chest utent"
+
+#. TRANS: Title for mini-posting window loaded from bookmarklet.
+#. TRANS: %s is the StatusNet site name.
+#: actions/bookmarklet.php:51
+#, php-format
+msgid "Post to %s"
+msgstr "Publiche su %s"
+
+#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action.
+#: actions/confirmaddress.php:74
+msgid "No confirmation code."
+msgstr ""
+
+#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action.
+#: actions/confirmaddress.php:80
+msgid "Confirmation code not found."
+msgstr ""
+
+#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action.
+#: actions/confirmaddress.php:86
+msgid "That confirmation code is not for you!"
+msgstr ""
+
+#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'.
+#: actions/confirmaddress.php:92
+#, php-format
+msgid "Unrecognized address type %s."
+msgstr ""
+
+#. TRANS: Client error for an already confirmed email/jabber/sms address.
+#: actions/confirmaddress.php:97
+msgid "That address has already been confirmed."
+msgstr ""
+
+#. TRANS: Server error displayed when an address confirmation code deletion from the
+#. TRANS: database fails in the contact address confirmation action.
+#: actions/confirmaddress.php:132
+msgid "Could not delete address confirmation."
+msgstr ""
+
+#. TRANS: Title for the contact address confirmation action.
+#: actions/confirmaddress.php:150
+msgid "Confirm address"
+msgstr "Conferme la direzion"
+
+#. TRANS: Success message for the contact address confirmation action.
+#. TRANS: %s can be 'email', 'jabber', or 'sms'.
+#: actions/confirmaddress.php:166
+#, php-format
+msgid "The address \"%s\" has been confirmed for your account."
+msgstr "La direzion \"%s\" e je stade confermade pe tô identitât."
+
+#. TRANS: Title for page with a conversion (multiple notices in context).
+#: actions/conversation.php:96
+msgid "Conversation"
+msgstr "Tabaiade"
+
+#. TRANS: Header on conversation page. Hidden by default (h2).
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
+msgid "Notices"
+msgstr "Avîs"
+
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr ""
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "O soi sigûr."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "La identitât e je stade eliminade."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Elimine la identitât"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Conferme"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr ""
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Elimine par simpri la tô identitât"
+
+#. TRANS: Client error displayed trying to delete an application while not logged in.
+#: actions/deleteapplication.php:62
+msgid "You must be logged in to delete an application."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete an application that does not exist.
+#: actions/deleteapplication.php:71
+msgid "Application not found."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete an application the current user does not own.
+#. TRANS: Client error displayed trying to edit an application while not being its owner.
+#: actions/deleteapplication.php:79 actions/editapplication.php:78
+#: actions/showapplication.php:90
+msgid "You are not the owner of this application."
+msgstr ""
+
+#. TRANS: Client error text when there is a problem with the session token.
+#: actions/deleteapplication.php:102 actions/editapplication.php:131
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
+msgid "There was a problem with your session token."
+msgstr ""
+
+#. TRANS: Title for delete application page.
+#. TRANS: Fieldset legend on delete application page.
+#: actions/deleteapplication.php:124 actions/deleteapplication.php:149
+msgid "Delete application"
+msgstr "Elimine la aplicazion"
+
+#. TRANS: Confirmation text on delete application page.
+#: actions/deleteapplication.php:152
+msgid ""
+"Are you sure you want to delete this application? This will clear all data "
+"about the application from the database, including all existing user "
+"connections."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting an application.
+#: actions/deleteapplication.php:161
+msgid "Do not delete this application."
+msgstr ""
+
+#. TRANS: Submit button title for 'Yes' when deleting an application.
+#: actions/deleteapplication.php:167
+msgid "Delete this application."
+msgstr "Elimine cheste aplicazion"
+
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
+msgid "You must be logged in to delete a group."
+msgstr ""
+
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
+msgid "No nickname or ID."
+msgstr ""
+
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
+msgid "You are not allowed to delete this group."
+msgstr ""
+
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
+#, php-format
+msgid "Could not delete group %s."
+msgstr ""
+
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
+#, php-format
+msgid "Deleted group %s"
+msgstr "Il grup %s al è stât eliminât"
+
+#. TRANS: Title of delete group page.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
+msgid "Delete group"
+msgstr "Elimine il grup"
+
+#. TRANS: Warning in form for deleleting a group.
+#: actions/deletegroup.php:206
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:224
+msgid "Do not delete this group."
+msgstr ""
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:231
+msgid "Delete this group."
+msgstr "Elimine chest grup."
+
+#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
+#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
+#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
+#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
+#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
+#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
+#: actions/tagother.php:33 actions/unsubscribe.php:52
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
+#: lib/settingsaction.php:72
+msgid "Not logged in."
+msgstr "No tu sês jentrât."
+
+#. TRANS: Instructions for deleting a notice.
+#: actions/deletenotice.php:110
+msgid ""
+"You are about to permanently delete a notice. Once this is done, it cannot "
+"be undone."
+msgstr ""
+"Tu sês daûr a eliminâ par simpri un avîs. Une volte fat, no si pues tornâ "
+"indaûr."
+
+#. TRANS: Page title when deleting a notice.
+#. TRANS: Fieldset legend for the delete notice form.
+#: actions/deletenotice.php:117 actions/deletenotice.php:148
+msgid "Delete notice"
+msgstr "Elimine l'avîs"
+
+#. TRANS: Message for the delete notice form.
+#: actions/deletenotice.php:152
+msgid "Are you sure you want to delete this notice?"
+msgstr "Sêstu sigûr di volê eliminâ chest avîs?"
+
+#. TRANS: Submit button title for 'No' when deleting a notice.
+#: actions/deletenotice.php:159
+msgid "Do not delete this notice."
+msgstr "No stâ eliminâ chest avîs"
+
+#. TRANS: Submit button title for 'Yes' when deleting a notice.
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
+msgstr "Elimine chest avîs"
+
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
+msgid "You cannot delete users."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to delete a non-local user.
+#: actions/deleteuser.php:74
+msgid "You can only delete local users."
+msgstr ""
+
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
+msgid "Delete user"
+msgstr "Elimine utent"
+
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Elimine utent"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
+msgid ""
+"Are you sure you want to delete this user? This will clear all data about "
+"the user from the database, without a backup."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr "No stâ eliminâ chest utent"
+
+#. TRANS: Submit button title for 'Yes' when deleting a user.
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "Elimine chest utent"
+
+#. TRANS: Message used as title for design settings for the site.
+#. TRANS: Link description in user account settings menu.
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
+msgid "Design"
+msgstr ""
+
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
+msgid "Design settings for this StatusNet site"
+msgstr ""
+
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
+msgid "Invalid logo URL."
+msgstr ""
+
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
+msgid "Invalid SSL logo URL."
+msgstr ""
+
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
+#, php-format
+msgid "Theme not available: %s."
+msgstr ""
+
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
+msgid "Change logo"
+msgstr ""
+
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
+msgid "Site logo"
+msgstr ""
+
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
+msgid "SSL logo"
+msgstr ""
+
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
+msgid "Change theme"
+msgstr "Cambie il teme"
+
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
+msgid "Site theme"
+msgstr ""
+
+#. TRANS: Title for field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:487
+msgid "Theme for the site."
+msgstr ""
+
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
+msgid "Custom theme"
+msgstr ""
+
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
+msgid "You can upload a custom StatusNet theme as a .ZIP archive."
+msgstr ""
+
+#. TRANS: Fieldset legend for theme background image.
+#. TRANS: Fieldset legend on profile design page.
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
+msgid "Change background image"
+msgstr ""
+
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
+#. TRANS: Label on profile design page for setting a profile page background colour.
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
+#: lib/designsettings.php:183
+msgid "Background"
+msgstr ""
+
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
+#, php-format
+msgid ""
+"You can upload a background image for the site. The maximum file size is %1"
+"$s."
+msgstr ""
+
+#. TRANS: Used as radio button label to add a background image.
+#: actions/designadminpanel.php:558
+msgid "On"
+msgstr "Ativade"
+
+#. TRANS: Used as radio button label to not add a background image.
+#: actions/designadminpanel.php:575
+msgid "Off"
+msgstr "Disativade"
+
+#. TRANS: Form guide for turning background image on or off on theme designer page.
+#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
+#. TRANS: use of the uploaded profile image.
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
+msgid "Turn background image on or off."
+msgstr ""
+
+#. TRANS: Checkbox label to title background image on theme designer page.
+#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
+msgid "Tile background image"
+msgstr ""
+
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
+msgstr "Cambie i colôrs"
+
+#. TRANS: Field label for content color selector.
+#. TRANS: Label on profile design page for setting a profile page content colour.
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
+msgid "Content"
+msgstr ""
+
+#. TRANS: Field label for sidebar color selector.
+#. TRANS: Label on profile design page for setting a profile page sidebar colour.
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
+msgid "Sidebar"
+msgstr ""
+
+#. TRANS: Field label for text color selector.
+#. TRANS: Label on profile design page for setting a profile page text colour.
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
+msgid "Text"
+msgstr "Test"
+
+#. TRANS: Field label for link color selector.
+#. TRANS: Label on profile design page for setting a profile page links colour.
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
+msgid "Links"
+msgstr "Leams"
+
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
+msgid "Advanced"
+msgstr "Avançadis"
+
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
+msgid "Custom CSS"
+msgstr "CSS personalizât"
+
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
+msgid "Use defaults"
+msgstr "Dopre i parametris predeterminâts"
+
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
+msgstr ""
+
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr ""
+
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
+msgid "This notice is not a favorite!"
+msgstr ""
+
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
+msgid "Add to favorites"
+msgstr "Zonte ai preferîts"
+
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, php-format
+msgid "No such document \"%s\"."
+msgstr ""
+
+#. TRANS: Title for "Edit application" form.
+#. TRANS: Form legend.
+#: actions/editapplication.php:54 lib/applicationeditform.php:129
+msgid "Edit application"
+msgstr ""
+
+#. TRANS: Client error displayed trying to edit an application while not logged in.
+#: actions/editapplication.php:66
+msgid "You must be logged in to edit an application."
+msgstr ""
+
+#. TRANS: Client error displayed trying to edit an application that does not exist.
+#: actions/editapplication.php:83 actions/showapplication.php:83
+msgid "No such application."
+msgstr ""
+
+#. TRANS: Instructions for "Edit application" form.
+#: actions/editapplication.php:167
+msgid "Use this form to edit your application."
+msgstr ""
+
+#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
+msgid "Name is required."
+msgstr "E covente un non."
+
+#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
+msgid "Name is too long (maximum 255 characters)."
+msgstr "Il non al è masse lunc (max 255 caratars)."
+
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
+msgid "Name already in use. Try another one."
+msgstr "Il non al è za doprât. Provent un altri."
+
+#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
+msgid "Description is required."
+msgstr "E covente une descrizion."
+
+#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
+#: actions/editapplication.php:209
+msgid "Source URL is too long."
+msgstr "La URL sorzint e je masse lungje."
+
+#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
+msgid "Source URL is not valid."
+msgstr "La URL sorzint no je valide."
+
+#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
+msgid "Organization is required."
+msgstr ""
+
+#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
+#: actions/editapplication.php:224 actions/newapplication.php:207
+msgid "Organization is too long (maximum 255 characters)."
+msgstr "La organizazion e je masse lungje (max 255 caratars)."
+
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
+msgid "Organization homepage is required."
+msgstr ""
+
+#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
+msgid "Callback is too long."
+msgstr ""
+
+#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
+msgid "Callback URL is not valid."
+msgstr ""
+
+#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
+#: actions/editapplication.php:284
+msgid "Could not update application."
+msgstr ""
+
+#. TRANS: Title for form to edit a group. %s is a group nickname.
+#: actions/editgroup.php:55
+#, php-format
+msgid "Edit %s group"
+msgstr "Cambie il grup %s"
+
+#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
+#. TRANS: Client error displayed trying to create a group while not logged in.
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
+msgid "You must be logged in to create a group."
+msgstr ""
+
+#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
+#: actions/editgroup.php:110 actions/editgroup.php:176
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
+msgid "You must be an admin to edit the group."
+msgstr ""
+
+#. TRANS: Form instructions for group edit form.
+#: actions/editgroup.php:161
+msgid "Use this form to edit the group."
+msgstr ""
+
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
+#, php-format
+msgid "Invalid alias: \"%s\""
+msgstr ""
+
+#. TRANS: Server error displayed when editing a group fails.
+#: actions/editgroup.php:274
+msgid "Could not update group."
+msgstr ""
+
+#. TRANS: Server error displayed when group aliases could not be added.
+#. TRANS: Server exception thrown when creating group aliases failed.
+#: actions/editgroup.php:281 classes/User_group.php:540
+msgid "Could not create aliases."
+msgstr ""
+
+#. TRANS: Group edit form success message.
+#: actions/editgroup.php:301
+msgid "Options saved."
+msgstr "Opzions salvadis."
+
+#. TRANS: Title for e-mail settings.
+#: actions/emailsettings.php:59
+msgid "Email settings"
+msgstr "Impuestazions pe pueste eletroniche"
+
+#. TRANS: E-mail settings page instructions.
+#. TRANS: %%site.name%% is the name of the site.
+#: actions/emailsettings.php:73
+#, php-format
+msgid "Manage how you get email from %%site.name%%."
+msgstr "Gjestìs cemût che tu ricevis la pueste di %%site.name%%."
+
+#. TRANS: Form legend for e-mail settings form.
+#. TRANS: Field label for e-mail address input in e-mail settings form.
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
+msgid "Email address"
+msgstr "Direzion di pueste eletroniche"
+
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:109
+msgid "Current confirmed email address."
+msgstr "Atuâl direzion di pueste confermade."
+
+#. TRANS: Button label to remove a confirmed e-mail address.
+#. TRANS: Button label for removing a set sender e-mail address to post notices from.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
+#. TRANS: Button label to remove a confirmed SMS address.
+#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
+msgctxt "BUTTON"
+msgid "Remove"
+msgstr "Gjave"
+
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
+msgid ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+msgstr ""
+"In spiete de conferme par cheste direzion. Controle la tô pueste in jentrade "
+"(e la cartele dal spam!) par un messaç cun altris istruzions."
+
+#. TRANS: Instructions for e-mail address input form. Do not translate
+#. TRANS: "example.org". It is one of the domain names reserved for
+#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
+#. TRANS: Any other domain may be owned by a legitimate person or
+#. TRANS: organization.
+#: actions/emailsettings.php:136
+msgid "Email address, like \"UserName@example.org\""
+msgstr "Direzion di pueste eletroniche, come \"nonutent@example.org\""
+
+#. TRANS: Button label for adding an e-mail address in e-mail settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
+#. TRANS: Button label for adding a SMS phone number in SMS settings form.
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
+msgctxt "BUTTON"
+msgid "Add"
+msgstr "Zonte"
+
+#. TRANS: Form legend for incoming e-mail settings form.
+#. TRANS: Form legend for incoming SMS settings form.
+#: actions/emailsettings.php:148 actions/smssettings.php:167
+msgid "Incoming email"
+msgstr "Pueste in jentrade"
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:154
+msgid "I want to post notices by email."
+msgstr "O vuei publicâ avîs par pueste eletroniche."
+
+#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
+#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
+#: actions/emailsettings.php:176 actions/smssettings.php:174
+msgid "Send email to this address to post new notices."
+msgstr ""
+
+#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
+#. TRANS: Instructions for incoming SMS e-mail address input form.
+#: actions/emailsettings.php:185 actions/smssettings.php:182
+msgid "Make a new email address for posting to; cancels the old one."
+msgstr ""
+
+#. TRANS: Instructions for incoming e-mail address input form.
+#: actions/emailsettings.php:189
+msgid ""
+"To send notices via email, we need to create a unique email address for you "
+"on this server:"
+msgstr ""
+
+#. TRANS: Button label for adding an e-mail address to send notices from.
+#. TRANS: Button label for adding an SMS e-mail address to send notices from.
+#: actions/emailsettings.php:195 actions/smssettings.php:185
+msgctxt "BUTTON"
+msgid "New"
+msgstr "Gnûf"
+
+#. TRANS: Form legend for e-mail preferences form.
+#: actions/emailsettings.php:204
+msgid "Email preferences"
+msgstr ""
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:212
+msgid "Send me notices of new subscriptions through email."
+msgstr ""
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:218
+msgid "Send me email when someone adds my notice as a favorite."
+msgstr ""
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:225
+msgid "Send me email when someone sends me a private message."
+msgstr ""
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:231
+msgid "Send me email when someone sends me an \"@-reply\"."
+msgstr ""
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:237
+msgid "Allow friends to nudge me and send me an email."
+msgstr ""
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:243
+msgid "Publish a MicroID for my email address."
+msgstr ""
+
+#. TRANS: Confirmation message for successful e-mail preferences save.
+#: actions/emailsettings.php:361
+msgid "Email preferences saved."
+msgstr ""
+
+#. TRANS: Message given saving e-mail address without having provided one.
+#: actions/emailsettings.php:380
+msgid "No email address."
+msgstr "Nissune direzion di pueste eletroniche."
+
+#. TRANS: Message given saving e-mail address that cannot be normalised.
+#: actions/emailsettings.php:388
+msgid "Cannot normalize that email address."
+msgstr ""
+
+#. TRANS: Message given saving e-mail address that not valid.
+#: actions/emailsettings.php:393 actions/register.php:204
+#: actions/siteadminpanel.php:144
+msgid "Not a valid email address."
+msgstr "La direzion di pueste eletroniche no je valide."
+
+#. TRANS: Message given saving e-mail address that is already set.
+#: actions/emailsettings.php:397
+msgid "That is already your email address."
+msgstr ""
+
+#. TRANS: Message given saving e-mail address that is already set for another user.
+#: actions/emailsettings.php:401
+msgid "That email address already belongs to another user."
+msgstr ""
+
+#. TRANS: Server error thrown on database error adding e-mail confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
+#. TRANS: Server error thrown on database error adding SMS confirmation code.
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
+msgstr ""
+
+#. TRANS: Message given saving valid e-mail address that is to be confirmed.
+#: actions/emailsettings.php:425
+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 ""
+
+#. TRANS: Message given canceling e-mail address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
+#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
+msgid "No pending confirmation to cancel."
+msgstr ""
+
+#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
+#: actions/emailsettings.php:450
+msgid "That is the wrong email address."
+msgstr ""
+
+#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
+#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
+msgstr ""
+
+#. TRANS: Message given after successfully canceling e-mail address confirmation.
+#: actions/emailsettings.php:464
+msgid "Email confirmation cancelled."
+msgstr ""
+
+#. TRANS: Message given trying to remove an e-mail address that is not
+#. TRANS: registered for the active user.
+#: actions/emailsettings.php:483
+msgid "That is not your email address."
+msgstr ""
+
+#. TRANS: Message given after successfully removing a registered e-mail address.
+#: actions/emailsettings.php:504
+msgid "The email address was removed."
+msgstr ""
+
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
+msgid "No incoming email address."
+msgstr ""
+
+#. TRANS: Server error thrown on database error removing incoming e-mail address.
+#. TRANS: Server error thrown on database error adding incoming e-mail address.
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
+msgstr ""
+
+#. TRANS: Message given after successfully removing an incoming e-mail address.
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
+msgid "Incoming email address removed."
+msgstr ""
+
+#. TRANS: Message given after successfully adding an incoming e-mail address.
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
+msgid "New incoming email address added."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
+msgid "This notice is already a favorite!"
+msgstr ""
+
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
+msgstr ""
+
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
+#: actions/favorited.php:65 lib/popularnoticesection.php:62
+#: lib/publicgroupnav.php:93
+msgid "Popular notices"
+msgstr "Avîs popolârs"
+
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
+#, php-format
+msgid "Popular notices, page %d"
+msgstr "Avîs popolârs, pagjine %d"
+
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
+msgid "The most popular notices on the site right now."
+msgstr "I avîs plui popolârs in chest moment sul sît."
+
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
+msgid "Favorite notices appear on this page but no one has favorited one yet."
+msgstr ""
+
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
+#: 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 ""
+
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to add a "
+"notice to your favorites!"
+msgstr ""
+
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
+#, php-format
+msgid "%s's favorite notices"
+msgstr "Avîs preferîts di %s"
+
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
+#, php-format
+msgid "Updates favored by %1$s on %2$s!"
+msgstr "Inzornaments preferîts di %1$s su %2$s!"
+
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
+#: actions/featured.php:69 lib/featureduserssection.php:87
+#: lib/publicgroupnav.php:89
+msgid "Featured users"
+msgstr "Utents in evidence"
+
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
+#, php-format
+msgid "Featured users, page %d"
+msgstr "Utents in evidence, pagjine %d"
+
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, php-format
+msgid "A selection of some great users on %s."
+msgstr "Une selezion dai miôrs utents su %s."
+
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
+msgid "No notice ID."
+msgstr ""
+
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
+msgid "No notice."
+msgstr ""
+
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
+msgid "No attachments."
+msgstr ""
+
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
+msgid "No uploaded attachments."
+msgstr ""
+
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
+#: actions/finishremotesubscribe.php:69
+msgid "Not expecting this response!"
+msgstr ""
+
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
+msgid "User being listened to does not exist."
+msgstr ""
+
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
+msgid "You can use the local subscription!"
+msgstr ""
+
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
+msgid "That user has blocked you from subscribing."
+msgstr "Chest utent ti à blocât e no tu puedis sotscrivilu."
+
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
+msgid "You are not authorized."
+msgstr ""
+
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
+msgid "Could not convert request token to access token."
+msgstr ""
+
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
+msgid "Remote service uses unknown version of OMB protocol."
+msgstr ""
+
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
+msgid "Error updating remote profile."
+msgstr ""
+
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
+msgid "No such file."
+msgstr "Il file nol esist."
+
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
+msgid "Cannot read file."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
+msgid "Invalid role."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
+#: actions/grantrole.php:66 actions/revokerole.php:66
+msgid "This role is reserved and cannot be set."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
+msgid "You cannot grant user roles on this site."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
+msgid "User already has this role."
+msgstr ""
+
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
+#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
+#: actions/groupblock.php:71 actions/groupunblock.php:71
+#: actions/makeadmin.php:71 actions/subedit.php:49
+#: lib/profileformaction.php:79
+msgid "No profile specified."
+msgstr ""
+
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
+#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
+#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
+msgid "No profile with that ID."
+msgstr ""
+
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
+#: actions/makeadmin.php:81
+msgid "No group specified."
+msgstr ""
+
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
+msgid "Only an admin can block group members."
+msgstr ""
+
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
+msgid "User is already blocked from group."
+msgstr ""
+
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
+msgid "User is not a member of group."
+msgstr ""
+
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
+msgid "Block user from group"
+msgstr ""
+
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
+#, php-format
+msgid ""
+"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
+"will be removed from the group, unable to post, and unable to subscribe to "
+"the group in the future."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when blocking a user from a group.
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
+msgstr ""
+
+#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr ""
+
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
+msgid "Database error blocking user from group."
+msgstr ""
+
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
+msgid "No ID."
+msgstr ""
+
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
+msgid "You must be logged in to edit a group."
+msgstr ""
+
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
+msgid "Group design"
+msgstr ""
+
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
+msgid ""
+"Customize the way your group looks with a background image and a colour "
+"palette of your choice."
+msgstr ""
+
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
+msgstr ""
+
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
+msgid "Design preferences saved."
+msgstr ""
+
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
+msgid "Group logo"
+msgstr ""
+
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
+#, php-format
+msgid ""
+"You can upload a logo image for your group. The maximum file size is %s."
+msgstr ""
+
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
+msgid "Upload"
+msgstr "Cjame"
+
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
+msgid "Crop"
+msgstr "Taie"
+
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
+msgid "Pick a square area of the image to be the logo."
+msgstr ""
+
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
+msgid "Logo updated."
+msgstr ""
+
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
+msgid "Failed updating logo."
+msgstr ""
+
+#. TRANS: Title of the page showing group members.
+#. TRANS: %s is the name of the group.
+#: actions/groupmembers.php:104
+#, php-format
+msgid "%s group members"
+msgstr "Membris dal grup %s"
+
+#. TRANS: Title of the page showing group members.
+#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
+#: actions/groupmembers.php:109
+#, php-format
+msgid "%1$s group members, page %2$d"
+msgstr "Membris dal grup %1$s, pagjine %2$d"
+
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
+msgid "A list of the users in this group."
+msgstr "Une liste dai utents in chest grup."
+
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
+msgid "Admin"
+msgstr "Aministradôr"
+
+#. TRANS: Button text for the form that will block a user from a group.
+#: actions/groupmembers.php:397
+msgctxt "BUTTON"
+msgid "Block"
+msgstr "Bloche"
+
+#. TRANS: Submit button title.
+#: actions/groupmembers.php:401
+msgctxt "TOOLTIP"
+msgid "Block this user"
+msgstr "Bloche chest utent"
+
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
+msgid "Make user an admin of the group"
+msgstr ""
+
+#. TRANS: Button text for the form that will make a user administrator.
+#: actions/groupmembers.php:521
+msgctxt "BUTTON"
+msgid "Make Admin"
+msgstr ""
+
+#. TRANS: Submit button title.
+#: actions/groupmembers.php:525
+msgctxt "TOOLTIP"
+msgid "Make this user an admin"
+msgstr ""
+
+#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
+#: actions/grouprss.php:141
+#, php-format
+msgid "Updates from members of %1$s on %2$s!"
+msgstr "Inzornaments dai membris di %1$s su %2$s!"
+
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
+msgid "Groups"
+msgstr "Grups"
+
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, php-format
+msgctxt "TITLE"
+msgid "Groups, page %d"
+msgstr "Grups, pagjine %d"
+
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, 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 ""
+"I grups di %%%%site.name%%%% ti permetin cjatâ e tabaiâ cun int che e à "
+"interès simîi. Daspò che tu ti unissis a un grup tu puedis mandâ messaçs a "
+"ducj chei altris membris dal grup doprant la scurte \"!groupname\". No son "
+"grups che ti plasin? Prove a [cirint un](%%%%action.groupsearch%%%%) o "
+"[scomence il to](%%%%action.newgroup%%%%)!"
+
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
+msgid "Create a new group"
+msgstr "Cree un gnûf grup"
+
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
+#, 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 ""
+"Cîr i grups di %%site.name%% par non, lûc o descrizion. Divît i tiermins cun "
+"spazis; ogni tiermin al à di sei lunc almancul trê caratars."
+
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
+msgid "Group search"
+msgstr "Ricercje di grups"
+
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
+msgid "No results."
+msgstr "Nissun risultât."
+
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, php-format
+msgid ""
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
+msgstr ""
+"Se no tu cjatis il grup che tu cirivis, tu puedis [creâlu](%%action.newgroup%"
+"%) tu."
+
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and [create the group](%%"
+"action.newgroup%%) yourself!"
+msgstr ""
+
+#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
+#: actions/groupunblock.php:95
+msgid "Only an admin can unblock group members."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
+#: actions/groupunblock.php:100
+msgid "User is not blocked from group."
+msgstr ""
+
+#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
+msgid "Error removing the block."
+msgstr ""
+
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
+msgid "IM settings"
+msgstr "Impuestazions IM"
+
+#. TRANS: Instant messaging settings page instructions.
+#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
+#. TRANS: the order and formatting of link text and link should remain unchanged.
+#: actions/imsettings.php:71
+#, php-format
+msgid ""
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
+msgstr ""
+
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
+msgid "IM is not available."
+msgstr ""
+
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
+msgid "IM address"
+msgstr ""
+
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
+msgstr ""
+
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, php-format
+msgid ""
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
+msgstr ""
+
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
+#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
+#. TRANS: person or organization.
+#: actions/imsettings.php:139
+#, php-format
+msgid ""
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
+msgstr ""
+
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
+msgid "IM preferences"
+msgstr "Preferencis IM"
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
+msgstr ""
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
+msgstr ""
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
+msgstr ""
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr ""
+
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
+msgid "Preferences saved."
+msgstr "Preferencis salvadis."
+
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
+msgid "No Jabber ID."
+msgstr ""
+
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+msgid "Cannot normalize that Jabber ID."
+msgstr ""
+
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+msgid "Not a valid Jabber ID."
+msgstr ""
+
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
+msgid "That is already your Jabber ID."
+msgstr ""
+
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
+msgid "Jabber ID already belongs to another user."
+msgstr ""
+
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
+#, php-format
+msgid ""
+"A confirmation code was sent to the IM address you added. You must approve %"
+"s for sending messages to you."
+msgstr ""
+
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
+msgid "That is the wrong IM address."
+msgstr ""
+
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
+msgstr ""
+
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
+msgid "IM confirmation cancelled."
+msgstr ""
+
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
+#. TRANS: registered for the active user.
+#: actions/imsettings.php:417
+msgid "That is not your Jabber ID."
+msgstr ""
+
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
+msgid "The IM address was removed."
+msgstr ""
+
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
+#: actions/inbox.php:59
+#, php-format
+msgid "Inbox for %1$s - page %2$d"
+msgstr "Pueste in jentrade par %1$s - pagjine %2$d"
+
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
+#, php-format
+msgid "Inbox for %s"
+msgstr "Pueste in jentrade par %s"
+
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
+msgid "This is your inbox, which lists your incoming private messages."
+msgstr ""
+"Cheste e je la tô casele di pueste, dulà che tu tu cjatis i messaçs privâts "
+"che tu âs ricevût."
+
+#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
+#: actions/invite.php:41
+msgid "Invites have been disabled."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to sent invites while not logged in.
+#. TRANS: %s is the StatusNet site name.
+#: actions/invite.php:45
+#, php-format
+msgid "You must be logged in to invite other users to use %s."
+msgstr ""
+
+#. TRANS: Form validation message when providing an e-mail address that does not validate.
+#. TRANS: %s is an invalid e-mail address.
+#: actions/invite.php:78
+#, php-format
+msgid "Invalid email address: %s."
+msgstr "La direzion di pueste eletroniche no je valide: %s"
+
+#. TRANS: Page title when invitations have been sent.
+#: actions/invite.php:117
+msgid "Invitations sent"
+msgstr "Invîts mandâts"
+
+#. TRANS: Page title when inviting potential users.
+#: actions/invite.php:120
+msgid "Invite new users"
+msgstr "Invide gnûfs utents"
+
+#. TRANS: Message displayed inviting users to use a StatusNet site while the inviting user
+#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
+#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
+#. TRANS: Followed by a bullet list.
+#: actions/invite.php:140
+msgid "You are already subscribed to this user:"
+msgid_plural "You are already subscribed to these users:"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
+#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
+#: actions/invite.php:146 actions/invite.php:160
+#, php-format
+msgctxt "INVITE"
+msgid "%1$s (%2$s)"
+msgstr "%1$s (%2$s)"
+
+#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
+#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
+#. TRANS: reported already present people. Followed by a bullet list.
+#: actions/invite.php:154
+msgid "This person is already a user and you were automatically subscribed:"
+msgid_plural ""
+"These people are already users and you were automatically subscribed to them:"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
+#. TRANS: based on the number of invitations sent. Followed by a bullet list of
+#. TRANS: e-mail addresses to which invitations were sent.
+#: actions/invite.php:168
+msgid "Invitation sent to the following person:"
+msgid_plural "Invitations sent to the following people:"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Generic message displayed after sending out one or more invitations to
+#. TRANS: people to join a StatusNet site.
+#: actions/invite.php:178
+msgid ""
+"You will be notified when your invitees accept the invitation and register "
+"on the site. Thanks for growing the community!"
+msgstr ""
+
+#. TRANS: Form instructions.
+#: actions/invite.php:191
+msgid ""
+"Use this form to invite your friends and colleagues to use this service."
+msgstr ""
+
+#. TRANS: Field label for a list of e-mail addresses.
+#: actions/invite.php:218
+msgid "Email addresses"
+msgstr "Direzions di pueste eletroniche"
+
+#. TRANS: Tooltip for field label for a list of e-mail addresses.
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
+msgstr ""
+
+#. TRANS: Field label for a personal message to send to invitees.
+#: actions/invite.php:225
+msgid "Personal message"
+msgstr "Messaç personâl"
+
+#. TRANS: Tooltip for field label for a personal message to send to invitees.
+#: actions/invite.php:228
+msgid "Optionally add a personal message to the invitation."
+msgstr "Se tu vuelis, tu puedis zontâ un messaç personâl tal invît."
+
+#. TRANS: Send button for inviting friends
+#: actions/invite.php:232
+msgctxt "BUTTON"
+msgid "Send"
+msgstr "Mande"
+
+#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
+#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
+#. TRANS: the StatusNet sitename.
+#: actions/invite.php:264
+#, php-format
+msgid "%1$s has invited you to join them on %2$s"
+msgstr ""
+
+#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral
+#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, %2$s is the
+#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
+#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
+#. TRANS: to register with the StatusNet site.
+#: actions/invite.php:271
+#, php-format
+msgid ""
+"%1$s has invited you to join them on %2$s (%3$s).\n"
+"\n"
+"%2$s is a micro-blogging service that lets you keep up-to-date with people "
+"you know and people who interest you.\n"
+"\n"
+"You can also share news about yourself, your thoughts, or your life online "
+"with people who know about you. It's also great for meeting new people who "
+"share your interests.\n"
+"\n"
+"%1$s said:\n"
+"\n"
+"%4$s\n"
+"\n"
+"You can see %1$s's profile page on %2$s here:\n"
+"\n"
+"%5$s\n"
+"\n"
+"If you'd like to try the service, click on the link below to accept the "
+"invitation.\n"
+"\n"
+"%6$s\n"
+"\n"
+"If not, you can ignore this message. Thanks for your patience and your "
+"time.\n"
+"\n"
+"Sincerely, %2$s\n"
+msgstr ""
+
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
+msgid "You must be logged in to join a group."
+msgstr ""
+
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, php-format
+msgctxt "TITLE"
+msgid "%1$s joined group %2$s"
+msgstr "%1$s si à unît al grup %2$s"
+
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
+msgid "You must be logged in to leave a group."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to join a group while already a member.
+#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
+#: actions/leavegroup.php:103 lib/command.php:386
+msgid "You are not a member of that group."
+msgstr "No tu fasis part di chest grup."
+
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, php-format
+msgctxt "TITLE"
+msgid "%1$s left group %2$s"
+msgstr "%1$s al à lassât il grup %2$s"
+
+#. TRANS: User admin panel title
+#: actions/licenseadminpanel.php:55
+msgctxt "TITLE"
+msgid "License"
+msgstr "Licence"
+
+#: actions/licenseadminpanel.php:65
+msgid "License for this StatusNet site"
+msgstr ""
+
+#: actions/licenseadminpanel.php:134
+msgid "Invalid license selection."
+msgstr ""
+
+#: actions/licenseadminpanel.php:144
+msgid ""
+"You must specify the owner of the content when using the All Rights Reserved "
+"license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:151
+msgid "Invalid license title. Maximum length is 255 characters."
+msgstr ""
+
+#: actions/licenseadminpanel.php:163
+msgid "Invalid license URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:166
+msgid "Invalid license image URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:174
+msgid "License URL must be blank or a valid URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:182
+msgid "License image must be blank or valid URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:232
+msgid "License selection"
+msgstr "Sielte de licence"
+
+#: actions/licenseadminpanel.php:238
+msgid "Private"
+msgstr "Privât"
+
+#: actions/licenseadminpanel.php:239
+msgid "All Rights Reserved"
+msgstr "Ducj i dirits riservâts"
+
+#: actions/licenseadminpanel.php:240
+msgid "Creative Commons"
+msgstr "Creative Commons"
+
+#: actions/licenseadminpanel.php:245
+msgid "Type"
+msgstr "Gjenar"
+
+#: actions/licenseadminpanel.php:247
+msgid "Select license"
+msgstr "Sielç la licence"
+
+#: actions/licenseadminpanel.php:261
+msgid "License details"
+msgstr "Detais de licence"
+
+#: actions/licenseadminpanel.php:267
+msgid "Owner"
+msgstr ""
+
+#: actions/licenseadminpanel.php:268
+msgid "Name of the owner of the site's content (if applicable)."
+msgstr ""
+
+#: actions/licenseadminpanel.php:276
+msgid "License Title"
+msgstr "Titul de licence"
+
+#: actions/licenseadminpanel.php:277
+msgid "The title of the license."
+msgstr "Il titul de licence."
+
+#: actions/licenseadminpanel.php:285
+msgid "License URL"
+msgstr "URL de licence"
+
+#: actions/licenseadminpanel.php:286
+msgid "URL for more information about the license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:293
+msgid "License Image URL"
+msgstr ""
+
+#: actions/licenseadminpanel.php:294
+msgid "URL for an image to display with the license."
+msgstr ""
+
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Salve"
+
+#: actions/licenseadminpanel.php:311
+msgid "Save license settings"
+msgstr ""
+
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
+msgid "Already logged in."
+msgstr "Tu sês za jentrât."
+
+#: actions/login.php:142
+msgid "Incorrect username or password."
+msgstr "Il non utent o la password no son juscj."
+
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
+msgid "Error setting user. You are probably not authorized."
+msgstr ""
+
+#: actions/login.php:202 actions/login.php:253
+msgid "Login"
+msgstr "Jentre"
+
+#: actions/login.php:239
+msgid "Login to site"
+msgstr "Jentre tal sît"
+
+#: actions/login.php:248 actions/register.php:476
+msgid "Remember me"
+msgstr "Visiti di me"
+
+#: actions/login.php:249 actions/register.php:478
+msgid "Automatically login in the future; not for shared computers!"
+msgstr ""
+"Jentre in automatic tal futûr; no stâ doprâlu par ordenadôrs condividûts!"
+
+#: actions/login.php:259
+msgid "Lost or forgotten password?"
+msgstr ""
+
+#: actions/login.php:277
+msgid ""
+"For security reasons, please re-enter your user name and password before "
+"changing your settings."
+msgstr ""
+
+#: actions/login.php:281
+msgid "Login with your username and password."
+msgstr "Jentre cul to non utent e password"
+
+#: actions/login.php:284
+#, php-format
+msgid ""
+"Don't have a username yet? [Register](%%action.register%%) a new account."
+msgstr ""
+"No tu âs ancjemò un non utent? [Regjistre](%%action.register%%) une gnove "
+"identitât."
+
+#: actions/makeadmin.php:92
+msgid "Only an admin can make another user an admin."
+msgstr ""
+
+#: actions/makeadmin.php:96
+#, php-format
+msgid "%1$s is already an admin for group \"%2$s\"."
+msgstr ""
+
+#: actions/makeadmin.php:133
+#, php-format
+msgid "Can't get membership record for %1$s in group %2$s."
+msgstr ""
+
+#: actions/makeadmin.php:146
+#, php-format
+msgid "Can't make %1$s an admin for group %2$s."
+msgstr ""
+
+#: actions/microsummary.php:69
+msgid "No current status."
+msgstr ""
+
+#. TRANS: This is the title of the form for adding a new application.
+#: actions/newapplication.php:52
+msgid "New application"
+msgstr ""
+
+#. TRANS: Client error displayed trying to add a new application while not logged in.
+#: actions/newapplication.php:64
+msgid "You must be logged in to register an application."
+msgstr ""
+
+#. TRANS: Form instructions for registering a new application.
+#: actions/newapplication.php:147
+msgid "Use this form to register a new application."
+msgstr ""
+
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
+msgid "Source URL is required."
+msgstr ""
+
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
+msgid "Could not create application."
+msgstr ""
+
+#. TRANS: Title for form to create a group.
+#: actions/newgroup.php:53
+msgid "New group"
+msgstr "Gnûf grup"
+
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr ""
+
+#. TRANS: Form instructions for group create form.
+#: actions/newgroup.php:117
+msgid "Use this form to create a new group."
+msgstr ""
+
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
+#: actions/newmessage.php:71 actions/newmessage.php:234
+msgid "New message"
+msgstr "Gnûf messaç"
+
+#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other).
+#: actions/newmessage.php:121 actions/newmessage.php:164 lib/command.php:501
+msgid "You can't send a message to this user."
+msgstr ""
+
+#. TRANS: Command exception text shown when trying to send a direct message to another user without content.
+#. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply.
+#: actions/newmessage.php:144 actions/newnotice.php:140 lib/command.php:478
+#: lib/command.php:581
+msgid "No content!"
+msgstr ""
+
+#: actions/newmessage.php:161
+msgid "No recipient specified."
+msgstr ""
+
+#. TRANS: Error text shown when trying to send a direct message to self.
+#: actions/newmessage.php:167 lib/command.php:505
+msgid ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
+#: actions/newmessage.php:184
+msgid "Message sent"
+msgstr "Messaç mandât"
+
+#. TRANS: Message given have sent a direct message to another user.
+#. TRANS: %s is the name of the other user.
+#: actions/newmessage.php:188 lib/command.php:513
+#, php-format
+msgid "Direct message to %s sent."
+msgstr "Il messaç diret par %s al stât mandât."
+
+#: actions/newmessage.php:213 actions/newnotice.php:264
+msgid "Ajax Error"
+msgstr ""
+
+#: actions/newnotice.php:69
+msgid "New notice"
+msgstr "Gnûf avîs"
+
+#: actions/newnotice.php:230
+msgid "Notice posted"
+msgstr "L'avîs al è stât publicât"
+
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
+#, 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 ""
+
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
+msgid "Text search"
+msgstr "Ricercje testuâl"
+
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
+#, php-format
+msgid "Search results for \"%1$s\" on %2$s"
+msgstr "Risultâts de ricercje di \"%1$s\" su %2$s"
+
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
+#, php-format
+msgid ""
+"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
+"status_textarea=%s)!"
+msgstr ""
+
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
+#, 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 ""
+
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
+#, php-format
+msgid "Updates with \"%s\""
+msgstr "Inzornaments cun \"%s\""
+
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
+msgstr "Inzornaments etichetâts cun %1$s su %2$s!"
+
+#: actions/nudge.php:85
+msgid ""
+"This user doesn't allow nudges or hasn't confirmed or set their email "
+"address yet."
+msgstr ""
+
+#: actions/nudge.php:94
+msgid "Nudge sent"
+msgstr ""
+
+#: actions/nudge.php:97
+msgid "Nudge sent!"
+msgstr ""
+
+#. TRANS: Message displayed to an anonymous user trying to view OAuth application list.
+#: actions/oauthappssettings.php:60
+msgid "You must be logged in to list your applications."
+msgstr ""
+
+#. TRANS: Page title for OAuth applications
+#: actions/oauthappssettings.php:76
+msgid "OAuth applications"
+msgstr ""
+
+#. TRANS: Page instructions for OAuth applications
+#: actions/oauthappssettings.php:88
+msgid "Applications you have registered"
+msgstr ""
+
+#. TRANS: Empty list message on page with OAuth applications.
+#: actions/oauthappssettings.php:141
+#, php-format
+msgid "You have not registered any applications yet."
+msgstr ""
+
+#. TRANS: Title for OAuth connection settings.
+#: actions/oauthconnectionssettings.php:70
+msgid "Connected applications"
+msgstr ""
+
+#. TRANS: Instructions for OAuth connection settings.
+#: actions/oauthconnectionssettings.php:81
+msgid "The following connections exist for your account."
+msgstr ""
+
+#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
+#: actions/oauthconnectionssettings.php:166
+msgid "You are not a user of that application."
+msgstr ""
+
+#. TRANS: Client error when revoking access has failed for some reason.
+#. TRANS: %s is the application ID revoking access failed for.
+#: actions/oauthconnectionssettings.php:181
+#, php-format
+msgid "Unable to revoke access for application: %s."
+msgstr ""
+
+#. TRANS: Success message after revoking access for an application.
+#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
+#: actions/oauthconnectionssettings.php:200
+#, php-format
+msgid ""
+"You have successfully revoked access for %1$s and the access token starting "
+"with %2$s."
+msgstr ""
+
+#. TRANS: Empty list message when no applications have been authorised yet.
+#: actions/oauthconnectionssettings.php:211
+msgid "You have not authorized any applications to use your account."
+msgstr ""
+
+#. TRANS: Note for developers in the OAuth connection settings form.
+#. TRANS: This message contains a Markdown link. Do not separate "](".
+#. TRANS: %s is the URL to the OAuth settings.
+#: actions/oauthconnectionssettings.php:231
+#, php-format
+msgid ""
+"Are you a developer? [Register an OAuth client application](%s) to use with "
+"this instance of StatusNet."
+msgstr ""
+
+#: actions/oembed.php:64
+#, php-format
+msgid "\"%s\" not found."
+msgstr ""
+
+#: actions/oembed.php:76
+#, php-format
+msgid "Notice %s not found."
+msgstr ""
+
+#: actions/oembed.php:80 actions/shownotice.php:100
+msgid "Notice has no profile."
+msgstr ""
+
+#: actions/oembed.php:83 actions/shownotice.php:172
+#, php-format
+msgid "%1$s's status on %2$s"
+msgstr "Stât di %1$s su %2$s"
+
+#: actions/oembed.php:95
+#, php-format
+msgid "Attachment %s not found."
+msgstr ""
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
+#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
+#: actions/oembed.php:168
+#, php-format
+msgid "Content type %s not supported."
+msgstr ""
+
+#. TRANS: Error message displaying attachments. %s is the site's base URL.
+#: actions/oembed.php:172
+#, php-format
+msgid "Only %s URLs over plain HTTP please."
+msgstr ""
+
+#. TRANS: Client error on an API request with an unsupported data format.
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
+msgid "Not a supported data format."
+msgstr ""
+
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
+#: actions/opensearch.php:64
+msgid "People Search"
+msgstr "Cîr personis"
+
+#: actions/opensearch.php:68
+msgid "Notice Search"
+msgstr ""
+
+#: actions/othersettings.php:59
+msgid "Other settings"
+msgstr "Altris impuestazions"
+
+#. TRANS: Instructions for tab "Other" in user profile settings.
+#: actions/othersettings.php:71
+msgid "Manage various other options."
+msgstr ""
+
+#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
+msgid " (free service)"
+msgstr ""
+
+#. TRANS: Label for dropdown with URL shortener services.
+#: actions/othersettings.php:122
+msgid "Shorten URLs with"
+msgstr "Scurte lis URL cun"
+
+#. TRANS: Tooltip for for dropdown with URL shortener services.
+#: actions/othersettings.php:124
+msgid "Automatic shortening service to use."
+msgstr "Servizi di scurte automatic di doprâ."
+
+#. TRANS: Label for checkbox.
+#: actions/othersettings.php:130
+msgid "View profile designs"
+msgstr ""
+
+#. TRANS: Tooltip for checkbox.
+#: actions/othersettings.php:132
+msgid "Show or hide profile designs."
+msgstr ""
+
+#. TRANS: Form validation error for form "Other settings" in user profile.
+#: actions/othersettings.php:164
+msgid "URL shortening service is too long (maximum 50 characters)."
+msgstr ""
+
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
+msgid "No user ID specified."
+msgstr ""
+
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
+msgid "No login token specified."
+msgstr ""
+
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
+msgid "No login token requested."
+msgstr ""
+
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
+msgid "Invalid login token specified."
+msgstr ""
+
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
+msgid "Login token expired."
+msgstr ""
+
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
+#, php-format
+msgid "Outbox for %1$s - page %2$d"
+msgstr "Pueste in jessude par %1$s - pagjine %2$d"
+
+#. TRANS: Title for first page of outbox.
+#: actions/outbox.php:61
+#, php-format
+msgid "Outbox for %s"
+msgstr "Pueste in jessude par %s"
+
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
+msgid "This is your outbox, which lists private messages you have sent."
+msgstr ""
+"Cheste e je la tô pueste in jessude, dulà che tu cjatis i messaçs privâts "
+"che tu âs mandât."
+
+#: actions/passwordsettings.php:58
+msgid "Change password"
+msgstr "Cambie la password"
+
+#: actions/passwordsettings.php:69
+msgid "Change your password."
+msgstr "Cambie la tô password"
+
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
+msgid "Password change"
+msgstr "Cambiament di password"
+
+#: actions/passwordsettings.php:104
+msgid "Old password"
+msgstr "Vecje password"
+
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
+msgid "New password"
+msgstr "Gnove password"
+
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
+msgstr "6 o plui caratars."
+
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
+msgstr "Compagn che la password parsore"
+
+#: actions/passwordsettings.php:117
+msgid "Change"
+msgstr "Cambie"
+
+#: actions/passwordsettings.php:153 actions/register.php:230
+msgid "Password must be 6 or more characters."
+msgstr "La password e à di sei di sîs o plui caratars."
+
+#: actions/passwordsettings.php:156 actions/register.php:233
+msgid "Passwords don't match."
+msgstr "Lis passwords no corispuindin."
+
+#: actions/passwordsettings.php:164
+msgid "Incorrect old password"
+msgstr "La vecje password e je sbaliade"
+
+#: actions/passwordsettings.php:180
+msgid "Error saving user; invalid."
+msgstr ""
+
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
+msgstr ""
+
+#: actions/passwordsettings.php:191
+msgid "Password saved."
+msgstr "Password salvade"
+
+#. TRANS: Title for Paths admin panel.
+#. TRANS: Menu item for site administration
+#: actions/pathsadminpanel.php:58 lib/adminpanelaction.php:371
+msgid "Paths"
+msgstr ""
+
+#. TRANS: Form instructions for Path admin panel.
+#: actions/pathsadminpanel.php:69
+msgid "Path and server settings for this StatusNet site"
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the directory that could not be read from.
+#: actions/pathsadminpanel.php:155
+#, php-format
+msgid "Theme directory not readable: %s."
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the avatar directory that could not be written to.
+#: actions/pathsadminpanel.php:163
+#, php-format
+msgid "Avatar directory not writable: %s."
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the background directory that could not be written to.
+#: actions/pathsadminpanel.php:171
+#, php-format
+msgid "Background directory not writable: %s."
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the locales directory that could not be read from.
+#: actions/pathsadminpanel.php:181
+#, php-format
+msgid "Locales directory not readable: %s."
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the SSL server URL that is too long.
+#: actions/pathsadminpanel.php:189
+msgid "Invalid SSL server. The maximum length is 255 characters."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
+msgid "Site"
+msgstr "Sît"
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:241 actions/pathsadminpanel.php:279
+#: actions/pathsadminpanel.php:370 actions/pathsadminpanel.php:425
+msgid "Server"
+msgstr "Servidôr"
+
+#: actions/pathsadminpanel.php:242
+msgid "Site's server hostname."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:248 actions/pathsadminpanel.php:288
+#: actions/pathsadminpanel.php:379 actions/pathsadminpanel.php:434
+msgid "Path"
+msgstr ""
+
+#: actions/pathsadminpanel.php:249
+msgid "Site path."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:255
+msgid "Locale directory"
+msgstr ""
+
+#: actions/pathsadminpanel.php:256
+msgid "Directory path to locales."
+msgstr ""
+
+#. TRANS: Checkbox label in Paths admin panel.
+#: actions/pathsadminpanel.php:263
+msgid "Fancy URLs"
+msgstr ""
+
+#: actions/pathsadminpanel.php:265
+msgid "Use fancy (more readable and memorable) URLs?"
+msgstr ""
+
+#: actions/pathsadminpanel.php:272
+msgid "Theme"
+msgstr "Teme"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:281
+msgid "Server for themes."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:290
+msgid "Web path to themes."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:297 actions/pathsadminpanel.php:388
+#: actions/pathsadminpanel.php:443 actions/pathsadminpanel.php:495
+msgid "SSL server"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:299
+msgid "SSL server for themes (default: SSL server)."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:306 actions/pathsadminpanel.php:397
+#: actions/pathsadminpanel.php:452
+msgid "SSL path"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:308
+msgid "SSL path to themes (default: /theme/)."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:315 actions/pathsadminpanel.php:406
+#: actions/pathsadminpanel.php:461
+msgid "Directory"
+msgstr "Cartele"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:317
+msgid "Directory where themes are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:326
+msgid "Avatars"
+msgstr "Avatars"
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:333
+msgid "Avatar server"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:335
+msgid "Server for avatars."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:342
+msgid "Avatar path"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:344
+msgid "Web path to avatars."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:351
+msgid "Avatar directory"
+msgstr "Cartele pai avatars"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:353
+msgid "Directory where avatars are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:364
+msgid "Backgrounds"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:372
+msgid "Server for backgrounds."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:381
+msgid "Web path to backgrounds."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:390
+msgid "Server for backgrounds on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:399
+msgid "Web path to backgrounds on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:408
+msgid "Directory where backgrounds are located."
+msgstr ""
+
+#. TRANS: Fieldset legens in Paths admin panel.
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
+msgid "Attachments"
+msgstr "Alegâts"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:427
+msgid "Server for attachments."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:436
+msgid "Web path to attachments."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:445
+msgid "Server for attachments on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:454
+msgid "Web path to attachments on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:463
+msgid "Directory where attachments are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:472
+msgid "SSL"
+msgstr "SSL"
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:477 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "Mai"
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:479
+msgid "Sometimes"
+msgstr "Cualchi volte"
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:481
+msgid "Always"
+msgstr "Simpri"
+
+#: actions/pathsadminpanel.php:485
+msgid "Use SSL"
+msgstr "Dopre SSL"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:487
+msgid "When to use SSL."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:497
+msgid "Server to direct SSL requests to."
+msgstr ""
+
+#. TRANS: Button title text to store form data in the Paths admin panel.
+#: actions/pathsadminpanel.php:514
+msgid "Save paths"
+msgstr ""
+
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
+#, 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 ""
+"Cîr int su %%site.name%% par non, lûc o interès. Divît i tiermins cun "
+"spazis; ogni tiermin al à di sei lunc almancul trê caratars."
+
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
+msgid "People search"
+msgstr "Cîr personis"
+
+#: actions/peopletag.php:68
+#, php-format
+msgid "Not a valid people tag: %s."
+msgstr ""
+
+#: actions/peopletag.php:142
+#, php-format
+msgid "Users self-tagged with %1$s - page %2$d"
+msgstr ""
+
+#: actions/postnotice.php:95
+msgid "Invalid notice content."
+msgstr ""
+
+#: actions/postnotice.php:101
+#, php-format
+msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’."
+msgstr ""
+
+#. TRANS: Page title for profile settings.
+#: actions/profilesettings.php:59
+msgid "Profile settings"
+msgstr "Impuestazions dal profîl"
+
+#. TRANS: Usage instructions for profile settings.
+#: actions/profilesettings.php:70
+msgid ""
+"You can update your personal profile info here so people know more about you."
+msgstr ""
+
+#. TRANS: Profile settings form legend.
+#: actions/profilesettings.php:98
+msgid "Profile information"
+msgstr "Informazions sul profîl"
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:109 actions/register.php:419
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
+msgstr ""
+
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for full group name (dt). Text hidden by default.
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
+msgid "Full name"
+msgstr "Non complet"
+
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Form input field label.
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
+msgid "Homepage"
+msgstr "Pagjine web"
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:121 actions/register.php:448
+msgid "URL of your homepage, blog, or profile on another site."
+msgstr "URL de tô pagjine web, blog o profîl suntun altri sît."
+
+#. TRANS: Tooltip for field label in form for profile settings. Plural
+#. TRANS: is decided by the number of characters available for the
+#. TRANS: biography (%d).
+#: actions/profilesettings.php:129 actions/register.php:457
+#, php-format
+msgid "Describe yourself and your interests in %d character"
+msgid_plural "Describe yourself and your interests in %d characters"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:135 actions/register.php:462
+msgid "Describe yourself and your interests"
+msgstr "Descrîf te e i tiei interès"
+
+#. TRANS: Text area label in form for profile settings where users can provide.
+#. TRANS: their biography.
+#: actions/profilesettings.php:139 actions/register.php:464
+msgid "Bio"
+msgstr "Biografie"
+
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for group location (dt). Text hidden by default.
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
+msgid "Location"
+msgstr "Lûc"
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:148
+msgid "Where you are, like \"City, State (or Region), Country\""
+msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\""
+
+#. TRANS: Checkbox label in form for profile settings.
+#: actions/profilesettings.php:153
+msgid "Share my current location when posting notices"
+msgstr "Condivît il lûc dulà che mi cjati cuant che o publichi avîs"
+
+#. TRANS: Field label in form for profile settings.
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
+#: actions/tagother.php:209 lib/subscriptionlist.php:106
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
+msgid "Tags"
+msgstr "Etichetis"
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:164
+msgid ""
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
+msgstr ""
+
+#. TRANS: Dropdownlist label in form for profile settings.
+#: actions/profilesettings.php:169
+msgid "Language"
+msgstr "Lenghe"
+
+#. TRANS: Tooltip for dropdown list label in form for profile settings.
+#: actions/profilesettings.php:171
+msgid "Preferred language."
+msgstr "Lenghe preferide"
+
+#. TRANS: Dropdownlist label in form for profile settings.
+#: actions/profilesettings.php:181
+msgid "Timezone"
+msgstr "Fûs orari"
+
+#. TRANS: Tooltip for dropdown list label in form for profile settings.
+#: actions/profilesettings.php:183
+msgid "What timezone are you normally in?"
+msgstr "In ce fûs orari ti cjatistu par solit?"
+
+#. TRANS: Checkbox label in form for profile settings.
+#: actions/profilesettings.php:189
+msgid ""
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
+msgstr ""
+
+#. TRANS: Validation error in form for profile settings.
+#. TRANS: Plural form is used based on the maximum number of allowed
+#. TRANS: characters for the biography (%d).
+#: actions/profilesettings.php:258 actions/register.php:221
+#, php-format
+msgid "Bio is too long (maximum %d character)."
+msgid_plural "Bio is too long (maximum %d characters)."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Validation error in form for profile settings.
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
+msgid "Timezone not selected."
+msgstr "No tu âs sielt il fûs orari."
+
+#. TRANS: Validation error in form for profile settings.
+#: actions/profilesettings.php:277
+msgid "Language is too long (maximum 50 characters)."
+msgstr "La lenghe e je masse lungje (max 50 caratars)."
+
+#. TRANS: Validation error in form for profile settings.
+#. TRANS: %s is an invalid tag.
+#: actions/profilesettings.php:291
+#, php-format
+msgid "Invalid tag: \"%s\"."
+msgstr ""
+
+#. TRANS: Server error thrown when user profile settings could not be updated to
+#. TRANS: automatically subscribe to any subscriber.
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
+msgstr ""
+
+#. TRANS: Server error thrown when user profile location preference settings could not be updated.
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
+msgstr ""
+
+#. TRANS: Server error thrown when user profile settings tags could not be saved.
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr ""
+
+#. TRANS: Confirmation shown when user profile settings are saved.
+#. TRANS: Message after successful saving of administrative settings.
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
+msgid "Settings saved."
+msgstr "Impuestazions salvadis."
+
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr ""
+
+#: actions/public.php:83
+#, php-format
+msgid "Beyond the page limit (%s)."
+msgstr ""
+
+#: actions/public.php:92
+msgid "Could not retrieve public stream."
+msgstr ""
+
+#: actions/public.php:130
+#, php-format
+msgid "Public timeline, page %d"
+msgstr "Ativitât publiche, pagjine %d"
+
+#: actions/public.php:132 lib/publicgroupnav.php:79
+msgid "Public timeline"
+msgstr "Ativitât publiche"
+
+#: actions/public.php:160
+msgid "Public Stream Feed (RSS 1.0)"
+msgstr "Canâl de ativitât publiche (RSS 1.0)"
+
+#: actions/public.php:164
+msgid "Public Stream Feed (RSS 2.0)"
+msgstr "Canâl de ativitât publiche (RSS 2.0)"
+
+#: actions/public.php:168
+msgid "Public Stream Feed (Atom)"
+msgstr "Canâl de ativitât publiche (Atom)"
+
+#: actions/public.php:188
+#, php-format
+msgid ""
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
+msgstr ""
+
+#: actions/public.php:191
+msgid "Be the first to post!"
+msgstr ""
+
+#: actions/public.php:195
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post!"
+msgstr ""
+
+#: actions/public.php:242
+#, 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 ""
+"Chest al è %%site.name%%, un servizi di [microblogging](http://en.wikipedia."
+"org/wiki/Micro-blogging) basât sul imprest libar [StatusNet](http://status."
+"net/). [Unissiti cumò](%%action.register%%) par condividi chel che tu fasis "
+"cun amîs, famee e companie! ([Altris informazions](%%doc.help%%))"
+
+#: actions/public.php:247
+#, 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 ""
+"Chest al è %%site.name%%, un servizi di [microblogging](http://en.wikipedia."
+"org/wiki/Micro-blogging) basât sul imprest libar [StatusNet](http://status."
+"net/)."
+
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "Inzornaments di %s di ducj cuancj!"
+
+#. TRANS: Title for public tag cloud.
+#: actions/publictagcloud.php:57
+msgid "Public tag cloud"
+msgstr "Nûl public des etichetis"
+
+#. TRANS: Instructions (more used like an explanation/header).
+#. TRANS: %s is the StatusNet sitename.
+#: actions/publictagcloud.php:65
+#, php-format
+msgid "These are most popular recent tags on %s"
+msgstr "Chestis a son lis etichetis recentis plui popolârs su %s"
+
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/publictagcloud.php:74
+#, php-format
+msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
+msgstr ""
+
+#. TRANS: Message shown to a logged in user for the public tag cloud
+#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
+#: actions/publictagcloud.php:79
+msgid "Be the first to post one!"
+msgstr ""
+
+#. TRANS: Message shown to a anonymous user for the public tag cloud
+#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/publictagcloud.php:87
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post "
+"one!"
+msgstr ""
+
+#: actions/publictagcloud.php:146
+msgid "Tag cloud"
+msgstr "Nûl di etichetis"
+
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
+msgid "You are already logged in!"
+msgstr "Tu sês za jentrât!"
+
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
+msgid "No such recovery code."
+msgstr ""
+
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
+msgid "Not a recovery code."
+msgstr ""
+
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
+msgid "Recovery code for unknown user."
+msgstr ""
+
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
+msgid "Error with confirmation code."
+msgstr ""
+
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
+msgid "This confirmation code is too old. Please start again."
+msgstr ""
+
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
+msgid "Could not update user with confirmed email address."
+msgstr ""
+
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
+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:167
+msgid "You have been identified. Enter a new password below."
+msgstr ""
+
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
+msgid "Password recovery"
+msgstr ""
+
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
+msgid "Nickname or email address"
+msgstr "Sorenon o direzion di pueste"
+
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
+msgid "Your nickname on this server, or your registered email address."
+msgstr ""
+
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
+msgid "Recover"
+msgstr ""
+
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr ""
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
+msgid "Reset password"
+msgstr ""
+
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
+msgid "Recover password"
+msgstr ""
+
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
+msgid "Password recovery requested"
+msgstr ""
+
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+msgid "Password saved"
+msgstr "Password salvade"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
+msgid "Unknown action"
+msgstr ""
+
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
+msgstr ""
+
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
+msgid "Reset"
+msgstr ""
+
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
+msgid "Enter a nickname or email address."
+msgstr ""
+
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
+msgid "No user with that email address or username."
+msgstr ""
+
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
+msgid "No registered email address for that user."
+msgstr ""
+
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
+msgid "Error saving address confirmation."
+msgstr ""
+
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
+msgid ""
+"Instructions for recovering your password have been sent to the email "
+"address registered to your account."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
+msgid "Unexpected password reset."
+msgstr ""
+
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
+msgid "Password must be 6 characters or more."
+msgstr ""
+
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
+msgid "Password and confirmation do not match."
+msgstr ""
+
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
+msgid "Error setting user."
+msgstr ""
+
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
+msgid "New password successfully saved. You are now logged in."
+msgstr ""
+
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
+msgid "Sorry, only invited people can register."
+msgstr ""
+
+#: actions/register.php:94
+msgid "Sorry, invalid invitation code."
+msgstr ""
+
+#: actions/register.php:113
+msgid "Registration successful"
+msgstr "Regjistrât cun sucès"
+
+#: actions/register.php:115 actions/register.php:497
+msgid "Register"
+msgstr "Regjistriti"
+
+#: actions/register.php:135
+msgid "Registration not allowed."
+msgstr ""
+
+#: actions/register.php:201
+msgid "You cannot register if you don't agree to the license."
+msgstr ""
+
+#: actions/register.php:210
+msgid "Email address already exists."
+msgstr ""
+
+#: actions/register.php:243 actions/register.php:265
+msgid "Invalid username or password."
+msgstr "Il non utent o la password no son valits."
+
+#: actions/register.php:340
+msgid ""
+"With this form you can create a new account. You can then post notices and "
+"link up to friends and colleagues."
+msgstr ""
+
+#. TRANS: Link description in user account settings menu.
+#: actions/register.php:431 actions/register.php:435
+#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
+msgid "Email"
+msgstr "Pueste eletroniche"
+
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
+msgstr ""
+
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
+msgstr ""
+
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Dulà che tu sês, par esempli \"Citât, Provincie, Stât\"."
+
+#: actions/register.php:510
+#, php-format
+msgid ""
+"I understand that content and data of %1$s are private and confidential."
+msgstr ""
+
+#: actions/register.php:520
+#, php-format
+msgid "My text and files are copyright by %1$s."
+msgstr ""
+
+#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
+#: actions/register.php:524
+msgid "My text and files remain under my own copyright."
+msgstr ""
+
+#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
+#: actions/register.php:527
+msgid "All rights reserved."
+msgstr "Ducj i dirits riservâts"
+
+#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
+#: actions/register.php:532
+#, php-format
+msgid ""
+"My text and files are available under %s except this private data: password, "
+"email address, IM address, and phone number."
+msgstr ""
+
+#: actions/register.php:573
+#, php-format
+msgid ""
+"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
+"want to...\n"
+"\n"
+"* Go to [your profile](%2$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 ""
+"Compliments, %1$s! Benvignût su %%%%site.name%%%%. Di culì tu puedis...\n"
+"\n"
+"* Lâ tal [tô profîl](%2$s) e publicâ il to prin messaç.\n"
+"* Zontâ une [direzion Jabber/GTalk ](%%%%action.imsettings%%%%) par mandâ "
+"avîs par mieç di messaçs istantanis.\n"
+"* [Cirî int](%%%%action.peoplesearch%%%%) che tu cognossis o che a "
+"condividin i tiei interès. \n"
+"* Inzornâ lis tôs [impuestazions de identitât](%%%%action.profilesettings%%%"
+"%) par fâ savê altris robis su di te. \n"
+"* Lei il [jutori in linee](%%%%doc.help%%%%) par funzions che no tu âs "
+"discuviert. \n"
+"\n"
+"Graziis par jessiti regjistrât e o sperìn che tu gjoldarâs a doprâ chest "
+"servizi."
+
+#: actions/register.php:597
+msgid ""
+"(You should receive a message by email momentarily, with instructions on how "
+"to confirm your email address.)"
+msgstr ""
+
+#: actions/remotesubscribe.php:97
+#, 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 ""
+
+#: actions/remotesubscribe.php:111
+msgid "Remote subscribe"
+msgstr ""
+
+#: actions/remotesubscribe.php:123
+msgid "Subscribe to a remote user"
+msgstr ""
+
+#: actions/remotesubscribe.php:128
+msgid "User nickname"
+msgstr "Sorenon dal utent"
+
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
+msgstr "Sorenon dal utent che tu vuelis seguî."
+
+#: actions/remotesubscribe.php:132
+msgid "Profile URL"
+msgstr "URL dal profîl"
+
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
+msgstr ""
+
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
+msgid "Subscribe"
+msgstr "Sotscrivimi"
+
+#: actions/remotesubscribe.php:158
+msgid "Invalid profile URL (bad format)."
+msgstr ""
+
+#: actions/remotesubscribe.php:167
+msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
+msgstr ""
+
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
+msgstr ""
+
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
+msgstr ""
+
+#: actions/repeat.php:56
+msgid "Only logged-in users can repeat notices."
+msgstr ""
+
+#: actions/repeat.php:63 actions/repeat.php:70
+msgid "No notice specified."
+msgstr ""
+
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
+msgstr ""
+
+#: actions/repeat.php:89
+msgid "You already repeated that notice."
+msgstr ""
+
+#: actions/repeat.php:112 lib/noticelist.php:692
+msgid "Repeated"
+msgstr "Ripetût"
+
+#: actions/repeat.php:117
+msgid "Repeated!"
+msgstr "Ripetût!"
+
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
+#: actions/replies.php:126 actions/repliesrss.php:68
+#: lib/personalgroupnav.php:109
+#, php-format
+msgid "Replies to %s"
+msgstr "Rispuestis a %s"
+
+#: actions/replies.php:128
+#, php-format
+msgid "Replies to %1$s, page %2$d"
+msgstr "Rispuestis a %1$s, pagjine %2$d"
+
+#: actions/replies.php:145
+#, php-format
+msgid "Replies feed for %s (RSS 1.0)"
+msgstr "Canâl des rispuestis di %s (RSS 1.0)"
+
+#: actions/replies.php:152
+#, php-format
+msgid "Replies feed for %s (RSS 2.0)"
+msgstr "Canâl des rispuestis di %s (RSS 2.0)"
+
+#: actions/replies.php:159
+#, php-format
+msgid "Replies feed for %s (Atom)"
+msgstr "Canâl des rispuestis di %s (Atom)"
+
+#: actions/replies.php:199
+#, php-format
+msgid ""
+"This is the timeline showing replies to %1$s but %2$s hasn't received a "
+"notice to them yet."
+msgstr ""
+
+#: actions/replies.php:204
+#, php-format
+msgid ""
+"You can engage other users in a conversation, subscribe to more people or "
+"[join groups](%%action.groups%%)."
+msgstr ""
+
+#: actions/replies.php:206
+#, php-format
+msgid ""
+"You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action."
+"newnotice%%%%?status_textarea=%3$s)."
+msgstr ""
+
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
+msgstr "Rispuestis a %1$s su %2$s!"
+
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr ""
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr ""
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "Cjame il file"
+
+#: actions/revokerole.php:75
+msgid "You cannot revoke user roles on this site."
+msgstr ""
+
+#: actions/revokerole.php:82
+msgid "User doesn't have this role."
+msgstr ""
+
+#: actions/rsd.php:142 actions/version.php:159
+msgid "StatusNet"
+msgstr "StatusNet"
+
+#: actions/sandbox.php:65 actions/unsandbox.php:65
+msgid "You cannot sandbox users on this site."
+msgstr ""
+
+#: actions/sandbox.php:72
+msgid "User is already sandboxed."
+msgstr ""
+
+#. TRANS: Menu item for site administration
+#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170
+#: lib/adminpanelaction.php:379
+msgid "Sessions"
+msgstr "Sessions"
+
+#: actions/sessionsadminpanel.php:65
+msgid "Session settings for this StatusNet site"
+msgstr ""
+
+#: actions/sessionsadminpanel.php:175
+msgid "Handle sessions"
+msgstr ""
+
+#: actions/sessionsadminpanel.php:177
+msgid "Whether to handle sessions ourselves."
+msgstr ""
+
+#: actions/sessionsadminpanel.php:181
+msgid "Session debugging"
+msgstr ""
+
+#: actions/sessionsadminpanel.php:183
+msgid "Turn on debugging output for sessions."
+msgstr ""
+
+#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
+msgid "Save site settings"
+msgstr "Salve lis impuestazions dal sît"
+
+#: actions/showapplication.php:78
+msgid "You must be logged in to view an application."
+msgstr ""
+
+#: actions/showapplication.php:151
+msgid "Application profile"
+msgstr ""
+
+#. TRANS: Form input field label for application icon.
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
+msgid "Icon"
+msgstr "Icone"
+
+#. TRANS: Form input field label for application name.
+#: actions/showapplication.php:163 actions/version.php:197
+#: lib/applicationeditform.php:190
+msgid "Name"
+msgstr "Non"
+
+#. TRANS: Form input field label.
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
+msgid "Organization"
+msgstr "Organizazion"
+
+#. TRANS: Form input field label.
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
+msgid "Description"
+msgstr "Descrizion"
+
+#. TRANS: Header for group statistics on a group page (h2).
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
+msgid "Statistics"
+msgstr "Statistichis"
+
+#: actions/showapplication.php:197
+#, php-format
+msgid "Created by %1$s - %2$s access by default - %3$d users"
+msgstr ""
+
+#: actions/showapplication.php:207
+msgid "Application actions"
+msgstr ""
+
+#: actions/showapplication.php:230
+msgid "Reset key & secret"
+msgstr ""
+
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
+msgid "Delete"
+msgstr "Elimine"
+
+#: actions/showapplication.php:255
+msgid "Application info"
+msgstr ""
+
+#: actions/showapplication.php:257
+msgid "Consumer key"
+msgstr ""
+
+#: actions/showapplication.php:262
+msgid "Consumer secret"
+msgstr ""
+
+#: actions/showapplication.php:267
+msgid "Request token URL"
+msgstr ""
+
+#: actions/showapplication.php:272
+msgid "Access token URL"
+msgstr ""
+
+#: actions/showapplication.php:277
+msgid "Authorize URL"
+msgstr ""
+
+#: actions/showapplication.php:282
+msgid ""
+"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
+"signature method."
+msgstr ""
+
+#: actions/showapplication.php:302
+msgid "Are you sure you want to reset your consumer key and secret?"
+msgstr ""
+
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
+#, php-format
+msgid "%1$s's favorite notices, page %2$d"
+msgstr "Avîs preferîts di %1$s, pagjine %2$d"
+
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
+msgid "Could not retrieve favorite notices."
+msgstr ""
+
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
+#, php-format
+msgid "Feed for favorites of %s (RSS 1.0)"
+msgstr "Canâl pai preferîts di %s (RSS 1.0)"
+
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
+#, php-format
+msgid "Feed for favorites of %s (RSS 2.0)"
+msgstr "Canâl pai preferîts di %s (RSS 2.0)"
+
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
+#, php-format
+msgid "Feed for favorites of %s (Atom)"
+msgstr "Canâl pai preferîts di %s (Atom)"
+
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
+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 ""
+
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
+#, php-format
+msgid ""
+"%s hasn't added any favorite notices yet. Post something interesting they "
+"would add to their favorites :)"
+msgstr ""
+
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
+#, php-format
+msgid ""
+"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
+"action.register%%%%) and then post something interesting they would add to "
+"their favorites :)"
+msgstr ""
+
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
+msgid "This is a way to share what you like."
+msgstr ""
+
+#. TRANS: Page title for first group page. %s is a group name.
+#: actions/showgroup.php:75
+#, php-format
+msgid "%s group"
+msgstr "Grup %s"
+
+#. TRANS: Page title for any but first group page.
+#. TRANS: %1$s is a group name, $2$s is a page number.
+#: actions/showgroup.php:79
+#, php-format
+msgid "%1$s group, page %2$d"
+msgstr "Grup %1$s, pagjine %2$d"
+
+#. TRANS: Group profile header (h2). Text hidden by default.
+#: actions/showgroup.php:223
+msgid "Group profile"
+msgstr "Profîl dal grup"
+
+#. TRANS: Label for group URL (dt). Text hidden by default.
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
+msgid "URL"
+msgstr "URL"
+
+#. TRANS: Label for group description or group note (dt). Text hidden by default.
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
+msgid "Note"
+msgstr "Note"
+
+#. TRANS: Label for group aliases (dt). Text hidden by default.
+#: actions/showgroup.php:296 lib/groupeditform.php:180
+msgid "Aliases"
+msgstr ""
+
+#. TRANS: Group actions header (h2). Text hidden by default.
+#: actions/showgroup.php:313
+msgid "Group actions"
+msgstr "Azions dal grup"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:357
+#, php-format
+msgid "Notice feed for %s group (RSS 1.0)"
+msgstr "Canâl dai avîs pal grup %s (RSS 1.0)"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:364
+#, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr "Canâl dai avîs pal grup %s (RSS 2.0)"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:371
+#, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr "Canâl dai avîs pal grup %s (Atom)"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:377
+#, php-format
+msgid "FOAF for %s group"
+msgstr "FOAF pal grup %s"
+
+#. TRANS: Header for mini list of group members on a group page (h2).
+#: actions/showgroup.php:414
+msgid "Members"
+msgstr "Membris"
+
+#. TRANS: Description for mini list of group members on a group page when the group has no members.
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
+#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
+msgid "(None)"
+msgstr "(Nissun)"
+
+#. TRANS: Link to all group members from mini list of group members if group has more than n members.
+#: actions/showgroup.php:429
+msgid "All members"
+msgstr "Ducj i membris"
+
+#. TRANS: Label for creation date in statistics on group page.
+#: actions/showgroup.php:465
+msgctxt "LABEL"
+msgid "Created"
+msgstr "Creât"
+
+#. TRANS: Label for member count in statistics on group page.
+#: actions/showgroup.php:473
+msgctxt "LABEL"
+msgid "Members"
+msgstr "Membris"
+
+#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations.
+#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
+#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
+#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
+#: actions/showgroup.php:488
+#, 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 ""
+
+#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
+#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
+#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
+#: actions/showgroup.php:498
+#, 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 ""
+
+#. TRANS: Header for list of group administrators on a group page (h2).
+#: actions/showgroup.php:527
+msgid "Admins"
+msgstr "Aministradôrs"
+
+#. TRANS: Client error displayed requesting a single message that does not exist.
+#: actions/showmessage.php:76
+msgid "No such message."
+msgstr ""
+
+#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
+#: actions/showmessage.php:86
+msgid "Only the sender and recipient may read this message."
+msgstr ""
+
+#. TRANS: Page title for single direct message display when viewing user is the sender.
+#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
+#: actions/showmessage.php:105
+#, php-format
+msgid "Message to %1$s on %2$s"
+msgstr "Messaç par %1$s su %2$s"
+
+#. TRANS: Page title for single message display.
+#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
+#: actions/showmessage.php:113
+#, php-format
+msgid "Message from %1$s on %2$s"
+msgstr "Messaç di %1$s su %2$s"
+
+#: actions/shownotice.php:90
+msgid "Notice deleted."
+msgstr "L'avîs al è stât eliminât."
+
+#. TRANS: Page title showing tagged notices in one user's stream. %1$s is the username, %2$s is the hash tag.
+#: actions/showstream.php:70
+#, php-format
+msgid "%1$s tagged %2$s"
+msgstr "%1$s cun etichete %2$s"
+
+#. TRANS: Page title showing tagged notices in one user's stream.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
+#: actions/showstream.php:74
+#, php-format
+msgid "%1$s tagged %2$s, page %3$d"
+msgstr "%1$s cun etichete %2$s, pagjine %3$d"
+
+#. TRANS: Extended page title showing tagged notices in one user's stream.
+#. TRANS: %1$s is the username, %2$d is the page number.
+#: actions/showstream.php:82
+#, php-format
+msgid "%1$s, page %2$d"
+msgstr "%1$s, pagjine %2$d"
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %1$s is a user nickname, %2$s is a hashtag.
+#: actions/showstream.php:127
+#, php-format
+msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)"
+msgstr "Canâl dai avîs par %1$s cun etichete %2$s (RSS 1.0)"
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %s is a user nickname.
+#: actions/showstream.php:136
+#, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr "Canâl dai avîs par %s (RSS 1.0)"
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %s is a user nickname.
+#: actions/showstream.php:145
+#, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr "Canâl dai avîs par %s (RSS 2.0)"
+
+#: actions/showstream.php:152
+#, php-format
+msgid "Notice feed for %s (Atom)"
+msgstr "Canâl dai avîs par %s (Atom)"
+
+#. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend.
+#. TRANS: More information at http://www.foaf-project.org. %s is a user nickname.
+#: actions/showstream.php:159
+#, php-format
+msgid "FOAF for %s"
+msgstr "FOAF di %s"
+
+#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname.
+#: actions/showstream.php:211
+#, php-format
+msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet."
+msgstr ""
+
+#. TRANS: Second sentence of empty list message for a stream for the user themselves.
+#: actions/showstream.php:217
+msgid ""
+"Seen anything interesting recently? You haven't posted any notices yet, now "
+"would be a good time to start :)"
+msgstr ""
+"No âstu viodût nuie di interessant tai ultins timps? No tu âs publicât "
+"ancjemò nissun avîs, cumò al sarès un bon moment par scomençâ :)"
+
+#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:221
+#, php-format
+msgid ""
+"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%"
+"%?status_textarea=%2$s)."
+msgstr ""
+
+#. TRANS: Announcement for anonymous users showing a stream if site registrations are open.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:264
+#, 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 ""
+"**%s** al à une identitât su %%%%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%%%%))"
+
+#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:271
+#, 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** al à une identitât su %%site.name%%, un servizi di [microblogging]"
+"(http://en.wikipedia.org/wiki/Micro-blogging) basât sul imprest libar "
+"[StatusNet](http://status.net/)."
+
+#. TRANS: Link to the author of a repeated notice. %s is a linked nickname.
+#: actions/showstream.php:328
+#, php-format
+msgid "Repeat of %s"
+msgstr "Ripetizion di %s"
+
+#: actions/silence.php:65 actions/unsilence.php:65
+msgid "You cannot silence users on this site."
+msgstr ""
+
+#: actions/silence.php:72
+msgid "User is already silenced."
+msgstr ""
+
+#: actions/siteadminpanel.php:69
+msgid "Basic settings for this StatusNet site"
+msgstr ""
+
+#: actions/siteadminpanel.php:133
+msgid "Site name must have non-zero length."
+msgstr ""
+
+#: actions/siteadminpanel.php:141
+msgid "You must have a valid contact email address."
+msgstr ""
+
+#: actions/siteadminpanel.php:159
+#, php-format
+msgid "Unknown language \"%s\"."
+msgstr ""
+
+#: actions/siteadminpanel.php:165
+msgid "Minimum text limit is 0 (unlimited)."
+msgstr ""
+
+#: actions/siteadminpanel.php:171
+msgid "Dupe limit must be one or more seconds."
+msgstr ""
+
+#: actions/siteadminpanel.php:221
+msgid "General"
+msgstr "Gjenerâl"
+
+#: actions/siteadminpanel.php:224
+msgid "Site name"
+msgstr "Non dal sît"
+
+#: actions/siteadminpanel.php:225
+msgid "The name of your site, like \"Yourcompany Microblog\""
+msgstr ""
+
+#: actions/siteadminpanel.php:229
+msgid "Brought by"
+msgstr ""
+
+#: actions/siteadminpanel.php:230
+msgid "Text used for credits link in footer of each page"
+msgstr ""
+
+#: actions/siteadminpanel.php:234
+msgid "Brought by URL"
+msgstr ""
+
+#: actions/siteadminpanel.php:235
+msgid "URL used for credits link in footer of each page"
+msgstr ""
+
+#: actions/siteadminpanel.php:239
+msgid "Contact email address for your site"
+msgstr ""
+
+#: actions/siteadminpanel.php:245
+msgid "Local"
+msgstr "Locâl"
+
+#: actions/siteadminpanel.php:256
+msgid "Default timezone"
+msgstr "Fûs orari predeterminât"
+
+#: actions/siteadminpanel.php:257
+msgid "Default timezone for the site; usually UTC."
+msgstr ""
+
+#: actions/siteadminpanel.php:262
+msgid "Default language"
+msgstr "Lenghe predeterminade"
+
+#: actions/siteadminpanel.php:263
+msgid "Site language when autodetection from browser settings is not available"
+msgstr ""
+
+#: actions/siteadminpanel.php:271
+msgid "Limits"
+msgstr "Limits"
+
+#: actions/siteadminpanel.php:274
+msgid "Text limit"
+msgstr "Limits dal test"
+
+#: actions/siteadminpanel.php:274
+msgid "Maximum number of characters for notices."
+msgstr ""
+
+#: actions/siteadminpanel.php:278
+msgid "Dupe limit"
+msgstr ""
+
+#: actions/siteadminpanel.php:278
+msgid "How long users must wait (in seconds) to post the same thing again."
+msgstr ""
+
+#. TRANS: Page title for site-wide notice tab in admin panel.
+#: actions/sitenoticeadminpanel.php:55
+msgid "Site Notice"
+msgstr ""
+
+#. TRANS: Instructions for site-wide notice tab in admin panel.
+#: actions/sitenoticeadminpanel.php:66
+msgid "Edit site-wide message"
+msgstr ""
+
+#. TRANS: Server error displayed when saving a site-wide notice was impossible.
+#: actions/sitenoticeadminpanel.php:101
+msgid "Unable to save site notice."
+msgstr ""
+
+#. TRANS: Client error displayed when a site-wide notice was longer than allowed.
+#: actions/sitenoticeadminpanel.php:112
+msgid "Maximum length for the site-wide notice is 255 characters."
+msgstr ""
+
+#. TRANS: Label for site-wide notice text field in admin panel.
+#: actions/sitenoticeadminpanel.php:176
+msgid "Site notice text"
+msgstr ""
+
+#. TRANS: Tooltip for site-wide notice text field in admin panel.
+#: actions/sitenoticeadminpanel.php:179
+msgid "Site-wide notice text (255 characters maximum; HTML allowed)"
+msgstr ""
+
+#. TRANS: Title for button to save site notice in admin panel.
+#: actions/sitenoticeadminpanel.php:201
+msgid "Save site notice."
+msgstr ""
+
+#. TRANS: Title for SMS settings.
+#: actions/smssettings.php:57
+msgid "SMS settings"
+msgstr ""
+
+#. TRANS: SMS settings page instructions.
+#. TRANS: %%site.name%% is the name of the site.
+#: actions/smssettings.php:71
+#, php-format
+msgid "You can receive SMS messages through email from %%site.name%%."
+msgstr ""
+
+#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
+#: actions/smssettings.php:93
+msgid "SMS is not available."
+msgstr ""
+
+#. TRANS: Form legend for SMS settings form.
+#: actions/smssettings.php:107
+msgid "SMS address"
+msgstr ""
+
+#. TRANS: Form guide in SMS settings form.
+#: actions/smssettings.php:116
+msgid "Current confirmed SMS-enabled phone number."
+msgstr ""
+
+#. TRANS: Form guide in IM settings form.
+#: actions/smssettings.php:129
+msgid "Awaiting confirmation on this phone number."
+msgstr ""
+
+#. TRANS: Field label for SMS address input in SMS settings form.
+#: actions/smssettings.php:138
+msgid "Confirmation code"
+msgstr "Codiç di conferme"
+
+#. TRANS: Form field instructions in SMS settings form.
+#: actions/smssettings.php:140
+msgid "Enter the code you received on your phone."
+msgstr ""
+
+#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
+#: actions/smssettings.php:144
+msgctxt "BUTTON"
+msgid "Confirm"
+msgstr "Conferme"
+
+#. TRANS: Field label for SMS phone number input in SMS settings form.
+#: actions/smssettings.php:149
+msgid "SMS phone number"
+msgstr ""
+
+#. TRANS: SMS phone number input field instructions in SMS settings form.
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
+msgstr ""
+
+#. TRANS: Form legend for SMS preferences form.
+#: actions/smssettings.php:191
+msgid "SMS preferences"
+msgstr ""
+
+#. TRANS: Checkbox label in SMS preferences form.
+#: actions/smssettings.php:197
+msgid ""
+"Send me notices through SMS; I understand I may incur exorbitant charges "
+"from my carrier."
+msgstr ""
+
+#. TRANS: Confirmation message for successful SMS preferences save.
+#: actions/smssettings.php:308
+msgid "SMS preferences saved."
+msgstr ""
+
+#. TRANS: Message given saving SMS phone number without having provided one.
+#: actions/smssettings.php:330
+msgid "No phone number."
+msgstr ""
+
+#. TRANS: Message given saving SMS phone number without having selected a carrier.
+#: actions/smssettings.php:336
+msgid "No carrier selected."
+msgstr ""
+
+#. TRANS: Message given saving SMS phone number that is already set.
+#: actions/smssettings.php:344
+msgid "That is already your phone number."
+msgstr ""
+
+#. TRANS: Message given saving SMS phone number that is already set for another user.
+#: actions/smssettings.php:348
+msgid "That phone number already belongs to another user."
+msgstr ""
+
+#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
+#: actions/smssettings.php:376
+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 ""
+
+#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
+#: actions/smssettings.php:404
+msgid "That is the wrong confirmation number."
+msgstr ""
+
+#. TRANS: Message given after successfully canceling SMS phone number confirmation.
+#: actions/smssettings.php:418
+msgid "SMS confirmation cancelled."
+msgstr ""
+
+#. TRANS: Message given trying to remove an SMS phone number that is not
+#. TRANS: registered for the active user.
+#: actions/smssettings.php:438
+msgid "That is not your phone number."
+msgstr ""
+
+#. TRANS: Message given after successfully removing a registered SMS phone number.
+#: actions/smssettings.php:460
+msgid "The SMS phone number was removed."
+msgstr ""
+
+#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
+#: actions/smssettings.php:499
+msgid "Mobile carrier"
+msgstr ""
+
+#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
+#: actions/smssettings.php:504
+msgid "Select a carrier"
+msgstr ""
+
+#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
+#. TRANS: %s is an administrative contact's e-mail address.
+#: actions/smssettings.php:513
+#, 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 ""
+
+#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
+#: actions/smssettings.php:535
+msgid "No code entered."
+msgstr ""
+
+#. TRANS: Menu item for site administration
+#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
+#: lib/adminpanelaction.php:395
+msgid "Snapshots"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:65
+msgid "Manage snapshot configuration"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:127
+msgid "Invalid snapshot run value."
+msgstr ""
+
+#: actions/snapshotadminpanel.php:133
+msgid "Snapshot frequency must be a number."
+msgstr ""
+
+#: actions/snapshotadminpanel.php:144
+msgid "Invalid snapshot report URL."
+msgstr ""
+
+#: actions/snapshotadminpanel.php:200
+msgid "Randomly during web hit"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:201
+msgid "In a scheduled job"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:206
+msgid "Data snapshots"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:208
+msgid "When to send statistical data to status.net servers"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:217
+msgid "Frequency"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:218
+msgid "Snapshots will be sent once every N web hits"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:226
+msgid "Report URL"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:227
+msgid "Snapshots will be sent to this URL"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:248
+msgid "Save snapshot settings"
+msgstr ""
+
+#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile.
+#: actions/subedit.php:75
+msgid "You are not subscribed to that profile."
+msgstr "No tu sês sotscrit a chest profîl."
+
+#. TRANS: Server error displayed when updating a subscription fails with a database error.
+#. TRANS: Exception thrown when a subscription could not be stored on the server.
+#: actions/subedit.php:89 classes/Subscription.php:141
+msgid "Could not save subscription."
+msgstr ""
+
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
+#: actions/subscribe.php:77
+msgid "This action only accepts POST requests."
+msgstr ""
+
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
+msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
+msgstr ""
+
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
+msgid "Subscribed"
+msgstr "Sotscrit"
+
+#. TRANS: Header for list of subscribers for a user (first page).
+#. TRANS: %s is the user's nickname.
+#: actions/subscribers.php:51
+#, php-format
+msgid "%s subscribers"
+msgstr "Sotscritôrs par %s"
+
+#. TRANS: Header for list of subscribers for a user (not first page).
+#. TRANS: %1$s is the user's nickname, $2$d is the page number.
+#: actions/subscribers.php:55
+#, php-format
+msgid "%1$s subscribers, page %2$d"
+msgstr "Sotscritôrs par %1$s, pagjine %2$d"
+
+#. TRANS: Page notice for page with an overview of all subscribers
+#. TRANS: of the logged in user's own profile.
+#: actions/subscribers.php:68
+msgid "These are the people who listen to your notices."
+msgstr "Chestis a son lis personis a che a scoltin i tiei avîs."
+
+#. TRANS: Page notice for page with an overview of all subscribers of a user other
+#. TRANS: than the logged in user. %s is the user nickname.
+#: actions/subscribers.php:74
+#, php-format
+msgid "These are the people who listen to %s's notices."
+msgstr "Chestis a son lis personis che a scoltin i avîs di %s."
+
+#. TRANS: Subscriber list text when the logged in user has no subscribers.
+#: actions/subscribers.php:114
+msgid ""
+"You have no subscribers. Try subscribing to people you know and they might "
+"return the favor."
+msgstr ""
+"No tu âs sotscritôrs. Prove a sotscriviti a cualchidun che tu cognossis e "
+"magari ti tornaran il plasê."
+
+#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
+#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
+#: actions/subscribers.php:118
+#, php-format
+msgid "%s has no subscribers. Want to be the first?"
+msgstr "%s nol à nissun sotscritôr. Vuelistu jessi il prin?"
+
+#. TRANS: Subscriber list text when looking at the subscribers for a of a user that has none
+#. TRANS: as an anonymous user. %s is the user nickname.
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/subscribers.php:127
+#, php-format
+msgid ""
+"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
+"%) and be the first?"
+msgstr ""
+
+#. TRANS: Header for subscriptions overview for a user (not first page).
+#. TRANS: %1$s is a user nickname, %2$d is the page number.
+#: actions/subscriptions.php:55
+#, php-format
+msgid "%1$s subscriptions, page %2$d"
+msgstr "Sotscrizions di %1$s, pagjine %2$d"
+
+#. TRANS: Page notice for page with an overview of all subscriptions
+#. TRANS: of the logged in user's own profile.
+#: actions/subscriptions.php:68
+msgid "These are the people whose notices you listen to."
+msgstr ""
+
+#. TRANS: Page notice for page with an overview of all subscriptions of a user other
+#. TRANS: than the logged in user. %s is the user nickname.
+#: actions/subscriptions.php:74
+#, php-format
+msgid "These are the people whose notices %s listens to."
+msgstr ""
+
+#. TRANS: Subscription list text when the logged in user has no subscriptions.
+#. TRANS: This message contains Markdown URLs. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/subscriptions.php:133
+#, php-format
+msgid ""
+"You're not listening to anyone's notices right now, try subscribing to "
+"people you know. Try [people search](%%action.peoplesearch%%), look for "
+"members in groups you're interested in and in our [featured users](%%action."
+"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can "
+"automatically subscribe to people you already follow there."
+msgstr ""
+
+#. TRANS: Subscription list text when looking at the subscriptions for a of a user other
+#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
+#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
+#. TRANS: as an anonymous user. %s is the user nickname.
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
+#, php-format
+msgid "%s is not listening to anyone."
+msgstr "%s nol è daûr a scoltâ nissun."
+
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
+msgid "Subscription feed for %s (Atom)"
+msgstr "Canâl des sotscrizions di %s (Atom)"
+
+#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
+#: actions/subscriptions.php:239
+msgid "Jabber"
+msgstr "Jabber"
+
+#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
+#: actions/subscriptions.php:254
+msgid "SMS"
+msgstr "SMS"
+
+#: actions/tag.php:69
+#, php-format
+msgid "Notices tagged with %1$s, page %2$d"
+msgstr "Avîs etichetâts cun %1$s, pagjine %2$d"
+
+#: actions/tag.php:87
+#, php-format
+msgid "Notice feed for tag %s (RSS 1.0)"
+msgstr "Canâl dai avîs pe etichete %s (RSS 1.0)"
+
+#: actions/tag.php:93
+#, php-format
+msgid "Notice feed for tag %s (RSS 2.0)"
+msgstr "Canâl dai avîs pe etichete %s (RSS 2.0)"
+
+#: actions/tag.php:99
+#, php-format
+msgid "Notice feed for tag %s (Atom)"
+msgstr "Canâl dai avîs pe etichete %s (Atom)"
+
+#: actions/tagother.php:39
+msgid "No ID argument."
+msgstr ""
+
+#: actions/tagother.php:65
+#, php-format
+msgid "Tag %s"
+msgstr "Etichete %s"
+
+#. TRANS: H2 for user profile information.
+#: actions/tagother.php:77 lib/userprofile.php:76
+msgid "User profile"
+msgstr "Profîl dal utent"
+
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
+msgid "Photo"
+msgstr "Foto"
+
+#: actions/tagother.php:141
+msgid "Tag user"
+msgstr "Etichete utent"
+
+#: actions/tagother.php:151
+msgid ""
+"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
+"separated"
+msgstr ""
+
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "La etichete no je valide: \"%s\""
+
+#: actions/tagother.php:193
+msgid ""
+"You can only tag people you are subscribed to or who are subscribed to you."
+msgstr ""
+
+#: 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 ""
+
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
+#: actions/unblock.php:59
+msgid "You haven't blocked that user."
+msgstr ""
+
+#: actions/unsandbox.php:72
+msgid "User is not sandboxed."
+msgstr ""
+
+#: actions/unsilence.php:72
+msgid "User is not silenced."
+msgstr ""
+
+#: actions/unsubscribe.php:77
+msgid "No profile ID in request."
+msgstr ""
+
+#: actions/unsubscribe.php:98
+msgid "Unsubscribed"
+msgstr "No tu sês sotscrit"
+
+#: actions/updateprofile.php:64
+#, php-format
+msgid ""
+"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
+msgstr ""
+
+#. TRANS: User admin panel title
+#: actions/useradminpanel.php:58
+msgctxt "TITLE"
+msgid "User"
+msgstr "Utent"
+
+#. TRANS: Instruction for user admin panel.
+#: actions/useradminpanel.php:69
+msgid "User settings for this StatusNet site"
+msgstr ""
+
+#. TRANS: Form validation error in user admin panel when a non-numeric character limit was set.
+#: actions/useradminpanel.php:147
+msgid "Invalid bio limit. Must be numeric."
+msgstr ""
+
+#. TRANS: Form validation error in user admin panel when welcome text is too long.
+#: actions/useradminpanel.php:154
+msgid "Invalid welcome text. Maximum length is 255 characters."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
+#. TRANS: users in user admin panel. %1$s is the invalid nickname.
+#: actions/useradminpanel.php:166
+#, php-format
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
+msgstr ""
+
+#. TRANS: Link description in user account settings menu.
+#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
+msgid "Profile"
+msgstr "Profîl"
+
+#. TRANS: Field label in user admin panel for setting the character limit for the bio field.
+#: actions/useradminpanel.php:220
+msgid "Bio Limit"
+msgstr ""
+
+#. TRANS: Tooltip in user admin panel for setting the character limit for the bio field.
+#: actions/useradminpanel.php:222
+msgid "Maximum length of a profile bio in characters."
+msgstr ""
+
+#. TRANS: Form legend in user admin panel.
+#: actions/useradminpanel.php:231
+msgid "New users"
+msgstr "Gnûfs utents"
+
+#. TRANS: Field label in user admin panel for setting new user welcome text.
+#: actions/useradminpanel.php:236
+msgid "New user welcome"
+msgstr ""
+
+#. TRANS: Tooltip in user admin panel for setting new user welcome text.
+#: actions/useradminpanel.php:238
+msgid "Welcome text for new users (maximum 255 characters)."
+msgstr ""
+
+#. TRANS: Field label in user admin panel for setting default subscription for new users.
+#: actions/useradminpanel.php:244
+msgid "Default subscription"
+msgstr "Sotscrizion predeterminade"
+
+#. TRANS: Tooltip in user admin panel for setting default subscription for new users.
+#: actions/useradminpanel.php:246
+msgid "Automatically subscribe new users to this user."
+msgstr ""
+
+#. TRANS: Form legend in user admin panel.
+#: actions/useradminpanel.php:256
+msgid "Invitations"
+msgstr "Invîts"
+
+#. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail.
+#: actions/useradminpanel.php:262
+msgid "Invitations enabled"
+msgstr ""
+
+#. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail.
+#: actions/useradminpanel.php:265
+msgid "Whether to allow users to invite new users."
+msgstr ""
+
+#. TRANS: Title for button to save user settings in user admin panel.
+#: actions/useradminpanel.php:302
+msgid "Save user settings."
+msgstr "Salve lis impuestazions dal utent"
+
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
+msgid "Authorize subscription"
+msgstr "Autorize la sotscrizion"
+
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+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 ""
+
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
+#. TRANS: Menu item for site administration
+#: actions/userauthorization.php:207 actions/version.php:167
+#: lib/adminpanelaction.php:403
+msgid "License"
+msgstr "Licence"
+
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
+msgid "Accept"
+msgstr "Acete"
+
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
+msgstr "Sotscrivimi a chest utent."
+
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
+msgid "Reject"
+msgstr "Refude"
+
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
+msgstr "Refude la sotscrizion"
+
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
+msgid "No authorization request!"
+msgstr ""
+
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
+msgid "Subscription authorized"
+msgstr "Sotscrizion autorizade"
+
+#: actions/userauthorization.php:274
+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 ""
+
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
+msgid "Subscription rejected"
+msgstr "Sotscrizion refudade"
+
+#: actions/userauthorization.php:288
+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 ""
+
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, php-format
+msgid "Listener URI \"%s\" not found here."
+msgstr ""
+
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, php-format
+msgid "Listenee URI \"%s\" is too long."
+msgstr ""
+
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, php-format
+msgid "Listenee URI \"%s\" is a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, php-format
+msgid "Profile URL \"%s\" is for a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, php-format
+msgid "Avatar URL \"%s\" is not valid."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, php-format
+msgid "Cannot read avatar URL \"%s\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
+msgstr ""
+
+#. TRANS: Page title for profile design page.
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
+msgid "Profile design"
+msgstr ""
+
+#. TRANS: Instructions for profile design page.
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
+msgid ""
+"Customize the way your profile looks with a background image and a colour "
+"palette of your choice."
+msgstr ""
+
+#: actions/userdesignsettings.php:272
+msgid "Enjoy your hotdog!"
+msgstr ""
+
+#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number.
+#: actions/usergroups.php:66
+#, php-format
+msgid "%1$s groups, page %2$d"
+msgstr "Grups di %1$s, pagjine %2$d"
+
+#: actions/usergroups.php:132
+msgid "Search for more groups"
+msgstr "Cîr altris grups"
+
+#: actions/usergroups.php:159
+#, php-format
+msgid "%s is not a member of any group."
+msgstr "%s nol fâs part di nissun grup."
+
+#: actions/usergroups.php:164
+#, php-format
+msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
+msgstr "Prove a [cirî grups](%%action.groupsearch%%) e unîti a lôr."
+
+#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
+#. TRANS: Message is used as a subtitle in atom group notice feed.
+#. TRANS: %1$s is a group name, %2$s is a site name.
+#. TRANS: Message is used as a subtitle in atom user notice feed.
+#. TRANS: %1$s is a user name, %2$s is a site name.
+#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
+#: lib/atomusernoticefeed.php:95
+#, php-format
+msgid "Updates from %1$s on %2$s!"
+msgstr "Inzornaments di %1$s su %2$s!"
+
+#: actions/version.php:75
+#, php-format
+msgid "StatusNet %s"
+msgstr "StatusNet %s"
+
+#: actions/version.php:155
+#, php-format
+msgid ""
+"This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, "
+"Inc. and contributors."
+msgstr ""
+"Chest sît al funzione graziis a %1$s version %2$s, Copyright 2008-2010 "
+"StatusNet, Inc. e i colaboradôrs."
+
+#: actions/version.php:163
+msgid "Contributors"
+msgstr "Colaboradôrs"
+
+#: actions/version.php:170
+msgid ""
+"StatusNet is free software: you can redistribute it and/or modify it under "
+"the terms of the GNU Affero General Public License as published by the Free "
+"Software Foundation, either version 3 of the License, or (at your option) "
+"any later version. "
+msgstr ""
+
+#: actions/version.php:176
+msgid ""
+"This program is distributed in the hope that it will be useful, but WITHOUT "
+"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
+"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License "
+"for more details. "
+msgstr ""
+
+#: actions/version.php:182
+#, php-format
+msgid ""
+"You should have received a copy of the GNU Affero General Public License "
+"along with this program. If not, see %s."
+msgstr ""
+"Tu varessis di vê ricevût une copie de GNU Affero General Public License "
+"insieme cun chest program. Se nol è cussì, cjale %s."
+
+#: actions/version.php:191
+msgid "Plugins"
+msgstr ""
+
+#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
+#: actions/version.php:198 lib/action.php:898
+msgid "Version"
+msgstr "Version"
+
+#: actions/version.php:199
+msgid "Author(s)"
+msgstr "Autôr(s)"
+
+#. TRANS: Activity title when marking a notice as favorite.
+#: classes/Fave.php:164
+msgid "Favor"
+msgstr "Preferìs"
+
+#. TRANS: Ntofication given when a user marks a notice as favorite.
+#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
+#: classes/Fave.php:167
+#, php-format
+msgid "%1$s marked notice %2$s as a favorite."
+msgstr "%1$s al à segnât l'avîs %2$s come preferît."
+
+#. TRANS: Server exception thrown when a URL cannot be processed.
+#: classes/File.php:162
+#, php-format
+msgid "Cannot process URL '%s'"
+msgstr ""
+
+#. TRANS: Server exception thrown when... Robin thinks something is impossible!
+#: classes/File.php:194
+msgid "Robin thinks something is impossible."
+msgstr ""
+
+#. TRANS: Message given if an upload is larger than the configured maximum.
+#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
+#. TRANS: %1$s is used for plural.
+#: classes/File.php:210
+#, php-format
+msgid ""
+"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
+"Try to upload a smaller version."
+msgid_plural ""
+"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. "
+"Try to upload a smaller version."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Message given if an upload would exceed user quota.
+#. TRANS: %d (number) is the user quota in bytes and is used for plural.
+#: classes/File.php:223
+#, php-format
+msgid "A file this large would exceed your user quota of %d byte."
+msgid_plural "A file this large would exceed your user quota of %d bytes."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Message given id an upload would exceed a user's monthly quota.
+#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
+#: classes/File.php:235
+#, php-format
+msgid "A file this large would exceed your monthly quota of %d byte."
+msgid_plural "A file this large would exceed your monthly quota of %d bytes."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client exception thrown if a file upload does not have a valid name.
+#: classes/File.php:282 classes/File.php:297
+msgid "Invalid filename."
+msgstr ""
+
+#. TRANS: Exception thrown when joining a group fails.
+#: classes/Group_member.php:51
+msgid "Group join failed."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to leave a group the user is not a member of.
+#: classes/Group_member.php:64
+msgid "Not part of group."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to leave a group fails.
+#: classes/Group_member.php:72
+msgid "Group leave failed."
+msgstr ""
+
+#. TRANS: Exception thrown providing an invalid profile ID.
+#. TRANS: %s is the invalid profile ID.
+#: classes/Group_member.php:85
+#, php-format
+msgid "Profile ID %s is invalid."
+msgstr ""
+
+#. TRANS: Exception thrown providing an invalid group ID.
+#. TRANS: %s is the invalid group ID.
+#: classes/Group_member.php:98
+#, php-format
+msgid "Group ID %s is invalid."
+msgstr ""
+
+#. TRANS: Activity title.
+#: classes/Group_member.php:147 lib/joinform.php:114
+msgid "Join"
+msgstr "Iscrizion"
+
+#. TRANS: Success message for subscribe to group attempt through OStatus.
+#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
+#: classes/Group_member.php:151
+#, php-format
+msgid "%1$s has joined group %2$s."
+msgstr "%1$s si à unît al grup %2$s."
+
+#. TRANS: Server exception thrown when updating a local group fails.
+#: classes/Local_group.php:42
+msgid "Could not update local group."
+msgstr ""
+
+#. TRANS: Exception thrown when trying creating a login token failed.
+#. TRANS: %s is the user nickname for which token creation failed.
+#: classes/Login_token.php:78
+#, php-format
+msgid "Could not create login token for %s"
+msgstr ""
+
+#. TRANS: Exception thrown when database name or Data Source Name could not be found.
+#: classes/Memcached_DataObject.php:542
+msgid "No database name or DSN found anywhere."
+msgstr ""
+
+#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them.
+#: classes/Message.php:45
+msgid "You are banned from sending direct messages."
+msgstr ""
+
+#. TRANS: Message given when a message could not be stored on the server.
+#: classes/Message.php:69
+msgid "Could not insert message."
+msgstr ""
+
+#. TRANS: Message given when a message could not be updated on the server.
+#: classes/Message.php:80
+msgid "Could not update message with new URI."
+msgstr ""
+
+#. TRANS: Server exception thrown when a user profile for a notice cannot be found.
+#. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number).
+#: classes/Notice.php:98
+#, php-format
+msgid "No such profile (%1$d) for notice (%2$d)."
+msgstr ""
+
+#. TRANS: Server exception. %s are the error details.
+#: classes/Notice.php:199
+#, php-format
+msgid "Database error inserting hashtag: %s"
+msgstr ""
+
+#. TRANS: Client exception thrown if a notice contains too many characters.
+#: classes/Notice.php:279
+msgid "Problem saving notice. Too long."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
+#: classes/Notice.php:284
+msgid "Problem saving notice. Unknown user."
+msgstr ""
+
+#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
+#: classes/Notice.php:290
+msgid ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+msgstr ""
+
+#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
+#: classes/Notice.php:297
+msgid ""
+"Too many duplicate messages too quickly; take a breather and post again in a "
+"few minutes."
+msgstr ""
+
+#. TRANS: Client exception thrown when a user tries to post while being banned.
+#: classes/Notice.php:305
+msgid "You are banned from posting notices on this site."
+msgstr ""
+
+#. TRANS: Server exception thrown when a notice cannot be saved.
+#. TRANS: Server exception thrown when a notice cannot be updated.
+#: classes/Notice.php:372 classes/Notice.php:399
+msgid "Problem saving notice."
+msgstr ""
+
+#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
+#: classes/Notice.php:929
+msgid "Bad type provided to saveKnownGroups."
+msgstr ""
+
+#. TRANS: Server exception thrown when an update for a group inbox fails.
+#: classes/Notice.php:1028
+msgid "Problem saving group inbox."
+msgstr ""
+
+#. TRANS: Server exception thrown when a reply cannot be saved.
+#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
+#: classes/Notice.php:1142
+#, php-format
+msgid "Could not save reply for %1$d, %2$d."
+msgstr ""
+
+#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
+#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
+#: classes/Notice.php:1661
+#, php-format
+msgid "RT @%1$s %2$s"
+msgstr "RT @%1$s %2$s"
+
+#. TRANS: Full name of a profile or group followed by nickname in parens
+#: classes/Profile.php:172 classes/User_group.php:242
+#, php-format
+msgctxt "FANCYNAME"
+msgid "%1$s (%2$s)"
+msgstr "%1$s (%2$s)"
+
+#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
+#. TRANS: %1$s is the role name, %2$s is the user ID (number).
+#: classes/Profile.php:775
+#, php-format
+msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
+#. TRANS: %1$s is the role name, %2$s is the user ID (number).
+#: classes/Profile.php:784
+#, php-format
+msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
+msgstr ""
+
+#. TRANS: Exception thrown when a right for a non-existing user profile is checked.
+#: classes/Remote_profile.php:54
+msgid "Missing profile."
+msgstr ""
+
+#. TRANS: Exception thrown when a tag cannot be saved.
+#: classes/Status_network.php:338
+msgid "Unable to save tag."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
+#: classes/Subscription.php:77 lib/oauthstore.php:482
+msgid "You have been banned from subscribing."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to subscribe while already subscribed.
+#: classes/Subscription.php:82
+msgid "Already subscribed!"
+msgstr ""
+
+#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user.
+#: classes/Subscription.php:87
+msgid "User has blocked you."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to unsibscribe without a subscription.
+#: classes/Subscription.php:176
+msgid "Not subscribed!"
+msgstr ""
+
+#. TRANS: Exception thrown when trying to unsubscribe a user from themselves.
+#: classes/Subscription.php:183
+msgid "Could not delete self-subscription."
+msgstr ""
+
+#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server.
+#: classes/Subscription.php:211
+msgid "Could not delete subscription OMB token."
+msgstr ""
+
+#. TRANS: Exception thrown when a subscription could not be deleted on the server.
+#: classes/Subscription.php:223
+msgid "Could not delete subscription."
+msgstr ""
+
+#. TRANS: Activity tile when subscribing to another person.
+#: classes/Subscription.php:265
+msgid "Follow"
+msgstr "Seguìs"
+
+#. TRANS: Notification given when one person starts following another.
+#. TRANS: %1$s is the subscriber, %2$s is the subscribed.
+#: classes/Subscription.php:268
+#, php-format
+msgid "%1$s is now following %2$s."
+msgstr "%1$s al seguìs cumò %2$s."
+
+#. TRANS: Notice given on user registration.
+#. TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
+#: classes/User.php:395
+#, php-format
+msgid "Welcome to %1$s, @%2$s!"
+msgstr "Benvignût su %1$s, @%2$s!"
+
+#. TRANS: Server exception.
+#: classes/User.php:918
+msgid "No single user defined for single-user mode."
+msgstr ""
+
+#. TRANS: Server exception.
+#: classes/User.php:922
+msgid "Single-user mode code called when not enabled."
+msgstr ""
+
+#. TRANS: Server exception thrown when creating a group failed.
+#: classes/User_group.php:522
+msgid "Could not create group."
+msgstr ""
+
+#. TRANS: Server exception thrown when updating a group URI failed.
+#: classes/User_group.php:532
+msgid "Could not set group URI."
+msgstr ""
+
+#. TRANS: Server exception thrown when setting group membership failed.
+#: classes/User_group.php:555
+msgid "Could not set group membership."
+msgstr ""
+
+#. TRANS: Server exception thrown when saving local group information failed.
+#: classes/User_group.php:570
+msgid "Could not save local group info."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr ""
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:104
+msgid "Change your profile settings"
+msgstr ""
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:111
+msgid "Upload an avatar"
+msgstr "Cjame un avatar"
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:118
+msgid "Change your password"
+msgstr "Cambie la tô password"
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:125
+msgid "Change email handling"
+msgstr ""
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:132
+msgid "Design your profile"
+msgstr ""
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:139
+msgid "Other options"
+msgstr "Altris opzions"
+
+#. TRANS: Link description in user account settings menu.
+#: lib/accountsettingsaction.php:141
+msgid "Other"
+msgstr "Altris"
+
+#. TRANS: Page title. %1$s is the title, %2$s is the site name.
+#: lib/action.php:161
+#, php-format
+msgid "%1$s - %2$s"
+msgstr "%1$s - %2$s"
+
+#. TRANS: Page title for a page without a title set.
+#: lib/action.php:177
+msgid "Untitled page"
+msgstr "Pagjine cence titul"
+
+#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
+#: lib/action.php:325
+msgctxt "TOOLTIP"
+msgid "Show more"
+msgstr "Mostre di plui"
+
+#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
+#: lib/action.php:544
+msgid "Primary site navigation"
+msgstr ""
+
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
+msgctxt "TOOLTIP"
+msgid "Personal profile and friends timeline"
+msgstr "Profîl personâl e ativitât dai amîs"
+
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
+msgctxt "MENU"
+msgid "Personal"
+msgstr "Personâl"
+
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
+msgctxt "TOOLTIP"
+msgid "Change your email, avatar, password, profile"
+msgstr "Cambie la direzion di pueste, l'avatar, la password o il profîl"
+
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
+msgid "Account"
+msgstr "Identitât"
+
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
+msgctxt "TOOLTIP"
+msgid "Connect to services"
+msgstr ""
+
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
+msgid "Connect"
+msgstr ""
+
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
+msgctxt "TOOLTIP"
+msgid "Change site configuration"
+msgstr "Cambie la configurazion dal sît"
+
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/action.php:569 lib/groupnav.php:117
+msgctxt "MENU"
+msgid "Admin"
+msgstr "Aministradôr"
+
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Invite friends and colleagues to join you on %s"
+msgstr "Invide amîs e compagns di lavôr a partecipâ a %s"
+
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
+msgctxt "MENU"
+msgid "Invite"
+msgstr "Invide"
+
+#. TRANS: Tooltip for main menu option "Logout"
+#: lib/action.php:582
+msgctxt "TOOLTIP"
+msgid "Logout from the site"
+msgstr "Jes dal sît"
+
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
+msgctxt "MENU"
+msgid "Logout"
+msgstr "Jes"
+
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
+msgctxt "TOOLTIP"
+msgid "Create an account"
+msgstr "Cree une identitât"
+
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
+msgctxt "MENU"
+msgid "Register"
+msgstr "Regjistriti"
+
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
+msgctxt "TOOLTIP"
+msgid "Login to the site"
+msgstr "Jentre tal sît"
+
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
+msgctxt "MENU"
+msgid "Login"
+msgstr "Jentre"
+
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
+msgctxt "TOOLTIP"
+msgid "Help me!"
+msgstr "Judimi!"
+
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
+msgctxt "MENU"
+msgid "Help"
+msgstr "Jutori"
+
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
+msgctxt "TOOLTIP"
+msgid "Search for people or text"
+msgstr "Cîr int o test"
+
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
+msgctxt "MENU"
+msgid "Search"
+msgstr "Cîr"
+
+#. TRANS: DT element for site notice. String is hidden in default CSS.
+#. TRANS: Menu item for site administration
+#: lib/action.php:633 lib/adminpanelaction.php:387
+msgid "Site notice"
+msgstr ""
+
+#. TRANS: DT element for local views block. String is hidden in default CSS.
+#: lib/action.php:700
+msgid "Local views"
+msgstr "Viodudis locâls"
+
+#. TRANS: DT element for page notice. String is hidden in default CSS.
+#: lib/action.php:770
+msgid "Page notice"
+msgstr ""
+
+#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
+#: lib/action.php:871
+msgid "Secondary site navigation"
+msgstr ""
+
+#. TRANS: Secondary navigation menu option leading to help on StatusNet.
+#: lib/action.php:877
+msgid "Help"
+msgstr "Jutori"
+
+#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
+#: lib/action.php:880
+msgid "About"
+msgstr "Informazions"
+
+#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
+#: lib/action.php:883
+msgid "FAQ"
+msgstr ""
+
+#. TRANS: Secondary navigation menu option leading to Terms of Service.
+#: lib/action.php:888
+msgid "TOS"
+msgstr ""
+
+#. TRANS: Secondary navigation menu option leading to privacy policy.
+#: lib/action.php:892
+msgid "Privacy"
+msgstr ""
+
+#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
+#: lib/action.php:895
+msgid "Source"
+msgstr "Sorzint"
+
+#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
+#. TRANS: StatusNet site, where to report bugs, ...
+#: lib/action.php:902
+msgid "Contact"
+msgstr "Contats"
+
+#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
+#: lib/action.php:905
+msgid "Badge"
+msgstr ""
+
+#. TRANS: DT element for StatusNet software license.
+#: lib/action.php:934
+msgid "StatusNet software license"
+msgstr "Licence dal software StatusNet"
+
+#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set.
+#. TRANS: Text between [] is a link description, text between () is the link itself.
+#. TRANS: Make sure there is no whitespace between "]" and "(".
+#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
+#: lib/action.php:941
+#, php-format
+msgid ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%)."
+msgstr ""
+"**%%site.name%%** al è un servizi di microblogging ufiert di [%%site."
+"broughtby%%](%%site.broughtbyurl%%)."
+
+#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
+#: lib/action.php:944
+#, php-format
+msgid "**%%site.name%%** is a microblogging service."
+msgstr "**%%site.name%%** al è un servizi di microblogging."
+
+#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license.
+#. TRANS: Make sure there is no whitespace between "]" and "(".
+#. TRANS: Text between [] is a link description, text between () is the link itself.
+#. TRANS: %s is the version of StatusNet that is being used.
+#: lib/action.php:951
+#, 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 ""
+"Al dopre il software di microblogging [StatusNet](http://status.net/), "
+"version %s, disponibil sot de [GNU Affero General Public License](http://www."
+"fsf.org/licensing/licenses/agpl-3.0.html)."
+
+#. TRANS: DT element for StatusNet site content license.
+#: lib/action.php:967
+msgid "Site content license"
+msgstr "Licence dal contignût dal sît"
+
+#. TRANS: Content license displayed when license is set to 'private'.
+#. TRANS: %1$s is the site name.
+#: lib/action.php:974
+#, php-format
+msgid "Content and data of %1$s are private and confidential."
+msgstr ""
+
+#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
+#. TRANS: %1$s is the copyright owner.
+#: lib/action.php:981
+#, php-format
+msgid "Content and data copyright by %1$s. All rights reserved."
+msgstr ""
+
+#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
+#: lib/action.php:985
+msgid "Content and data copyright by contributors. All rights reserved."
+msgstr ""
+
+#. TRANS: license message in footer.
+#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
+#: lib/action.php:1017
+#, php-format
+msgid "All %1$s content and data are available under the %2$s license."
+msgstr ""
+"Dut il contignût e i dâts di %1$s a son disponibii sot de licence %2$s."
+
+#. TRANS: DT element for pagination (previous/next, etc.).
+#: lib/action.php:1353
+msgid "Pagination"
+msgstr ""
+
+#. TRANS: Pagination message to go to a page displaying information more in the
+#. TRANS: present than the currently displayed information.
+#: lib/action.php:1364
+msgid "After"
+msgstr ""
+
+#. TRANS: Pagination message to go to a page displaying information more in the
+#. TRANS: past than the currently displayed information.
+#: lib/action.php:1374
+msgid "Before"
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
+#: lib/activity.php:125
+msgid "Expecting a root feed element but got a whole XML document."
+msgstr ""
+
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr ""
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "L'utent %s nol è stât cjatât."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s %2$s %3$s"
+
+#. TRANS: Client exception thrown when there is no source attribute.
+#: lib/activityutils.php:200
+msgid "Can't handle remote content yet."
+msgstr ""
+
+#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet.
+#: lib/activityutils.php:237
+msgid "Can't handle embedded XML content yet."
+msgstr ""
+
+#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet.
+#: lib/activityutils.php:242
+msgid "Can't handle embedded Base64 content yet."
+msgstr ""
+
+#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights.
+#: lib/adminpanelaction.php:96
+msgid "You cannot make changes to this site."
+msgstr ""
+
+#. TRANS: Client error message throw when a certain panel's settings cannot be changed.
+#: lib/adminpanelaction.php:108
+msgid "Changes to that panel are not allowed."
+msgstr ""
+
+#. TRANS: Client error message.
+#: lib/adminpanelaction.php:222
+msgid "showForm() not implemented."
+msgstr ""
+
+#. TRANS: Client error message
+#: lib/adminpanelaction.php:250
+msgid "saveSettings() not implemented."
+msgstr ""
+
+#. TRANS: Client error message thrown if design settings could not be deleted in
+#. TRANS: the admin panel Design.
+#: lib/adminpanelaction.php:274
+msgid "Unable to delete design setting."
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:337
+msgid "Basic site configuration"
+msgstr ""
+
+#. TRANS: Menu item for site administration
+#: lib/adminpanelaction.php:339
+msgctxt "MENU"
+msgid "Site"
+msgstr "Sît"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:345
+msgid "Design configuration"
+msgstr ""
+
+#. TRANS: Menu item for site administration
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/adminpanelaction.php:347 lib/groupnav.php:135
+msgctxt "MENU"
+msgid "Design"
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:353
+msgid "User configuration"
+msgstr ""
+
+#. TRANS: Menu item for site administration
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
+msgid "User"
+msgstr "Utent"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:361
+msgid "Access configuration"
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:369
+msgid "Paths configuration"
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:377
+msgid "Sessions configuration"
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:385
+msgid "Edit site notice"
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:393
+msgid "Snapshots configuration"
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:401
+msgid "Set site license"
+msgstr ""
+
+#. TRANS: Client error 401.
+#: lib/apiauth.php:111
+msgid "API resource requires read-write access, but you only have read access."
+msgstr ""
+
+#. TRANS: OAuth exception thrown when no application is found for a given consumer key.
+#: lib/apiauth.php:177
+msgid "No application for that consumer key."
+msgstr ""
+
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
+#. TRANS: OAuth exception given when an incorrect access token was given for a user.
+#: lib/apiauth.php:225
+msgid "Bad access token."
+msgstr ""
+
+#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
+#: lib/apiauth.php:230
+msgid "No user for that token."
+msgstr ""
+
+#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
+#. TRANS: Client error thrown when authentication fails.
+#: lib/apiauth.php:272 lib/apiauth.php:302
+msgid "Could not authenticate you."
+msgstr ""
+
+#. TRANS: Server error displayed when trying to create an anynymous OAuth consumer.
+#: lib/apioauthstore.php:45
+msgid "Could not create anonymous consumer."
+msgstr ""
+
+#. TRANS: Server error displayed when trying to create an anynymous OAuth application.
+#: lib/apioauthstore.php:69
+msgid "Could not create anonymous OAuth application."
+msgstr ""
+
+#. TRANS: Exception thrown when no token association could be found.
+#: lib/apioauthstore.php:151
+msgid ""
+"Could not find a profile and application associated with the request token."
+msgstr ""
+
+#. TRANS: Exception thrown when no access token can be issued.
+#: lib/apioauthstore.php:209
+msgid "Could not issue access token."
+msgstr ""
+
+#: lib/apioauthstore.php:317
+msgid "Database error inserting OAuth application user."
+msgstr ""
+
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr ""
+
+#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
+#: lib/apioauthstore.php:371
+msgid "Tried to revoke unknown token."
+msgstr ""
+
+#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
+#: lib/apioauthstore.php:376
+msgid "Failed to delete revoked token."
+msgstr ""
+
+#. TRANS: Form guide.
+#: lib/applicationeditform.php:182
+msgid "Icon for this application"
+msgstr ""
+
+#. TRANS: Form input field instructions.
+#. TRANS: %d is the number of available characters for the description.
+#: lib/applicationeditform.php:201
+#, php-format
+msgid "Describe your application in %d character"
+msgid_plural "Describe your application in %d characters"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:205
+msgid "Describe your application"
+msgstr ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:216
+msgid "URL of the homepage of this application"
+msgstr ""
+
+#. TRANS: Form input field label.
+#: lib/applicationeditform.php:218
+msgid "Source URL"
+msgstr ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:225
+msgid "Organization responsible for this application"
+msgstr ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:234
+msgid "URL for the homepage of the organization"
+msgstr ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:243
+msgid "URL to redirect to after authentication"
+msgstr ""
+
+#. TRANS: Radio button label for application type
+#: lib/applicationeditform.php:271
+msgid "Browser"
+msgstr ""
+
+#. TRANS: Radio button label for application type
+#: lib/applicationeditform.php:288
+msgid "Desktop"
+msgstr ""
+
+#. TRANS: Form guide.
+#: lib/applicationeditform.php:290
+msgid "Type of application, browser or desktop"
+msgstr ""
+
+#. TRANS: Radio button label for access type.
+#: lib/applicationeditform.php:314
+msgid "Read-only"
+msgstr ""
+
+#. TRANS: Radio button label for access type.
+#: lib/applicationeditform.php:334
+msgid "Read-write"
+msgstr ""
+
+#. TRANS: Form guide.
+#: lib/applicationeditform.php:336
+msgid "Default access for this application: read-only, or read-write"
+msgstr ""
+
+#. TRANS: Submit button title.
+#: lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "Scancele"
+
+#: lib/applicationlist.php:247
+msgid " by "
+msgstr " di "
+
+#. TRANS: Application access type
+#: lib/applicationlist.php:260
+msgid "read-write"
+msgstr ""
+
+#. TRANS: Application access type
+#: lib/applicationlist.php:262
+msgid "read-only"
+msgstr ""
+
+#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only")
+#: lib/applicationlist.php:268
+#, php-format
+msgid "Approved %1$s - \"%2$s\" access."
+msgstr ""
+
+#. TRANS: Access token in the application list.
+#. TRANS: %s are the first 7 characters of the access token.
+#: lib/applicationlist.php:282
+#, php-format
+msgid "Access token starting with: %s"
+msgstr ""
+
+#. TRANS: Button label
+#: lib/applicationlist.php:298
+msgctxt "BUTTON"
+msgid "Revoke"
+msgstr ""
+
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr ""
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr ""
+
+#. TRANS: DT element label in attachment list item.
+#: lib/attachmentlist.php:293
+msgid "Author"
+msgstr "Autôr"
+
+#. TRANS: DT element label in attachment list item.
+#: lib/attachmentlist.php:307
+msgid "Provider"
+msgstr ""
+
+#. TRANS: Title.
+#: lib/attachmentnoticesection.php:67
+msgid "Notices where this attachment appears"
+msgstr ""
+
+#. TRANS: Title.
+#: lib/attachmenttagcloudsection.php:48
+msgid "Tags for this attachment"
+msgstr ""
+
+#. TRANS: Exception thrown when a password change fails.
+#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227
+msgid "Password changing failed."
+msgstr ""
+
+#. TRANS: Exception thrown when a password change attempt fails because it is not allowed.
+#: lib/authenticationplugin.php:238
+msgid "Password changing is not allowed."
+msgstr ""
+
+#. TRANS: Title for the form to block a user.
+#: lib/blockform.php:68
+msgid "Block"
+msgstr "Bloche"
+
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Bloche chest utent"
+
+#. TRANS: Title for command results.
+#: lib/channel.php:160 lib/channel.php:181
+msgid "Command results"
+msgstr ""
+
+#. TRANS: Title for command results.
+#: lib/channel.php:194
+msgid "AJAX error"
+msgstr ""
+
+#. TRANS: E-mail subject when a command has completed.
+#: lib/channel.php:233 lib/mailhandler.php:143
+msgid "Command complete"
+msgstr ""
+
+#. TRANS: E-mail subject when a command has failed.
+#: lib/channel.php:244
+msgid "Command failed"
+msgstr ""
+
+#. TRANS: Command exception text shown when a notice ID is requested that does not exist.
+#: lib/command.php:82 lib/command.php:106
+msgid "Notice with that id does not exist."
+msgstr ""
+
+#. TRANS: Command exception text shown when a last user notice is requested and it does not exist.
+#. TRANS: Error text shown when a last user notice is requested and it does not exist.
+#: lib/command.php:99 lib/command.php:630
+msgid "User has no last notice."
+msgstr ""
+
+#. TRANS: Message given requesting a profile for a non-existing user.
+#. TRANS: %s is the nickname of the user for which the profile could not be found.
+#: lib/command.php:128
+#, php-format
+msgid "Could not find a user with nickname %s."
+msgstr ""
+
+#. TRANS: Message given getting a non-existing user.
+#. TRANS: %s is the nickname of the user that could not be found.
+#: lib/command.php:148
+#, php-format
+msgid "Could not find a local user with nickname %s."
+msgstr ""
+
+#. TRANS: Error text shown when an unimplemented command is given.
+#: lib/command.php:183
+msgid "Sorry, this command is not yet implemented."
+msgstr ""
+
+#. TRANS: Command exception text shown when a user tries to nudge themselves.
+#: lib/command.php:229
+msgid "It does not make a lot of sense to nudge yourself!"
+msgstr ""
+
+#. TRANS: Message given having nudged another user.
+#. TRANS: %s is the nickname of the user that was nudged.
+#: lib/command.php:238
+#, php-format
+msgid "Nudge sent to %s."
+msgstr ""
+
+#. TRANS: User statistics text.
+#. TRANS: %1$s is the number of other user the user is subscribed to.
+#. TRANS: %2$s is the number of users that are subscribed to the user.
+#. TRANS: %3$s is the number of notices the user has sent.
+#: lib/command.php:268
+#, php-format
+msgid ""
+"Subscriptions: %1$s\n"
+"Subscribers: %2$s\n"
+"Notices: %3$s"
+msgstr ""
+"Sotscrizions: %1$s\n"
+"Sotscritôrs: %2$s\n"
+"Avîs: %3$s"
+
+#. TRANS: Text shown when a notice has been marked as favourite successfully.
+#: lib/command.php:312
+msgid "Notice marked as fave."
+msgstr ""
+
+#. TRANS: Message given having added a user to a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: lib/command.php:357
+#, php-format
+msgid "%1$s joined group %2$s."
+msgstr "%1$s si à unît al grup %2$s."
+
+#. TRANS: Message given having removed a user from a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: lib/command.php:405
+#, php-format
+msgid "%1$s left group %2$s."
+msgstr "%1$s al à lassât il grup %2$s."
+
+#. TRANS: Whois output.
+#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
+#: lib/command.php:426
+#, php-format
+msgctxt "WHOIS"
+msgid "%1$s (%2$s)"
+msgstr "%1$s (%2$s)"
+
+#. TRANS: Whois output. %s is the full name of the queried user.
+#: lib/command.php:430
+#, php-format
+msgid "Fullname: %s"
+msgstr "Non complet: %s"
+
+#. TRANS: Whois output. %s is the location of the queried user.
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is a location.
+#: lib/command.php:434 lib/mail.php:270
+#, php-format
+msgid "Location: %s"
+msgstr "Lûc: %s"
+
+#. TRANS: Whois output. %s is the homepage of the queried user.
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is a homepage.
+#: lib/command.php:438 lib/mail.php:274
+#, php-format
+msgid "Homepage: %s"
+msgstr "Pagjine web: %s"
+
+#. TRANS: Whois output. %s is the bio information of the queried user.
+#: lib/command.php:442
+#, php-format
+msgid "About: %s"
+msgstr "Informazions: %s"
+
+#. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server).
+#. TRANS: %s is a remote profile.
+#: lib/command.php:471
+#, php-format
+msgid ""
+"%s is a remote profile; you can only send direct messages to users on the "
+"same server."
+msgstr ""
+
+#. TRANS: Message given if content is too long. %1$sd is used for plural.
+#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
+#: lib/command.php:488
+#, php-format
+msgid "Message too long - maximum is %1$d character, you sent %2$d."
+msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+"Il messaç al è masse lunc. Il massim al è %1$d caratar, tu tu'nd âs mandâts %"
+"2$d."
+msgstr[1] ""
+"Il messaç al è masse lunc. Il massim a son %1$d caratars, tu tu'nd âs "
+"mandâts %2$d."
+
+#. TRANS: Error text shown sending a direct message fails with an unknown reason.
+#: lib/command.php:516
+msgid "Error sending direct message."
+msgstr ""
+
+#. TRANS: Message given having repeated a notice from another user.
+#. TRANS: %s is the name of the user for which the notice was repeated.
+#: lib/command.php:553
+#, php-format
+msgid "Notice from %s repeated."
+msgstr "L'avîs di %s al è stât ripetût."
+
+#. TRANS: Error text shown when repeating a notice fails with an unknown reason.
+#: lib/command.php:556
+msgid "Error repeating notice."
+msgstr ""
+
+#. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural.
+#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
+#: lib/command.php:591
+#, php-format
+msgid "Notice too long - maximum is %1$d character, you sent %2$d."
+msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+"L'avîs al è masse lunc. Il massim al è %1$d caratar, tu tu'nd âs mandâts %2"
+"$d."
+msgstr[1] ""
+"L'avîs al è masse lunc. Il massim a son %1$d caratars, tu tu'nd âs mandâts %2"
+"$d."
+
+#. TRANS: Text shown having sent a reply to a notice successfully.
+#. TRANS: %s is the nickname of the user of the notice the reply was sent to.
+#: lib/command.php:604
+#, php-format
+msgid "Reply to %s sent."
+msgstr "Rispueste a %s mandade."
+
+#. TRANS: Error text shown when a reply to a notice fails with an unknown reason.
+#: lib/command.php:607
+msgid "Error saving notice."
+msgstr ""
+
+#. TRANS: Error text shown when no username was provided when issuing a subscribe command.
+#: lib/command.php:654
+msgid "Specify the name of the user to subscribe to."
+msgstr ""
+
+#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command.
+#: lib/command.php:663
+msgid "Can't subscribe to OMB profiles by command."
+msgstr ""
+
+#. TRANS: Text shown after having subscribed to another user successfully.
+#. TRANS: %s is the name of the user the subscription was requested for.
+#: lib/command.php:671
+#, php-format
+msgid "Subscribed to %s."
+msgstr "Sotscrit a %s."
+
+#. TRANS: Error text shown when no username was provided when issuing an unsubscribe command.
+#. TRANS: Error text shown when no username was provided when issuing the command.
+#: lib/command.php:692 lib/command.php:803
+msgid "Specify the name of the user to unsubscribe from."
+msgstr "Inserìs il non dal utent che no tu vuelis plui sotscrivilu."
+
+#. TRANS: Text shown after having unsubscribed from another user successfully.
+#. TRANS: %s is the name of the user the unsubscription was requested for.
+#: lib/command.php:703
+#, php-format
+msgid "Unsubscribed from %s."
+msgstr "No tu sês plui sotscrit a %s."
+
+#. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented.
+#. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented.
+#: lib/command.php:723 lib/command.php:749
+msgid "Command not yet implemented."
+msgstr ""
+
+#. TRANS: Text shown when issuing the command "off" successfully.
+#: lib/command.php:727
+msgid "Notification off."
+msgstr ""
+
+#. TRANS: Error text shown when the command "off" fails for an unknown reason.
+#: lib/command.php:730
+msgid "Can't turn off notification."
+msgstr ""
+
+#. TRANS: Text shown when issuing the command "on" successfully.
+#: lib/command.php:753
+msgid "Notification on."
+msgstr ""
+
+#. TRANS: Error text shown when the command "on" fails for an unknown reason.
+#: lib/command.php:756
+msgid "Can't turn on notification."
+msgstr ""
+
+#. TRANS: Error text shown when issuing the login command while login is disabled.
+#: lib/command.php:770
+msgid "Login command is disabled."
+msgstr ""
+
+#. TRANS: Text shown after issuing the login command successfully.
+#. TRANS: %s is a logon link..
+#: lib/command.php:783
+#, php-format
+msgid "This link is useable only once and is valid for only 2 minutes: %s."
+msgstr ""
+
+#. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user).
+#. TRANS: %s is the name of the user the unsubscription was requested for.
+#: lib/command.php:812
+#, php-format
+msgid "Unsubscribed %s."
+msgstr ""
+
+#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions.
+#: lib/command.php:830
+msgid "You are not subscribed to anyone."
+msgstr "No tu sês sotscrit a nissun."
+
+#. TRANS: Text shown after requesting other users a user is subscribed to.
+#. TRANS: This message supports plural forms. This message is followed by a
+#. TRANS: hard coded space and a comma separated list of subscribed users.
+#: lib/command.php:835
+msgid "You are subscribed to this person:"
+msgid_plural "You are subscribed to these people:"
+msgstr[0] "Tu sês sotscrit a cheste persone:"
+msgstr[1] "Tu sês sotscrit a chestis personis:"
+
+#. TRANS: Text shown after requesting other users that are subscribed to a user
+#. TRANS: (followers) without having any subscribers.
+#: lib/command.php:857
+msgid "No one is subscribed to you."
+msgstr "No tu âs nissun sotscritôr."
+
+#. TRANS: Text shown after requesting other users that are subscribed to a user (followers).
+#. TRANS: This message supports plural forms. This message is followed by a
+#. TRANS: hard coded space and a comma separated list of subscribing users.
+#: lib/command.php:862
+msgid "This person is subscribed to you:"
+msgid_plural "These people are subscribed to you:"
+msgstr[0] "Chest al è il tô sotscritôr:"
+msgstr[1] "Chescj a son i tiei sotscritôrs:"
+
+#. TRANS: Text shown after requesting groups a user is subscribed to without having
+#. TRANS: any group subscriptions.
+#: lib/command.php:884
+msgid "You are not a member of any groups."
+msgstr "No tu sês part di nissun grup."
+
+#. TRANS: Text shown after requesting groups a user is subscribed to.
+#. TRANS: This message supports plural forms. This message is followed by a
+#. TRANS: hard coded space and a comma separated list of subscribed groups.
+#: lib/command.php:889
+msgid "You are a member of this group:"
+msgid_plural "You are a member of these groups:"
+msgstr[0] "Tu sês un membri di chest grup:"
+msgstr[1] "Tu sês un membri di chescj grups:"
+
+#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings.
+#: lib/command.php:904
+msgid ""
+"Commands:\n"
+"on - turn on notifications\n"
+"off - turn off notifications\n"
+"help - show this help\n"
+"follow - subscribe to user\n"
+"groups - lists the groups you have joined\n"
+"subscriptions - list the people you follow\n"
+"subscribers - list the people that follow you\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"
+"lose - force user to stop following you\n"
+"fav - add user's last notice as a 'fave'\n"
+"fav # - add notice with the given id as a 'fave'\n"
+"repeat # - repeat a notice with a given id\n"
+"repeat - repeat the last notice from user\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 ""
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#: lib/common.php:162
+msgid "No configuration file found."
+msgstr ""
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#. TRANS: Is followed by a list of directories (separated by HTML breaks).
+#: lib/common.php:165
+msgid "I looked for configuration files in the following places:"
+msgstr ""
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#: lib/common.php:168
+msgid "You may wish to run the installer to fix this."
+msgstr ""
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#. TRANS: The text is link text that leads to the installer page.
+#: lib/common.php:172
+msgid "Go to the installer."
+msgstr ""
+
+#. TRANS: Menu item for Instant Messaging settings.
+#: lib/connectsettingsaction.php:106
+msgctxt "MENU"
+msgid "IM"
+msgstr "IM"
+
+#. TRANS: Tooltip for Instant Messaging menu item.
+#: lib/connectsettingsaction.php:108
+msgid "Updates by instant messenger (IM)"
+msgstr "Inzornaments par mieç di messaçs istantaniis (IM)"
+
+#. TRANS: Menu item for Short Message Service settings.
+#: lib/connectsettingsaction.php:113
+msgctxt "MENU"
+msgid "SMS"
+msgstr "SMS"
+
+#. TRANS: Tooltip for Short Message Service menu item.
+#: lib/connectsettingsaction.php:115
+msgid "Updates by SMS"
+msgstr "Inzornaments par mieç di SMS"
+
+#. TRANS: Menu item for OuAth connection settings.
+#: lib/connectsettingsaction.php:120
+msgctxt "MENU"
+msgid "Connections"
+msgstr ""
+
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
+#: lib/connectsettingsaction.php:122
+msgid "Authorized connected applications"
+msgstr ""
+
+#: lib/dberroraction.php:59
+msgid "Database error"
+msgstr "Erôr de base di dâts"
+
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Elimine chest utent"
+
+#. TRANS: Label in form on profile design page.
+#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
+#: lib/designsettings.php:108
+msgid "Upload file"
+msgstr "Cjame sù un file"
+
+#. TRANS: Instructions for form on profile design page.
+#: lib/designsettings.php:113
+msgid ""
+"You can upload your personal background image. The maximum file size is 2MB."
+msgstr ""
+
+#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image.
+#: lib/designsettings.php:139
+msgctxt "RADIO"
+msgid "On"
+msgstr "Ativade"
+
+#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image.
+#: lib/designsettings.php:156
+msgctxt "RADIO"
+msgid "Off"
+msgstr "Disativade"
+
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Cambie i colôrs"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr ""
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr ""
+
+#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
+#: lib/designsettings.php:433
+msgid "Design defaults restored."
+msgstr ""
+
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr ""
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
+msgid "Disfavor this notice"
+msgstr "Gjave dai preferîts chest avîs"
+
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Gjave dai preferîts"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
+msgid "Favor this notice"
+msgstr "Preferìs chest avîs"
+
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Preferìs"
+
+#: lib/feed.php:84
+msgid "RSS 1.0"
+msgstr "RSS 1.0"
+
+#: lib/feed.php:86
+msgid "RSS 2.0"
+msgstr "RSS 2.0"
+
+#: lib/feed.php:88
+msgid "Atom"
+msgstr "Atom"
+
+#: lib/feed.php:90
+msgid "FOAF"
+msgstr "FOAF"
+
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr ""
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
+#. TRANS: Header for feed links (h2).
+#: lib/feedlist.php:66
+msgid "Feeds"
+msgstr "Canâi"
+
+#: lib/galleryaction.php:121
+msgid "Filter tags"
+msgstr "Filtre lis etichetis"
+
+#: lib/galleryaction.php:131
+msgid "All"
+msgstr "Ducj"
+
+#: lib/galleryaction.php:139
+msgid "Select tag to filter"
+msgstr "Sielç la etichete di filtrâ"
+
+#: lib/galleryaction.php:140
+msgid "Tag"
+msgstr "Etichete"
+
+#: lib/galleryaction.php:141
+msgid "Choose a tag to narrow list"
+msgstr "Sielç une etichete par scurtâ la liste"
+
+#: lib/galleryaction.php:143
+msgid "Go"
+msgstr "Va"
+
+#: lib/grantroleform.php:91
+#, php-format
+msgid "Grant this user the \"%s\" role"
+msgstr ""
+
+#: lib/groupeditform.php:147
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr ""
+
+#: lib/groupeditform.php:156
+msgid "URL of the homepage or blog of the group or topic."
+msgstr "URL de pagjine web o blog dal grup o dal argoment."
+
+#: lib/groupeditform.php:161
+msgid "Describe the group or topic"
+msgstr "Descrîf il grup o l'argoment"
+
+#: lib/groupeditform.php:163
+#, php-format
+msgid "Describe the group or topic in %d character or less"
+msgid_plural "Describe the group or topic in %d characters or less"
+msgstr[0] ""
+msgstr[1] ""
+
+#: lib/groupeditform.php:175
+msgid ""
+"Location for the group, if any, like \"City, State (or Region), Country\"."
+msgstr "Lûc dal grup, se al esist, come \"Citât, Regjon, Stât\"."
+
+#: lib/groupeditform.php:183
+#, php-format
+msgid ""
+"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
+"alias allowed."
+msgid_plural ""
+"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
+"aliases allowed."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Menu item in the group navigation page.
+#: lib/groupnav.php:86
+msgctxt "MENU"
+msgid "Group"
+msgstr "Grup"
+
+#. TRANS: Tooltip for menu item in the group navigation page.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:89
+#, php-format
+msgctxt "TOOLTIP"
+msgid "%s group"
+msgstr "Grup %s"
+
+#. TRANS: Menu item in the group navigation page.
+#: lib/groupnav.php:95
+msgctxt "MENU"
+msgid "Members"
+msgstr "Membris"
+
+#. TRANS: Tooltip for menu item in the group navigation page.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:98
+#, php-format
+msgctxt "TOOLTIP"
+msgid "%s group members"
+msgstr "Membris dal grup %s"
+
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/groupnav.php:108
+msgctxt "MENU"
+msgid "Blocked"
+msgstr "Blocâts"
+
+#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:111
+#, php-format
+msgctxt "TOOLTIP"
+msgid "%s blocked users"
+msgstr "Utents blocâts in %s"
+
+#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:120
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Edit %s group properties"
+msgstr "Cambie lis propietâts dal grup %s"
+
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/groupnav.php:126
+msgctxt "MENU"
+msgid "Logo"
+msgstr ""
+
+#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:129
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Add or edit %s logo"
+msgstr ""
+
+#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:138
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Add or edit %s design"
+msgstr ""
+
+#. TRANS: Title for groups with the most members section.
+#: lib/groupsbymemberssection.php:71
+msgid "Groups with most members"
+msgstr "Grups cun plui membris"
+
+#. TRANS: Title for groups with the most posts section.
+#: lib/groupsbypostssection.php:71
+msgid "Groups with most posts"
+msgstr "Grups cun plui messaçs"
+
+#. TRANS: Title for group tag cloud section.
+#. TRANS: %s is a group name.
+#: lib/grouptagcloudsection.php:57
+#, php-format
+msgid "Tags in %s group's notices"
+msgstr "Etichetis dai avîs dal grup %s"
+
+#. TRANS: Client exception 406
+#: lib/htmloutputter.php:104
+msgid "This page is not available in a media type you accept"
+msgstr ""
+
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
+msgid "Unsupported image file format."
+msgstr ""
+
+#. TRANS: Exception thrown when too large a file is uploaded.
+#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
+#: lib/imagefile.php:91
+#, php-format
+msgid "That file is too big. The maximum file size is %s."
+msgstr ""
+
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
+msgid "Partial upload."
+msgstr ""
+
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
+msgid "Not an image or corrupt file."
+msgstr ""
+
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
+msgid "Lost our file."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
+msgid "Unknown file type"
+msgstr ""
+
+#. TRANS: Number of megabytes. %d is the number.
+#: lib/imagefile.php:303
+#, php-format
+msgid "%dMB"
+msgid_plural "%dMB"
+msgstr[0] "%dMB"
+msgstr[1] "%dMB"
+
+#. TRANS: Number of kilobytes. %d is the number.
+#: lib/imagefile.php:307
+#, php-format
+msgid "%dkB"
+msgid_plural "%dkB"
+msgstr[0] "%dkB"
+msgstr[1] "%dkB"
+
+#. TRANS: Number of bytes. %d is the number.
+#: lib/imagefile.php:310
+#, php-format
+msgid "%dB"
+msgid_plural "%dB"
+msgstr[0] "%dB"
+msgstr[1] "%dB"
+
+#: lib/jabber.php:387
+#, php-format
+msgid "[%s]"
+msgstr "[%s]"
+
+#: lib/jabber.php:567
+#, php-format
+msgid "Unknown inbox source %d."
+msgstr ""
+
+#: lib/leaveform.php:114
+msgid "Leave"
+msgstr "Lasse"
+
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
+msgid "Login with a username and password"
+msgstr "Jentre cun non utent e password"
+
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
+msgid "Sign up for a new account"
+msgstr "Regjistre une gnove identitât"
+
+#. TRANS: Subject for address confirmation email.
+#: lib/mail.php:168
+msgid "Email address confirmation"
+msgstr "Conferme de direzion di pueste eletroniche"
+
+#. TRANS: Body for address confirmation email.
+#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
+#. TRANS: %3$s is the URL to confirm at.
+#: lib/mail.php:173
+#, php-format
+msgid ""
+"Hey, %1$s.\n"
+"\n"
+"Someone just entered this email address on %2$s.\n"
+"\n"
+"If it was you, and you want to confirm your entry, use the URL below:\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"If not, just ignore this message.\n"
+"\n"
+"Thanks for your time, \n"
+"%2$s\n"
+msgstr ""
+
+#. TRANS: Subject of new-subscriber notification e-mail.
+#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
+#: lib/mail.php:238
+#, php-format
+msgid "%1$s is now listening to your notices on %2$s."
+msgstr ""
+
+#. TRANS: This is a paragraph in a new-subscriber e-mail.
+#. TRANS: %s is a URL where the subscriber can be reported as abusive.
+#: lib/mail.php:245
+#, php-format
+msgid ""
+"If you believe this account is being used abusively, you can block them from "
+"your subscribers list and report as spam to site administrators at %s"
+msgstr ""
+
+#. TRANS: Main body of new-subscriber notification e-mail.
+#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename,
+#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
+#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
+#. TRANS: %7$s is a link to the addressed user's e-mail settings.
+#: lib/mail.php:255
+#, 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"
+"%2$s.\n"
+"\n"
+"----\n"
+"Change your email address or notification options at %7$s\n"
+msgstr ""
+
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is biographical information.
+#: lib/mail.php:278
+#, php-format
+msgid "Bio: %s"
+msgstr "Biografie: %s"
+
+#. TRANS: Subject of notification mail for new posting email address.
+#. TRANS: %s is the StatusNet sitename.
+#: lib/mail.php:307
+#, php-format
+msgid "New email address for posting to %s"
+msgstr ""
+
+#. TRANS: Body of notification mail for new posting email address.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
+#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
+#: lib/mail.php:313
+#, 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"
+"%1$s"
+msgstr ""
+
+#. TRANS: Subject line for SMS-by-email notification messages.
+#. TRANS: %s is the posting user's nickname.
+#: lib/mail.php:434
+#, php-format
+msgid "%s status"
+msgstr "stât di %s"
+
+#. TRANS: Subject line for SMS-by-email address confirmation message.
+#: lib/mail.php:460
+msgid "SMS confirmation"
+msgstr ""
+
+#. TRANS: Main body heading for SMS-by-email address confirmation message.
+#. TRANS: %s is the addressed user's nickname.
+#: lib/mail.php:464
+#, php-format
+msgid "%s: confirm you own this phone number with this code:"
+msgstr ""
+
+#. TRANS: Subject for 'nudge' notification email.
+#. TRANS: %s is the nudging user.
+#: lib/mail.php:485
+#, php-format
+msgid "You have been nudged by %s"
+msgstr ""
+
+#. TRANS: Body for 'nudge' notification email.
+#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
+#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
+#: lib/mail.php:492
+#, 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 ""
+
+#. TRANS: Subject for direct-message notification email.
+#. TRANS: %s is the sending user's nickname.
+#: lib/mail.php:539
+#, php-format
+msgid "New private message from %s"
+msgstr "Gnûf messaç privât di %s"
+
+#. TRANS: Body for direct-message notification email.
+#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
+#. TRANS: %3$s is the message content, %4$s a URL to the message,
+#. TRANS: %5$s is the StatusNet sitename.
+#: lib/mail.php:547
+#, 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 ""
+
+#. TRANS: Subject for favorite notification e-mail.
+#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
+#: lib/mail.php:599
+#, php-format
+msgid "%1$s (@%2$s) added your notice as a favorite"
+msgstr ""
+
+#. TRANS: Body for favorite notification e-mail.
+#. TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created,
+#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
+#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
+#. TRANS: %7$s is the adding user's nickname.
+#: lib/mail.php:606
+#, php-format
+msgid ""
+"%1$s (@%7$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 ""
+
+#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
+#: lib/mail.php:664
+#, php-format
+msgid ""
+"The full conversation can be read here:\n"
+"\n"
+"\t%s"
+msgstr ""
+
+#. TRANS: E-mail subject for notice notification.
+#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
+#: lib/mail.php:672
+#, php-format
+msgid "%1$s (@%2$s) sent a notice to your attention"
+msgstr ""
+
+#. TRANS: Body of @-reply notification e-mail.
+#. TRANS: %1$s is the sending user's long name, $2$s is the StatusNet sitename,
+#. TRANS: %3$s is a URL to the notice, %4$s is the notice text,
+#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
+#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
+#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
+#: lib/mail.php:680
+#, php-format
+msgid ""
+"%1$s (@%9$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"
+"%5$sYou can reply back here:\n"
+"\n"
+"\t%6$s\n"
+"\n"
+"The list of all @-replies for you here:\n"
+"\n"
+"%7$s\n"
+"\n"
+"Faithfully yours,\n"
+"%2$s\n"
+"\n"
+"P.S. You can turn off these email notifications here: %8$s\n"
+msgstr ""
+
+#: lib/mailbox.php:87
+msgid "Only the user can read their own mailboxes."
+msgstr ""
+
+#: lib/mailbox.php:125
+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/mailhandler.php:37
+msgid "Could not parse message."
+msgstr ""
+
+#: lib/mailhandler.php:42
+msgid "Not a registered user."
+msgstr ""
+
+#: lib/mailhandler.php:46
+msgid "Sorry, that is not your incoming email address."
+msgstr ""
+
+#: lib/mailhandler.php:50
+msgid "Sorry, no incoming email allowed."
+msgstr ""
+
+#: lib/mailhandler.php:229
+#, php-format
+msgid "Unsupported message type: %s"
+msgstr ""
+
+#. TRANS: Client exception thrown when a database error was thrown during a file upload operation.
+#: lib/mediafile.php:102 lib/mediafile.php:174
+msgid "There was a database error while saving your file. Please try again."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
+#: lib/mediafile.php:238 lib/mediafile.php:281
+msgid "File exceeds user's quota."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation fails because the file could
+#. TRANS: not be moved from the temporary folder to the permanent file location.
+#: lib/mediafile.php:258 lib/mediafile.php:300
+msgid "File could not be moved to destination directory."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME
+#. TRANS: type of the uploaded file could not be determined.
+#: lib/mediafile.php:265 lib/mediafile.php:306
+msgid "Could not determine file's MIME type."
+msgstr ""
+
+#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
+#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
+#. TRANS: the MIME type that was denied.
+#: lib/mediafile.php:396
+#, php-format
+msgid ""
+"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
+"format."
+msgstr ""
+
+#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
+#. TRANS: %s is the file type that was denied.
+#: lib/mediafile.php:401
+#, php-format
+msgid "\"%s\" is not a supported file type on this server."
+msgstr ""
+
+#: lib/messageform.php:120
+msgid "Send a direct notice"
+msgstr ""
+
+#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list.
+#: lib/messageform.php:137
+msgid "Select recipient:"
+msgstr ""
+
+#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message.
+#: lib/messageform.php:150
+msgid "No mutual subscribers."
+msgstr ""
+
+#: lib/messageform.php:153
+msgid "To"
+msgstr "A"
+
+#: lib/messageform.php:166 lib/noticeform.php:186
+msgid "Available characters"
+msgstr ""
+
+#: lib/messageform.php:185 lib/noticeform.php:237
+msgctxt "Send button for sending notice"
+msgid "Send"
+msgstr "Mande"
+
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr "Messaçs"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "di"
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:165
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr ""
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:178
+msgid "Nickname cannot be empty."
+msgstr ""
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:191
+#, php-format
+msgid "Nickname cannot be more than %d character long."
+msgid_plural "Nickname cannot be more than %d characters long."
+msgstr[0] ""
+msgstr[1] ""
+
+#: lib/noticeform.php:160
+msgid "Send a notice"
+msgstr "Mande un avîs"
+
+#: lib/noticeform.php:174
+#, php-format
+msgid "What's up, %s?"
+msgstr "Ce sucedial, %s?"
+
+#: lib/noticeform.php:194
+msgid "Attach"
+msgstr "Aleghe"
+
+#: lib/noticeform.php:198
+msgid "Attach a file"
+msgstr "Aleghe un file"
+
+#: lib/noticeform.php:213
+msgid "Share my location"
+msgstr "Condivît il lûc dulà che mi cjati"
+
+#: lib/noticeform.php:216
+msgid "Do not share my location"
+msgstr "No stâ condividi il lûc dulà che mi cjati"
+
+#: lib/noticeform.php:217
+msgid ""
+"Sorry, retrieving your geo location is taking longer than expected, please "
+"try again later"
+msgstr ""
+
+#. TRANS: Used in coordinates as abbreviation of north
+#: lib/noticelist.php:452
+msgid "N"
+msgstr "N"
+
+#. TRANS: Used in coordinates as abbreviation of south
+#: lib/noticelist.php:454
+msgid "S"
+msgstr "S"
+
+#. TRANS: Used in coordinates as abbreviation of east
+#: lib/noticelist.php:456
+msgid "E"
+msgstr "E"
+
+#. TRANS: Used in coordinates as abbreviation of west
+#: lib/noticelist.php:458
+msgid "W"
+msgstr "O"
+
+#: lib/noticelist.php:460
+#, php-format
+msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
+msgstr ""
+
+#: lib/noticelist.php:469
+msgid "at"
+msgstr "lì di"
+
+#: lib/noticelist.php:518
+msgid "web"
+msgstr "web"
+
+#: lib/noticelist.php:584
+msgid "in context"
+msgstr ""
+
+#: lib/noticelist.php:619
+msgid "Repeated by"
+msgstr "Ripetût di"
+
+#: lib/noticelist.php:646
+msgid "Reply to this notice"
+msgstr "Rispuint a chest avîs"
+
+#: lib/noticelist.php:647
+msgid "Reply"
+msgstr "Rispuint"
+
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Elimine chest avîs"
+
+#: lib/noticelist.php:691
+msgid "Notice repeated"
+msgstr "Avîs ripetût"
+
+#: 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:294
+msgid "Error inserting new profile."
+msgstr ""
+
+#: lib/oauthstore.php:302
+msgid "Error inserting avatar."
+msgstr ""
+
+#: lib/oauthstore.php:322
+msgid "Error inserting remote profile."
+msgstr ""
+
+#. TRANS: Exception thrown when a notice is denied because it has been sent before.
+#: lib/oauthstore.php:362
+msgid "Duplicate notice."
+msgstr ""
+
+#: lib/oauthstore.php:507
+msgid "Couldn't insert new subscription."
+msgstr ""
+
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
+#: lib/personalgroupnav.php:107
+msgctxt "MENU"
+msgid "Replies"
+msgstr "Rispuestis"
+
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profîl"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
+msgid "Favorites"
+msgstr "Preferîts"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
+msgid "Inbox"
+msgstr ""
+
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
+msgid "Your incoming messages"
+msgstr ""
+
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
+msgid "Outbox"
+msgstr ""
+
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
+msgid "Your sent messages"
+msgstr ""
+
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
+#: lib/personaltagcloudsection.php:56
+#, php-format
+msgid "Tags in %s's notices"
+msgstr "Etichetis dai avîs di %s"
+
+#. TRANS: Displayed as version information for a plugin if no version information was found.
+#: lib/plugin.php:126
+msgid "Unknown"
+msgstr ""
+
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
+msgid "Subscriptions"
+msgstr "Sotscrizions"
+
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
+msgid "All subscriptions"
+msgstr "Dutis lis sotscrizions"
+
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
+msgid "Subscribers"
+msgstr "Sotscritôrs"
+
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
+msgid "All subscribers"
+msgstr "Ducj i sotscritôrs"
+
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
+msgid "User ID"
+msgstr "ID utent"
+
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
+msgid "Member since"
+msgstr "Membri dai"
+
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grups"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
+msgid "Daily average"
+msgstr "Medie zornaliere"
+
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
+msgid "All groups"
+msgstr "Ducj i grups"
+
+#. TRANS: Server error displayed when using an unimplemented method.
+#: lib/profileformaction.php:123
+msgid "Unimplemented method."
+msgstr ""
+
+#: lib/publicgroupnav.php:78
+msgid "Public"
+msgstr "Public"
+
+#: lib/publicgroupnav.php:82
+msgid "User groups"
+msgstr "Grups di utents"
+
+#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85
+msgid "Recent tags"
+msgstr "Etichetis recentis"
+
+#: lib/publicgroupnav.php:88
+msgid "Featured"
+msgstr "In vitrine"
+
+#: lib/publicgroupnav.php:92
+msgid "Popular"
+msgstr "Popolâr"
+
+#: lib/redirectingaction.php:95
+msgid "No return-to arguments."
+msgstr ""
+
+#: lib/repeatform.php:107
+msgid "Repeat this notice?"
+msgstr "Vuelistu ripeti chest avîs?"
+
+#: lib/repeatform.php:132
+msgid "Yes"
+msgstr "Sì"
+
+#: lib/repeatform.php:132
+msgid "Repeat this notice"
+msgstr "Ripet chest avîs"
+
+#: lib/revokeroleform.php:91
+#, php-format
+msgid "Revoke the \"%s\" role from this user"
+msgstr ""
+
+#. TRANS: Client error on action trying to visit a non-existing page.
+#: lib/router.php:974
+msgid "Page not found."
+msgstr ""
+
+#: lib/sandboxform.php:67
+msgid "Sandbox"
+msgstr ""
+
+#: lib/sandboxform.php:78
+msgid "Sandbox this user"
+msgstr ""
+
+#. TRANS: Fieldset legend for the search form.
+#: lib/searchaction.php:120
+msgid "Search site"
+msgstr "Cîr tal sît"
+
+#. TRANS: Used as a field label for the field where one or more keywords
+#. TRANS: for searching can be entered.
+#: lib/searchaction.php:128
+msgid "Keyword(s)"
+msgstr ""
+
+#. TRANS: Button text for searching site.
+#: lib/searchaction.php:130
+msgctxt "BUTTON"
+msgid "Search"
+msgstr "Cîr"
+
+#. TRANS: Definition list item with instructions on how to get (better) search results.
+#: lib/searchaction.php:170
+msgid "Search help"
+msgstr "Jutori pe ricercje"
+
+#: lib/searchgroupnav.php:80
+msgid "People"
+msgstr "Int"
+
+#: lib/searchgroupnav.php:81
+msgid "Find people on this site"
+msgstr "Cjate int in chest sît"
+
+#: 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 "Plui..."
+
+#: lib/silenceform.php:67
+msgid "Silence"
+msgstr ""
+
+#: lib/silenceform.php:78
+msgid "Silence this user"
+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/subgroupnav.php:105
+msgid "Invite"
+msgstr ""
+
+#: lib/subgroupnav.php:106
+#, php-format
+msgid "Invite friends and colleagues to join you on %s"
+msgstr ""
+
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Sotscrivimi a chest utent"
+
+#: 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/tagcloudsection.php:56
+msgid "None"
+msgstr ""
+
+#. TRANS: Server exception displayed if a theme name was invalid.
+#: lib/theme.php:74
+msgid "Invalid theme name."
+msgstr ""
+
+#: lib/themeuploader.php:50
+msgid "This server cannot handle theme uploads without ZIP support."
+msgstr ""
+
+#: lib/themeuploader.php:58 lib/themeuploader.php:61
+msgid "The theme file is missing or the upload failed."
+msgstr ""
+
+#: lib/themeuploader.php:91 lib/themeuploader.php:102
+#: lib/themeuploader.php:279 lib/themeuploader.php:283
+#: lib/themeuploader.php:291 lib/themeuploader.php:298
+msgid "Failed saving theme."
+msgstr ""
+
+#: lib/themeuploader.php:147
+msgid "Invalid theme: bad directory structure."
+msgstr ""
+
+#: lib/themeuploader.php:166
+#, php-format
+msgid "Uploaded theme is too large; must be less than %d byte uncompressed."
+msgid_plural ""
+"Uploaded theme is too large; must be less than %d bytes uncompressed."
+msgstr[0] ""
+msgstr[1] ""
+
+#: lib/themeuploader.php:179
+msgid "Invalid theme archive: missing file css/display.css"
+msgstr ""
+
+#: lib/themeuploader.php:219
+msgid ""
+"Theme contains invalid file or folder name. Stick with ASCII letters, "
+"digits, underscore, and minus sign."
+msgstr ""
+
+#: lib/themeuploader.php:225
+msgid "Theme contains unsafe file extension names; may be unsafe."
+msgstr ""
+
+#: lib/themeuploader.php:242
+#, php-format
+msgid "Theme contains file of type '.%s', which is not allowed."
+msgstr ""
+
+#: lib/themeuploader.php:260
+msgid "Error opening theme archive."
+msgstr ""
+
+#: lib/topposterssection.php:74
+msgid "Top posters"
+msgstr "Cui che al publiche di plui"
+
+#. TRANS: Title for the form to unblock a user.
+#: lib/unblockform.php:67
+msgctxt "TITLE"
+msgid "Unblock"
+msgstr ""
+
+#: lib/unsandboxform.php:69
+msgid "Unsandbox"
+msgstr ""
+
+#: lib/unsandboxform.php:80
+msgid "Unsandbox this user"
+msgstr ""
+
+#: lib/unsilenceform.php:67
+msgid "Unsilence"
+msgstr ""
+
+#: lib/unsilenceform.php:78
+msgid "Unsilence this user"
+msgstr ""
+
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+msgid "Unsubscribe from this user"
+msgstr ""
+
+#: lib/unsubscribeform.php:137
+msgid "Unsubscribe"
+msgstr ""
+
+#. TRANS: Exception text shown when no profile can be found for a user.
+#. TRANS: %1$s is a user nickname, $2$d is a user ID (number).
+#: lib/usernoprofileexception.php:60
+#, php-format
+msgid "User %1$s (%2$d) has no profile record."
+msgstr ""
+
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
+msgid "Edit Avatar"
+msgstr "Modifiche l'avatar"
+
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
+msgid "User actions"
+msgstr "Azions dal utent"
+
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
+msgid "User deletion in progress..."
+msgstr ""
+
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
+msgid "Edit profile settings"
+msgstr "Cambie lis impuestazions dal profîl"
+
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
+msgid "Edit"
+msgstr "Cambie"
+
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
+msgid "Send a direct message to this user"
+msgstr "Mande un messaç diret a chest utent"
+
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
+msgid "Message"
+msgstr "Messaç"
+
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
+msgid "Moderate"
+msgstr ""
+
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
+msgid "User role"
+msgstr "Rûl dal utent"
+
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
+msgctxt "role"
+msgid "Administrator"
+msgstr "Aministradôr"
+
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
+msgctxt "role"
+msgid "Moderator"
+msgstr "Moderatôr"
+
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "No tu sês jentrât."
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1309
+msgid "a few seconds ago"
+msgstr "cualchi secont indaûr"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1312
+msgid "about a minute ago"
+msgstr "cirche un minût indaûr"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1316
+#, php-format
+msgid "about one minute ago"
+msgid_plural "about %d minutes ago"
+msgstr[0] "cirche un minût indaûr"
+msgstr[1] "cirche %d minûts indaûr"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1319
+msgid "about an hour ago"
+msgstr "cirche une ore indaûr"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1323
+#, php-format
+msgid "about one hour ago"
+msgid_plural "about %d hours ago"
+msgstr[0] "cirche une ore indaûr"
+msgstr[1] "cirche %d oris indaûr"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1326
+msgid "about a day ago"
+msgstr "cirche une zornade indaûr"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1330
+#, php-format
+msgid "about one day ago"
+msgid_plural "about %d days ago"
+msgstr[0] "cirche une zornade indaûr"
+msgstr[1] "cirche %d zornadis indaûr"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1333
+msgid "about a month ago"
+msgstr "cirche un mês indaûr"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1337
+#, php-format
+msgid "about one month ago"
+msgid_plural "about %d months ago"
+msgstr[0] "cirche un mês indaûr"
+msgstr[1] "cirche %d mês indaûr"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1340
+msgid "about a year ago"
+msgstr "cirche un an indaûr"
+
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
+#, php-format
+msgid "%s is not a valid color! Use 3 or 6 hex characters."
+msgstr ""
+
+#. TRANS: %s is the URL to the StatusNet site's Instant Messaging settings.
+#: lib/xmppmanager.php:287
+#, php-format
+msgid "Unknown user. Go to %s to add your address to your account"
+msgstr ""
+
+#. TRANS: Response to XMPP source when it sent too long a message.
+#. TRANS: %1$d the maximum number of allowed characters (used for plural), %2$d is the sent number.
+#: lib/xmppmanager.php:406
+#, php-format
+msgid "Message too long. Maximum is %1$d character, you sent %2$d."
+msgid_plural "Message too long. Maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+"Il messaç al masse lunc. Il massim al è %1$d caratar, tu tu'nd âs mandâts %2"
+"$d."
+msgstr[1] ""
+"Il messaç al masse lunc. Il massim a son %1$d caratars, tu tu'nd âs mandâts %"
+"2$d."
+
+#. TRANS: Exception.
+#: lib/xrd.php:63
+msgid "Invalid XML."
+msgstr ""
+
+#. TRANS: Exception.
+#: lib/xrd.php:68
+msgid "Invalid XML, missing XRD root."
+msgstr ""
+
+#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
+#: scripts/restoreuser.php:62
+#, php-format
+msgid "Getting backup from file '%s'."
+msgstr ""
diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po
index a576a5b953..e91f62d901 100644
--- a/locale/ga/LC_MESSAGES/statusnet.po
+++ b/locale/ga/LC_MESSAGES/statusnet.po
@@ -9,18 +9,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:43+0000\n"
+"POT-Creation-Date: 2011-01-14 23:32+0000\n"
+"PO-Revision-Date: 2011-01-14 23:34:48+0000\n"
"Language-Team: Irish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ga\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? "
"2 : ( (n < 11) ? 3 : 4 ) ) );\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -279,7 +279,7 @@ msgstr "Actualizacións dende %1$s e amigos en %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -326,7 +326,8 @@ msgstr "Non se puido actualizar o usuario."
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/apiaccountupdateprofileimage.php:130
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
#: lib/profileaction.php:84
@@ -572,7 +573,7 @@ msgstr "Non se puido actualizar o usuario."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
+#: actions/newgroup.php:136 actions/profilesettings.php:277
#: actions/register.php:214
msgid "Nickname already in use. Try another one."
msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro."
@@ -582,7 +583,7 @@ msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
+#: actions/newgroup.php:140 actions/profilesettings.php:247
#: actions/register.php:216
msgid "Not a valid nickname."
msgstr "Non é un alcume válido."
@@ -594,7 +595,7 @@ msgstr "Non é un alcume válido."
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
+#: actions/newgroup.php:147 actions/profilesettings.php:252
#: actions/register.php:223
msgid "Homepage is not a valid URL."
msgstr "A páxina persoal semella que non é unha URL válida."
@@ -604,7 +605,7 @@ msgstr "A páxina persoal semella que non é unha URL válida."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
+#: actions/newgroup.php:151 actions/profilesettings.php:256
#: actions/register.php:226
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
@@ -620,7 +621,7 @@ msgstr "O nome completo é demasiado longo (max 255 car)."
#. TRANS: %d is the maximum number of allowed characters.
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/newgroup.php:156
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -635,7 +636,7 @@ msgstr[4] "O teu Bio é demasiado longo (max %d car.)."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
+#: actions/newgroup.php:163 actions/profilesettings.php:269
#: actions/register.php:235
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
@@ -648,7 +649,7 @@ msgstr "A localización é demasiado longa (max 255 car.)."
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/newgroup.php:176
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -670,7 +671,7 @@ msgstr "Etiqueta inválida: '%s'"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#: actions/newgroup.php:191
#, fuzzy, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro."
@@ -679,7 +680,7 @@ msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/newgroup.php:198
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -989,9 +990,10 @@ msgstr "Non se pode activar a notificación."
msgid "Already repeated that notice."
msgstr "Non se pode eliminar este chíos."
+#. TRANS: Client error shown when using a non-supported HTTP method.
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
@@ -1087,7 +1089,7 @@ msgstr "Hai %1$s chíos en resposta a chíos dende %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Non se puido actualizar o usuario."
@@ -1180,30 +1182,30 @@ msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#: actions/apitimelineuser.php:378
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Atopar no contido dos chíos"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#: actions/apitimelineuser.php:406
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Non se atopou un perfil con ese ID."
-#: actions/apitimelineuser.php:435
+#: actions/apitimelineuser.php:437
#, php-format
msgid "AtomPub post with unknown attention URI %s"
msgstr ""
@@ -1214,7 +1216,7 @@ msgid "API method under construction."
msgstr "Método da API en contrución."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Método da API non atopado"
@@ -1304,7 +1306,6 @@ msgid "Can't delete someone else's favorite"
msgstr "Non se puido eliminar o favorito."
#: actions/atompubshowmembership.php:81
-#, fuzzy
msgid "No such group"
msgstr "Non existe a etiqueta."
@@ -1321,21 +1322,26 @@ msgstr "Método da API non atopado"
msgid "Can't delete someone else's membership"
msgstr ""
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
msgid "No such profile id: %d"
msgstr "Ningún chío."
-#: actions/atompubshowsubscription.php:90
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
+msgid "Profile %1$d not subscribed to profile %2$d"
msgstr "Non estás suscrito a ese perfil"
-#: actions/atompubshowsubscription.php:154
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's subscription"
msgstr "Non se pode gardar a subscrición."
#: actions/atompubsubscriptionfeed.php:150
@@ -1428,14 +1434,16 @@ msgid "Preview"
msgstr ""
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Eliminar chío"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1479,6 +1487,37 @@ msgstr "Acounteceu un fallo ó actualizar o avatar."
msgid "Avatar deleted."
msgstr "Avatar actualizado."
+#: actions/backupaccount.php:62 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#: actions/backupaccount.php:80
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Só o usuario pode ler os seus propios buzóns."
+
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#: actions/backupaccount.php:232
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and "
+"provides an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#: actions/backupaccount.php:255
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr ""
+
+#: actions/backupaccount.php:258
+msgid "Backup your account"
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1694,6 +1733,77 @@ msgstr "Código de confirmación."
msgid "Notices"
msgstr "Chíos"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Só o usuario pode ler os seus propios buzóns."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Non se puido actualizar o usuario."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Avatar actualizado."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:474
+#, fuzzy
+msgid "Delete account"
+msgstr "Crear nova conta"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:239 actions/register.php:441
+msgid "Confirm"
+msgstr "Confirmar"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Non se puido actualizar o usuario."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Non se puido actualizar o usuario."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
#, fuzzy
@@ -1850,7 +1960,7 @@ msgid "Do not delete this notice"
msgstr "Non se pode eliminar este chíos."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
+#: actions/deletenotice.php:166 lib/noticelist.php:673
#, fuzzy
msgid "Delete this notice"
msgstr "Eliminar chío"
@@ -2177,7 +2287,7 @@ msgstr ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#: actions/editgroup.php:239 actions/newgroup.php:186
#, fuzzy, php-format
msgid "Invalid alias: \"%s\""
msgstr "Etiqueta inválida: '%s'"
@@ -2190,7 +2300,7 @@ msgstr "Non se puido actualizar o usuario."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:279 classes/User_group.php:534
#, fuzzy
msgid "Could not create aliases."
msgstr "Non se puido crear o favorito."
@@ -3455,8 +3565,14 @@ msgstr "Non se puido crear o favorito."
msgid "New group"
msgstr ""
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Non estás suscrito a ese perfil"
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr ""
@@ -3785,11 +3901,6 @@ msgstr "Nova contrasinal"
msgid "6 or more characters"
msgstr "6 ou máis caracteres"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Confirmar"
-
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
msgid "Same as password above"
msgstr "Igual que a contrasinal de enriba"
@@ -4333,6 +4444,12 @@ msgstr "Non se puideron gardar as etiquetas."
msgid "Settings saved."
msgstr "Configuracións gardadas."
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:481 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Crear nova conta"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4806,7 +4923,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza."
msgid "You already repeated that notice."
msgstr "Xa estas suscrito a estes usuarios:"
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:114 lib/noticelist.php:692
msgid "Repeated"
msgstr "Destacado"
@@ -4867,6 +4984,92 @@ msgstr ""
msgid "Replies to %1$s on %2$s!"
msgstr "Mensaxe de %1$s en %2$s"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Só o usuario pode ler os seus propios buzóns."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Non podes rexistrarte se non estas de acordo coa licenza."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Subir"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Aconteceu un erro no sistema namentras se estaba cargando o ficheiro."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr ""
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Subir"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Tes restrinxido o envio de chíos neste sitio."
@@ -4975,7 +5178,7 @@ msgid "Reset key & secret"
msgstr ""
#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#: lib/deleteuserform.php:66 lib/noticelist.php:673
msgid "Delete"
msgstr "Eliminar chío"
@@ -6250,13 +6453,13 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164 lib/favorform.php:143
msgid "Favor"
msgstr "Gostame"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito."
@@ -6378,7 +6581,7 @@ msgid "Could not create login token for %s"
msgstr "Non se puido crear o favorito."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:537
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6406,24 +6609,24 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Acounteceu un erro ó inserir o avatar"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Aconteceu un erro ó gardar o chío."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6431,7 +6634,7 @@ msgstr ""
"duns minutos."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
#, fuzzy
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
@@ -6441,43 +6644,43 @@ msgstr ""
"duns minutos."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Tes restrinxido o envio de chíos neste sitio."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Aconteceu un erro ó gardar o chío."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:914
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1013
#, fuzzy
msgid "Problem saving group inbox."
msgstr "Aconteceu un erro ó gardar o chío."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1127
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Non se pode gardar a subscrición."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1646
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6485,14 +6688,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:765
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:774
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6566,34 +6769,34 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Mensaxe de %1$s en %2$s"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:516
#, fuzzy
msgid "Could not create group."
msgstr "Non se puido crear o favorito."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:526
msgid "Could not set group URI."
msgstr "Non se poden gardar as etiquetas."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:549
#, fuzzy
msgid "Could not set group membership."
msgstr "Non se pode gardar a subscrición."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:564
#, fuzzy
msgid "Could not save local group info."
msgstr "Non se pode gardar a subscrición."
@@ -6951,10 +7154,57 @@ msgstr "Antes »"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
-msgid "Post"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "tipo de ficheiro non soportado"
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
msgstr ""
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+#, fuzzy
+msgid "Cannot force remote user to subscribe."
+msgstr "Especifica o nome do usuario ó que queres suscribirte"
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "tipo de ficheiro non soportado"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Xa estas suscrito a estes usuarios:"
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Atopar no contido dos chíos"
+
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
msgid "Can't handle remote content yet."
@@ -7258,10 +7508,16 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Recuperar"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Non se pode eliminar este chíos."
+
#. TRANS: DT element label in attachment list item.
#: lib/attachmentlist.php:294
msgid "Author"
@@ -7713,26 +7969,26 @@ msgstr ""
"tracking - non implementado por agora.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:150
#, fuzzy
msgid "No configuration file found."
msgstr "Sen código de confirmación."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:153
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Invitación(s) enviada(s) á seguinte xente:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:156
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:160
msgid "Go to the installer."
msgstr ""
@@ -7838,6 +8094,18 @@ msgstr ""
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr ""
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -8027,11 +8295,6 @@ msgstr "Podes actualizar a túa información do perfil persoal aquí"
msgid "Partial upload."
msgstr "Carga parcial."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Aconteceu un erro no sistema namentras se estaba cargando o ficheiro."
-
#: lib/imagefile.php:111
msgid "Not an image or corrupt file."
msgstr "Non é unha imaxe ou está corrupta."
@@ -8422,7 +8685,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only."
msgstr ""
-#: lib/mailbox.php:228 lib/noticelist.php:521
+#: lib/mailbox.php:228 lib/noticelist.php:522
#, fuzzy
msgid "from"
msgstr " dende "
@@ -8453,38 +8716,6 @@ msgstr "Formato de ficheiro de imaxe non soportado."
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8505,7 +8736,7 @@ msgstr "Non se puido eliminar o favorito."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8514,7 +8745,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8552,17 +8783,17 @@ msgid "Send"
msgstr "Enviar"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8606,59 +8837,59 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
#, fuzzy
msgid "N"
msgstr "No"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
#, fuzzy
msgid "in context"
msgstr "Sen contido!"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
#, fuzzy
msgid "Repeated by"
msgstr "Crear"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
#, fuzzy
msgid "Reply to this notice"
msgstr "Non se pode eliminar este chíos."
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Respostas"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:691
#, fuzzy
msgid "Notice repeated"
msgstr "Chío publicado"
@@ -8824,7 +9055,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr ""
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Método da API non atopado"
@@ -9216,24 +9447,7 @@ msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Non se especificou ningún perfil."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-msgstr[4] ""
diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po
index 23654f9d49..2738400467 100644
--- a/locale/gl/LC_MESSAGES/statusnet.po
+++ b/locale/gl/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Galician (Galego)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Gallaecio
@@ -11,17 +11,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:44+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:44+0000\n"
"Language-Team: Galician \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -76,8 +76,9 @@ msgid "Save access settings"
msgstr "Gardar a configuración de acceso"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -87,13 +88,13 @@ msgstr "Gardar a configuración de acceso"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Gardar"
@@ -101,7 +102,7 @@ msgstr "Gardar"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Esa páxina non existe."
@@ -111,6 +112,8 @@ msgstr "Esa páxina non existe."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -126,13 +129,23 @@ msgstr "Esa páxina non existe."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -140,15 +153,15 @@ msgstr "Esa páxina non existe."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Non existe tal usuario."
@@ -162,9 +175,10 @@ msgstr "%1$s e amigos, páxina %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s e amigos"
@@ -279,7 +293,7 @@ msgstr "Actualizacións de %1$s e amigos en %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -313,7 +327,21 @@ msgstr ""
"im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Non se puido actualizar o usuario."
@@ -323,18 +351,23 @@ msgstr "Non se puido actualizar o usuario."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "O usuario non ten perfil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Non se puido gardar o perfil."
@@ -344,8 +377,8 @@ msgstr "Non se puido gardar o perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -365,13 +398,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Non se puido gardar a súa configuración de deseño."
@@ -379,48 +413,59 @@ msgstr "Non se puido gardar a súa configuración de deseño."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Non se puido actualizar o seu deseño."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Liña do tempo de %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s subscricións"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "Favoritas"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "Membros do grupo %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Non pode bloquearse a si mesmo!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Non se puido bloquear o usuario."
@@ -478,7 +523,8 @@ msgstr "Non se atopou o destinatario."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Non pode enviar mensaxes directas a usuarios que non sexan amigos seus."
@@ -503,8 +549,9 @@ msgid "This status is already a favorite."
msgstr "Este estado xa é dos favoritos."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Non se puido crear o favorito."
@@ -514,7 +561,8 @@ msgid "That status is not a favorite."
msgstr "Ese estado non é un dos favoritos."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Non se puido eliminar o favorito."
@@ -560,9 +608,9 @@ msgstr "Non se puido atopar o usuario de destino."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Ese alcume xa está en uso. Probe con outro."
@@ -570,21 +618,22 @@ msgstr "Ese alcume xa está en uso. Probe con outro."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "O formato do alcume non é correcto."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "O URL da páxina persoal non é correcto."
@@ -592,9 +641,9 @@ msgstr "O URL da páxina persoal non é correcto."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)."
@@ -602,14 +651,15 @@ msgstr "O nome completo é longo de máis (o máximo son 255 caracteres)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -620,9 +670,9 @@ msgstr[1] "A descrición é longa de máis (o máximo son %d caracteres)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "A localidade é longa de máis (o máximo son 255 caracteres)."
@@ -633,8 +683,8 @@ msgstr "A localidade é longa de máis (o máximo son 255 caracteres)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -651,18 +701,16 @@ msgstr "Pseudónimo incorrecto: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "O pseudónimo \"%s\" xa se está a usar. Proba con outro."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "O pseudónimo non pode coincidir co alcume."
@@ -673,28 +721,32 @@ msgstr "O pseudónimo non pode coincidir co alcume."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Non se atopou o grupo."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Xa forma parte dese grupo."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "O administrador bloqueouno nese grupo."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "O usuario %1$s non se puido engadir ao grupo %2$s."
@@ -706,9 +758,11 @@ msgstr "Vostede non pertence a este grupo."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -745,7 +799,7 @@ msgid "Upload failed."
msgstr "Houbo un erro durante a carga."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "O pase especificado é incorrecto."
@@ -767,20 +821,25 @@ msgid "Request token already authorized."
msgstr "Non está autorizado."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Houbo un erro co seu pase. Inténteo de novo."
@@ -800,18 +859,22 @@ msgstr ""
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Envío de formulario inesperado."
@@ -861,29 +924,31 @@ msgstr "Conta"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Alcume"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Contrasinal"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -954,6 +1019,7 @@ msgstr "Non pode borrar o estado doutro usuario."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -973,39 +1039,52 @@ msgstr "Non pode repetir a súa propia nota."
msgid "Already repeated that notice."
msgstr "Xa repetiu esa nota."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Non se atopou o método da API."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Formato non soportado."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Borrouse o estado."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Non se atopou ningún estado con esa ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Non se pode borrar esta nota."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Borrar a nota"
@@ -1067,7 +1146,7 @@ msgstr "%1$s actualizacións marcadas como favoritas por %2$s / %2$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Non se puido actualizar o grupo."
@@ -1088,13 +1167,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s actualizacións que responden a actualizacións de %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Liña do tempo pública de %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s actualizacións de todos!"
@@ -1143,203 +1223,270 @@ msgstr "Só o usuario pode ler as súas caixas de entrada."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Buscar nos contidos das notas"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Non hai ningunha nota con esa id."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Método API en desenvolvemento."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "Non se atopou o método da API."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Non existe ese perfil."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Actualizacións de %1$s e amigos en %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Non se puido inserir unha subscrición nova."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Buscar nos contidos das notas"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Buscar nos contidos das notas"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Descoñecida"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Engadir aos favoritos"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Non existe ese perfil."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "Membros do grupo %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Grupos aos que pertence %s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Non se puido inserir unha subscrición nova."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Buscar nos contidos das notas"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Descoñecida"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Todos os membros"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Non existe tal ficheiro."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Non se puido eliminar o favorito."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Non existe tal grupo."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Todos os membros"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Non se atopou o método da API."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Non existe ese perfil."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Non está subscrito a ese perfil."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Non se puido borrar a subscrición a si mesmo."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Non existe ese perfil."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Non está subscrito a ese perfil."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Non se puido borrar a subscrición a si mesmo."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Persoas subscritas a %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Non se coñece o tipo de ficheiro"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Xa está subscrito!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1348,11 +1495,15 @@ msgstr "Non existe tal dato adxunto."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Sen alcume."
@@ -1369,7 +1520,7 @@ msgstr "Tamaño non válido."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1384,41 +1535,51 @@ msgstr ""
"%s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "O usuario non ten perfil."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Configuración do avatar"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Orixinal"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Vista previa"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Borrar"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Cargar"
@@ -1434,31 +1595,72 @@ msgstr "Recortar"
msgid "No file uploaded."
msgstr "Non se subiu ficheiro ningún."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Escolla unha zona cadrada da imaxe para usala como avatar"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Perdéronse os datos do ficheiro."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Actualizouse o avatar."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Non se puido actualizar o avatar."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Borrouse o avatar."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Só os usuarios identificados poden repetir notas."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Fondo"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1466,7 +1668,8 @@ msgstr "Xa bloqueou ese usuario."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Bloquear o usuario"
@@ -1489,15 +1692,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Non"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Non bloquear este usuario"
#. TRANS: Button label on the user block form.
@@ -1508,15 +1711,15 @@ msgstr "Non bloquear este usuario"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Si"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Bloquear este usuario"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1524,31 +1727,6 @@ msgstr "Bloquear este usuario"
msgid "Failed to save block information."
msgstr "Non se puido gardar a información do bloqueo."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Non existe tal grupo."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1618,23 +1796,6 @@ msgstr "Non se recoñeceu o tipo de enderezo %s."
msgid "That address has already been confirmed."
msgstr "Ese enderezo xa se confirmou."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Non se puido actualizar o usuario."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1660,11 +1821,85 @@ msgid "Conversation"
msgstr "Conversa"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Notas"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Só os usuarios identificados poden repetir notas."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Non pode borrar usuarios."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Borrouse o avatar."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Crear unha conta"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Confirmar"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Non pode borrar usuarios."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Non pode borrar usuarios."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1678,14 +1913,14 @@ msgstr "Non se atopou a aplicación."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Non é o dono desa aplicación."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Houbo un problema co seu pase."
@@ -1708,12 +1943,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Non borrar a aplicación"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Borrar a aplicación"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1723,8 +1960,10 @@ msgid "You must be logged in to delete a group."
msgstr "Ten que identificarse para deixar un grupo."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Nin alcume nin ID."
@@ -1768,25 +2007,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "Non borrar esta nota"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "Borrar o usuario"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Non iniciou sesión."
@@ -1813,27 +2058,40 @@ msgstr "Está seguro de querer borrar esta nota?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Non borrar esta nota"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Borrar esta nota"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Non pode borrar usuarios."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Só pode borrar usuarios locais."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Borrar o usuario"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Borrar o usuario"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1841,81 +2099,105 @@ msgstr ""
"Está seguro de querer borrar este usuario? Isto borrará todos os datos do "
"usuario da base de datos, sen posibilidade de recuperalos."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Non borrar esta nota"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Borrar o usuario"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Deseño"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Configuración de deseño para este sitio StatusNet"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "URL do logo incorrecto."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "URL do logo incorrecto."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "O tema visual non está dispoñible: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Cambiar o logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logo do sitio"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "Logo do sitio"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Cambiar o tema visual"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Tema visual do sitio"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Tema visual para o sitio."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Tema visual personalizado"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
"Pode cargar como arquivo .ZIP un tema visual personalizado para StatusNet"
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Cambiar a imaxe de fondo"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Fondo"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1925,98 +2207,108 @@ msgstr ""
"ficheiro é de %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Activado"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Desactivado"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Activar ou desactivar a imaxe de fondo."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Imaxe de fondo en mosaico"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Cambiar as cores"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Contido"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Barra lateral"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Texto"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Ligazóns"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avanzado"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS personalizado"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Utilizar os valores por defecto"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Restaurar o deseño por defecto"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Volver ao deseño por defecto"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Gardar"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Gardar o deseño"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Esta nota non é unha das favoritas!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Engadir aos favoritos"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Non hai ningún documento \"%s\""
#. TRANS: Title for "Edit application" form.
@@ -2031,7 +2323,7 @@ msgid "You must be logged in to edit an application."
msgstr "Ten que iniciar sesión para editar unha aplicación."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Non existe esa aplicación."
@@ -2041,63 +2333,73 @@ msgid "Use this form to edit your application."
msgstr "Utilice este formulario para editar a súa aplicación."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Fai falla un nome."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "O nome é longo de máis (o límite é de 255 caracteres)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "O nome xa está en uso. Probe con outro."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Fai falla unha descrición."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "O URL de orixe é longo de máis."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "O URL de orixe é incorrecto."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Fai falla unha organización."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "A organización é longa de máis (o límite é de 255 caracteres)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Fai falla unha páxina web da organización."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "O retorno de chamada é longo de máis."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "O URL do retorno de chamada é incorrecto."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Non se puido actualizar a aplicación."
@@ -2108,14 +2410,17 @@ msgid "Edit %s group"
msgstr "Editar o grupo %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Ten que iniciar sesión para crear un grupo."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Ten que ser administrador para editar o grupo."
@@ -2126,63 +2431,65 @@ msgstr "Utilice este formulario para editar o grupo."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Pseudónimo inválido: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Non se puido actualizar o grupo."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Non se puideron crear os pseudónimos."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Gardáronse as preferencias."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Configuración do correo electrónico"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Xestiona a forma en que recibes correo electrónico de %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Enderezo de correo electrónico"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Enderezo de correo electrónico confirmado actualmente."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Borrar"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2195,47 +2502,47 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Enderezo de correo electrónico, coma \"nomedeusuario@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Engadir"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Correo entrante"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Quero publicar notas por correo electrónico."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr ""
"Enviar un correo electrónico a este enderezo para publicar novas notas."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
"Establece un novo enderezo de correo electrónico no que publicar, e cancela "
"o vello."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2243,91 +2550,93 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Novo"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Preferencias de correo electrónico"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Enviarme notas acerca de novas subscricións por correo electrónico."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Enviádeme un correo electrónico cando alguén marque como favorito algunha "
"das miñas notas."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr ""
"Enviádeme un correo electrónico cando alguén me envíe unha mensaxe privada."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Enviádeme un correo electrónico cando alguén me envíe unha resposta."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
"Permitirlles aos meus amigos facerme acenos e enviarme correos electrónicos."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publicar unha MicroID para o meu enderezo de correo electrónico."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Gardáronse as preferencias de correo electrónico."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Non hai enderezo de correo electrónico."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Non se pode normalizar ese enderezo de correo electrónico"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "O enderezo de correo electrónico é incorrecto."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Ese enderezo de correo electrónico é o que ten agora."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Ese enderezo de correo electrónico xa pertence a outro usuario."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Non se puido inserir o código de confirmación."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2337,87 +2646,103 @@ msgstr ""
"entrada (e na de correo non desexado!)."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Non hai ningunha confirmación pendente que cancelar."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Ese enderezo de correo electrónico é incorrecto."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Non se puido borrar a confirmación por correo electrónico."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Cancelouse a confirmación por correo electrónico."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Ese non é o seu enderezo de correo electrónico."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Borrouse o enderezo de correo electrónico."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Non hai ningún enderezo ao que enviar."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Non se puido actualizar o rexistro do usuario."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Borrouse o enderezo de correo electrónico entrante."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Engadiuse un novo enderezo de correo electrónico entrante."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "A nota xa é unha das súas favoritas!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Desmarcar como favorita"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Notas populares"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Notas populares, páxina %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "As notas máis populares do sitio nestes intres."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr "As notas favoritas aparecen nesta páxina, pero aínda non hai ningunha."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2426,7 +2751,9 @@ msgstr ""
"Sexa o primeiro en engadir unha nota aos seus favoritos premendo sobre o "
"botón de favoritos que aparece ao carón de calquera nota que lle guste."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2435,142 +2762,186 @@ msgstr ""
"Por que non [rexistrar unha conta](%%action.register%%) e ser o primeiro en "
"engadir unha nota aos seus favoritos?"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Notas favoritas de %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Actualizacións favoritas de %1$s en %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Usuarios do momento"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Usuarios do momento, páxina %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Unha selección dalgúns bos usuarios en %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "A nota non ten ningunha ID."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Non hai ningunha nota."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Non hai ningún dato adxunto."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Non se cargou ningún dato adxunto."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Non se esperaba esta resposta!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Non existe o usuario ao que está seguindo."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Pode usar a subscrición local!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Ese usuario bloqueouno fronte á subscrición a el."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Non está autorizado."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Non se puido converter a ficha da solicitude nun pase."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "O servizo remoto utiliza unha versión descoñecida do protocolo OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Houbo un erro ao actualizar o perfil remoto."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Non existe tal ficheiro."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Non se pode ler o ficheiro."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Rol incorrecto."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Non se pode establecer este rol, está reservado."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Non pode concederlles roles aos usuarios neste sitio."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "O usuario xa ten este rol."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Non se especificou ningún perfil."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Ningún perfil ten esa ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Non se especificou ningún grupo."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Só os administradores poden excluír a membros do grupo."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "O usuario xa está excluído do grupo."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "O usuario non pertence ao grupo."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Excluír do grupo ao usuario"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2582,32 +2953,40 @@ msgstr ""
"el no futuro."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Non excluír deste grupo a este usuario"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Excluír deste grupo a este usuario"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Houbo un erro na base de datos ao excluír do grupo ao usuario."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Sen ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Ten que estar identificado para editar un grupo."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Deseño do grupo"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2615,22 +2994,26 @@ msgstr ""
"Personaliza o aspecto do grupo cunha imaxe de fondo e unha paleta de cores "
"da súa escolla."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Non se puido actualizar o seu deseño."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Non se puido gardar a súa configuración de deseño."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Gardáronse as preferencias de deseño."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo do grupo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2638,100 +3021,116 @@ msgstr ""
"Pode cargar un logo para o seu grupo. O tamaño máximo para o ficheiro é de %"
"s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Cargar"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Recortar"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Escolla unha zona cadrada da imaxe para usala como logo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Actualizouse o logo."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Non se puido actualizar o logo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Membros do grupo %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Membros do grupo %1$s, páxina %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Unha lista dos usuarios pertencentes a este grupo."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Administrador"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Bloquear"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Bloquear este usuario"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Converter ao usuario en administrador do grupo"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Converter en administrador"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Converter a este usuario en administrador"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Actualizacións de membros de %1$s en %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grupos"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Grupos, páxina %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Os grupos de %%%%site.name%%%% permiten atopar e porse en contacto con "
"persoas de intereses similares aos seus. Tras unirse a un grupo pode enviar "
@@ -2739,11 +3138,13 @@ msgstr ""
"un grupo que lle guste? Probe a [buscar un](%%%%action.groupsearch%%%%) ou "
"[crear un pola súa conta!](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Crear un grupo novo"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2753,23 +3154,31 @@ msgstr ""
"termos con espazos en branco. Cada termo ten que estar formado por tres ou "
"máis caracteres."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Busca de grupos"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Non houbo resultados."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr "Se non atopa o grupo que busca, pode [crealo](%%action.newgroup%%)."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2779,139 +3188,149 @@ msgstr ""
"action.newgroup%%)?"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Só os administradores poden readmitir a membros do grupo."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "O usuario non está excluído do grupo."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Houbo un erro ao facer efectiva a readmisión."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Configuración da mensaxería instantánea"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Pode enviar e recibir notas mediante [mensaxes instantáneas](%%doc.im%%) de "
"Jabber/GTalk. Configure a continuación o seu enderezo e preferencias."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "A mensaxería instantánea non está dispoñible."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Enderezo de mensaxería instantánea"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Enderezo de Jabber/GTalk confirmado actualmente."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Agardando pola confirmación deste enderezo. Busque na cúa conta de Jabber/"
"GTalk unha mensaxe con máis instrucións. (Engadiu a %s á súa lista de "
"amigos?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Enderezo de Jabber ou GTalk, coma \"nomedeusuario@example.org\". Asegúrese "
"primeiro de engadir a %s á súa lista de amigos no seu cliente de mensaxería "
"instantánea ou en GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Preferencias de mensaxería instantánea"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Enviádeme as notas mediante Jabber ou GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Publicar unha nota cando cambie o meu estado en Jabber ou GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Enviádeme as respostas mediante Jabber ou GTalk da xente á que non estou "
"subscrita."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publicar unha MicroID para o meu enderezo de Jabber ou GTalk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Gardáronse as preferencias."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Non existe ningunha ID de Jabber."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Non se pode normalizar esa ID de Jabber"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "A ID de Jabber non é correcta"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Esa xa é a súa ID de Jabber."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Esa ID de Jabber xa corresponde a un usuario."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2920,74 +3339,80 @@ msgstr ""
"Enviouse un código de confirmación ao enderezo de mensaxería instantánea que "
"engadiu. Ten que aprobar que %s lle envíe mensaxes."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Ese enderezo de mensaxería instantánea é incorrecto."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Non se puido borrar a confirmación por mensaxería instantánea."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Cancelouse a confirmación por mensaxería instantánea."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Esa ID de Jabber non é súa."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Borrouse o enderezo de mensaxería instantánea."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Caixa de entrada de %1$s - páxina %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Caixa de entrada de %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Esta é a súa caixa de correo, onde se listan as mensaxes privadas recibidas."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "As invitacións están desactivadas."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Ten que identificarse para invitar a outros a usar %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Enderezo de correo electrónico incorrecto: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Enviáronse as invitacións"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Invitar a novos usuarios"
@@ -2995,7 +3420,7 @@ msgstr "Invitar a novos usuarios"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3004,7 +3429,7 @@ msgstr[1] "Xa está subscrito aos seguintes usuarios:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3013,7 +3438,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3026,7 +3451,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3035,7 +3460,7 @@ msgstr[1] "Enviáronse invitacións ás seguintes persoas:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3044,7 +3469,7 @@ msgstr ""
"no sitio. Grazas por ampliar a comunidade!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3052,27 +3477,28 @@ msgstr ""
"utilizar este servizo."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Enderezos de correo electrónico"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Enderezos de amigos aos que invitar (un por liña)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Mensaxe persoal"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Engadir opcionalmente unha mensaxe persoal á invitación."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Enviar"
@@ -3080,7 +3506,7 @@ msgstr "Enviar"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s convidouno a unirse a el en %2$s"
@@ -3090,7 +3516,7 @@ msgstr "%1$s convidouno a unirse a el en %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3146,44 +3572,51 @@ msgstr ""
"\n"
"Cordialmente, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Ten que identificarse para unirse a un grupo."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s uniuse ao grupo %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Ten que identificarse para deixar un grupo."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Non pertence a ese grupo."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s deixou o grupo %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Licenza"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Licenza deste sitio StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "A selección de licenza non é válida."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3191,128 +3624,137 @@ msgstr ""
"Cómpre especificar o propietario dos contidos ao empregar a licenza \"Todos "
"os dereitos reservados\"."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Título de licenza incorrecto. A extensión máxima é de 255 caracteres."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Enderezo URL de licenza incorrecto."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Enderezo URL de imaxe de licenza incorrecto."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "O enderezo URL da licenza debe quedar baleiro ou ser válido."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "O enderezo URL da imaxe da licenza debe quedar baleiro ou ser válido."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Selección da licenza"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privado"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Todos os dereitos reservados"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Tipo"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Seleccionar unha licenza"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Detalles da licenza"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Propietario"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Nome do propietario dos contidos deste sitio (se procede)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Título da licenza"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "O título da licenza."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL da licenza"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL para obter máis información sobre a licenza."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL da imaxe da licenza"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL dunha imaxe a mostrar coa licenza."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Gardar"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Gardar a configuración de licenza"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Xa se identificou."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Nome de usuario ou contrasinal incorrectos."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
"Houbo un erro ao configurar o usuario. Probablemente non estea autorizado "
"para facelo."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Identificarse"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Identificarse no sitio"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Lembrádeme"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Identificarse automaticamente no futuro. Non se aconsella en computadoras "
"compartidas!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Esqueceu ou perdeu o contrasinal?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3320,11 +3762,11 @@ msgstr ""
"Por razóns de seguridade, volva introducir o seu nome de usuario e "
"contrasinal antes de cambiar a súa configuración."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Identifíquese co seu nome de usuario e contrasinal."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3363,19 +3805,22 @@ msgid "New application"
msgstr "Aplicación nova"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Ten que identificarse para rexistrar unha aplicación."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Utilice o seguinte formulario para rexistrar unha aplicación nova."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Necesítase o URL de orixe."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Non se puido crear a aplicación."
@@ -3384,11 +3829,23 @@ msgstr "Non se puido crear a aplicación."
msgid "New group"
msgstr "Novo grupo"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Vostede non pertence a este grupo."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Utilice o seguinte formulario para crear un novo grupo."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "O pseudónimo non pode coincidir co alcume."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Mensaxe nova"
@@ -3438,7 +3895,9 @@ msgstr "Nova nota"
msgid "Notice posted"
msgstr "Publicouse a nota"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3447,16 +3906,21 @@ msgstr ""
"Buscar notas en %%site.name%% polo seu contido. Separe os termos de busca "
"con espazos en branco. Teñen que ter tres ou máis caracteres."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Busca de texto"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Resultados da busca de \"%1$s\" en %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3465,7 +3929,9 @@ msgstr ""
"Sexa o primeiro en [publicar sobre este tema](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3474,14 +3940,17 @@ msgstr ""
"Por que non [rexistrar unha conta](%%%%action.register%%%%) e ser o primeiro "
"en [publicar sobre este tema](%%%%action.newnotice%%%%?status_textarea=%s)?"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Actualizacións con \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Actualizacións que conteñen o termo \"%1$s\" en %2$s!"
#: actions/nudge.php:85
@@ -3523,31 +3992,31 @@ msgid "You have not registered any applications yet."
msgstr "Aínda non rexistrou ningunha aplicación."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Aplicacións conectadas"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
#, fuzzy
msgid "The following connections exist for your account."
msgstr "Permitiulle o acceso á súa conta ás seguintes aplicacións."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Non é usuario desa aplicación."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Non se puido revogar o acceso da aplicación: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3555,20 +4024,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Non autorizou o acceso á súa conta para ningunha aplicación."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Non se atopou o método da API."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Non se atopou o método da API."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Non hai perfil para a nota."
@@ -3578,6 +4057,16 @@ msgstr "Non hai perfil para a nota."
msgid "%1$s's status on %2$s"
msgstr "Estado de %1$s en %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Non se atopou o destinatario."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3591,16 +4080,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Só %s enderezos URL sobre HTTP simple."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Non se soporta ese formato de datos."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Busca de xente"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Busca de notas"
@@ -3614,71 +4104,82 @@ msgid "Manage various other options."
msgstr "Configure outras tantas opcións."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (servizo gratuíto)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Abreviar os enderezos URL con"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Servizo de abreviación automática a usar."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Deseños visuais do perfil"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Amosar ou agochar os deseños do perfil."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr ""
"O servizo de abreviación de enderezos URL é longo de máis (o límite está en "
"50 caracteres)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Non se especificou ningunha ID de usuario."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Non se especificou ningún pase."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Non se solicitou ningún pase."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "O pase especificado é incorrecto."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "O pase caducou."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Caixa de saída de %1$s - páxina %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Caixa de saída de %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Esta é a súa caixa de saída. Nela lístanse as mensaxes privadas que enviou."
@@ -3691,7 +4192,8 @@ msgstr "Cambiar o contrasinal"
msgid "Change your password."
msgstr "Cambiar o seu contrasinal."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Cambio de contrasinal"
@@ -3699,48 +4201,50 @@ msgstr "Cambio de contrasinal"
msgid "Old password"
msgstr "Contrasinal anterior"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Novo contrasinal"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "Seis ou máis caracteres"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Confirmar"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Igual ao contrasinal anterior"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Cambiar"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "O contrasinal debe conter seis ou máis caracteres."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Os contrasinais non coinciden."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "O contrasinal anterior non é correcto"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Houbo un erro ao gardar o usuario. Incorrecto."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Non se puido gardar o novo contrasinal."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Gardouse o contrasinal."
@@ -3953,7 +4457,7 @@ msgstr "Ruta do directorio das traducións"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Ficheiros anexos"
@@ -4027,7 +4531,9 @@ msgstr "Servidor ao que dirixir as solicitudes SSL"
msgid "Save paths"
msgstr "Gardar as rutas"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4036,7 +4542,8 @@ msgstr ""
"Buscar xente en %%site.name%% por nome, lugar ou intereses. Separe os termos "
"con espazos en branco. Teñen que ter tres ou máis caracteres."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Busca de xente"
@@ -4061,12 +4568,12 @@ msgstr ""
"A licenza \"%1$s\" da nota non é compatible coa licenza \"%2$s\" do sitio."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Configuración do perfil"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4074,12 +4581,12 @@ msgstr ""
"coñeza mellor."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Información do perfil"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
@@ -4088,21 +4595,22 @@ msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Nome completo"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Páxina persoal"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio"
@@ -4110,7 +4618,7 @@ msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio"
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4118,74 +4626,81 @@ msgstr[0] "Descríbase a vostede e mailos seus intereses en %d caracteres"
msgstr[1] "Descríbase a vostede e mailos seus intereses en %d caracteres"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Descríbase a vostede e mailos seus intereses"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Biografía"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Lugar"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Compartir o lugar onde vivo ao publicar notas"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Etiquetas"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Etiquetas para vostede (letras salvo eñes e tiles, números, puntos, guións e "
"guións baixos), separados por comas ou espazos"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Lingua"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Lingua escollida"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Fuso horario"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "En que fuso horario adoita estar?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Subscribirse automaticamente a quen se subscriba a min (o mellor para os "
"bots)"
@@ -4193,7 +4708,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4201,50 +4716,54 @@ msgstr[0] "A biografía é longa de máis (o límite son %d caracteres)."
msgstr[1] "A biografía é longa de máis (o límite son %d caracteres)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Non se escolleu ningún fuso horario."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "A lingua é longa de máis (o límite é de 50 caracteres)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Etiqueta incorrecta: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Non se puido actualizar o usuario para subscribirse automaticamente."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Non se puideron gardar as preferencias de lugar."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Non se puido gardar o perfil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Non se puideron gardar as etiquetas."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Gardouse a configuración."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Crear unha conta"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4321,6 +4840,12 @@ msgstr ""
"wikipedia.org/wiki/Microblogging) (en inglés) baseado na ferramenta de "
"software libre [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s actualizacións de todos!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4365,37 +4890,45 @@ msgstr ""
msgid "Tag cloud"
msgstr "Nube de etiquetas"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Xa está identificado!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Ese código de recuperación non existe."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Iso non é un código de recuperación."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Código de recuperación para un usuario descoñecido."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Houbo un erro co código de confirmación."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Este código de confirmación é vello de máis. Volva empezar."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr ""
"Non se puido actualizar o usuario co enderezo de correo electrónico "
"confirmado."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4403,71 +4936,104 @@ msgstr ""
"Se esqueceu ou perdeu o seu contrasinal, pode solicitar que se lle envíe un "
"novo ao enderezo de correo electrónico da conta."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Acaba de identificarse. Introduza un contrasinal novo a continuación. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Acaba de identificarse. Introduza un contrasinal novo a continuación."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Recuperación do contrasinal"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Alcume ou enderezo de correo electrónico"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"O seu alcume neste servidor, ou o enderezo de correo electrónico co que se "
"rexistrou."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Recuperar"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Recuperar"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Restablecer o contrasinal"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Recuperar o contrasinal"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Solicitouse a recuperación do contrasinal"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Gardouse o contrasinal."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Non se coñece esa acción"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "Seis ou máis caracteres, e non o esqueza!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Restablecer"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Introduza un alcume ou enderezo de correo electrónico."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr ""
"Non hai ningún usuario con ese enderezo de correo electrónico ou alcume."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr ""
"Non se rexistrou ningún enderezo de correo electrónico para ese usuario."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Houbo un erro ao gardar a confirmación do enderezo."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4475,126 +5041,122 @@ msgstr ""
"Enviáronse instrucións para a recuperación do seu contrasinal ao enderezo de "
"correo electrónico rexistrado para a súa conta."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Restablecemento de contrasinal inesperado."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "O contrasinal debe ter seis ou máis caracteres."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "O contrasinal e a confirmación non coinciden."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Houbo un erro ao configurar o usuario."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "O novo contrasinal gardouse correctamente. Agora está identificado."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Só se pode rexistrar mediante invitación."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "O código da invitación é incorrecto."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Rexistrouse correctamente"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Rexistrarse"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Non se permite o rexistro."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Non pode rexistrarse se non acepta a licenza."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "O enderezo de correo electrónico xa existe."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "O nome de usuario ou contrasinal non son correctos."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Con este formulario pode crear unha conta nova. Entón poderá publicar notas "
"e porse en contacto con amigos e compañeiros. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, "
-"espazos, tiles ou eñes. Obrigatorio."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 ou máis caracteres. Obrigatorio."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "O mesmo contrasinal que o anterior. Obrigatorio."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Correo electrónico"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Só se utiliza para actualizacións, anuncios e recuperación de contrasinais"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Nome longo, preferiblemente o seu nome \"real\""
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL da súa páxina persoal, blogue ou perfil noutro sitio"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Onde está a vivir, coma “localidade, provincia (ou comunidade), país”"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr "Entendo que o contido e os datos de %1$s son privados e confidenciais."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
"Os meus textos e ficheiros están protexidos polos dereitos de autor de %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
"Os meus textos e ficheiros están protexidos polos meus propios dereitos de "
"autor."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Todos os dereitos reservados."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4604,7 +5166,7 @@ msgstr ""
"datos privados: contrasinais, enderezos de correo electrónico e mensaxería "
"instantánea e números de teléfono."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4636,7 +5198,7 @@ msgstr ""
"\n"
"Grazas por rexistrarse. Esperamos que goce deste servizo."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4644,7 +5206,7 @@ msgstr ""
"(Debería recibir unha mensaxe por correo electrónico nuns intres, con "
"instrucións para a confirmación do seu enderezo de correo electrónico.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4656,80 +5218,89 @@ msgstr ""
"mensaxes de blogue curtas compatible](%%doc.openmublog%%), introduza a "
"continuación o URL do seu perfil."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Subscribirse remotamente"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Subscribirse a un usuario remoto"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Alcume do usuario"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Alcume do usuario ao que quere seguir"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL do perfil"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
"URL do seu perfil noutro servizo de mensaxes de blogue curtas compatible"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Subscribirse"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "O enderezo URL do perfil é incorrecto (formato erróneo)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Non é un URL de perfil correcto (non hai un documento YADIS ou definiuse un "
"XRDS incorrecto)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Ese é un perfil local! Identifíquese para subscribirse."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Non se puido obter o pase solicitado."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Só os usuarios identificados poden repetir notas."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Non se especificou nota ningunha."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Non pode repetir a súa propia nota."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Xa repetiu esa nota."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Repetida"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Repetida!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Respostas a %s"
@@ -4781,11 +5352,104 @@ msgstr ""
"Pode probar a [facerlle un aceno a %1$s](../%2$s) ou [publicar algo dirixido "
"a el ou ela](%%%%action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Respostas a %1$s en %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Só os usuarios identificados poden repetir notas."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Aínda non rexistrou ningunha aplicación."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Cargar un ficheiro"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "O ficheiro subido supera a directiva upload_max_filesize no php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"O ficheiro subido supera a directiva MAX_FILE_SIZE especificada no "
+"formulario HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "O ficheiro só se subiu parcialmente."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Falta un cartafol temporal."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Non se puido escribir o ficheiro no disco."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Interrompeuse a carga do ficheiro por mor da extensión."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Houbo un erro no sistema ao cargar o ficheiro."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Todos os membros"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Cargar un ficheiro"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Non pode revogar os roles dos usuarios neste sitio."
@@ -4794,7 +5458,7 @@ msgstr "Non pode revogar os roles dos usuarios neste sitio."
msgid "User doesn't have this role."
msgstr "O usuario non ten este rol."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4836,85 +5500,87 @@ msgstr "Activar a saída de depuración para as sesións."
msgid "Save site settings"
msgstr "Gardar a configuración do sitio"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Debe estar identificado para ver unha aplicación."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Perfil da aplicación"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Icona"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nome"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organización"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Descrición"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Estatísticas"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Creado por %1$s - acceso %2$s por defecto - %3$d usuarios"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Accións da aplicación"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Restablecer o contrasinal ou a pregunta secreta"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Borrar"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Información da aplicación"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Clave do consumidor"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Pregunta secreta do consumidor"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "Solicitar un URL de pase"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "Acceder ao URL do pase"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Autorizar o URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4922,37 +5588,44 @@ msgstr ""
"Nota: sopórtanse as sinaturas HMAC-SHA1. Non se soporta o método de asinado "
"con texto sinxelo."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Seguro que quere restablecer a súa clave e maila súa pregunta secreta de "
"consumidor?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Notas favoritas de %1$s, páxina %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Non se puideron obter as notas favoritas."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Fonte de novas dos favoritos de %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Fonte de novas dos favoritos de %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Fonte de novas dos favoritos de %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4960,7 +5633,9 @@ msgstr ""
"Aínda non escolleu ningunha nota favorita. Prema no botón de nota favorita "
"naquelas notas que lle gusten para marcalas para logo ou para salientalas."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4969,7 +5644,10 @@ msgstr ""
"%s aínda non marcou ningunha nota como favorita. Publique algo interesante "
"que poida querer engadir aos seus favoritos :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4980,7 +5658,8 @@ msgstr ""
"conta](%%%%action.register%%%%) e publicar algo interesante que puidese "
"querer engadir aos seus favoritos? :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Isto é un modo de compartir o que lle gusta."
@@ -4998,82 +5677,89 @@ msgid "%1$s group, page %2$d"
msgstr "Grupo %1$s, páxina %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Perfil do grupo"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Nota"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Pseudónimos"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Accións do grupo"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Fonte de novas das notas do grupo %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Fonte de novas das notas do grupo %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Fonte de novas das notas do grupo %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Amigo dun amigo para o grupo %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Membros"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Ningún)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Todos os membros"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Creado"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5083,7 +5769,7 @@ msgstr "Membros"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5102,7 +5788,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5116,30 +5802,30 @@ msgstr ""
"seus membros comparten mensaxes curtas sobre as súas vidas e intereses. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administradores"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Non se atopou esa mensaxe."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Esta mensaxe só a poden ler o destinatario e mais o remitente."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Mensaxe a %1$s en %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Mensaxe de %1$s en %2$s"
@@ -5155,7 +5841,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, páxina %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5408,76 +6094,78 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Gardar a nota do sitio"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Configuración dos SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Pode recibir mensaxes SMS de %%site.name%% por correo electrónico."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "Os SMS non están dispoñibles."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Enderezo dos SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Número de teléfono cos SMS activados confirmado actualmente."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Agardando pola confirmación do número de teléfono."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Código de confirmación"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Introduza o código que recibiu no teléfono."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Confirmar"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Número de teléfono para os SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr ""
"Número de teléfono, sen signos de puntuación nin espazos en branco, co "
"código da zona"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Preferencias dos SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5486,32 +6174,32 @@ msgstr ""
"exorbitantes na factura da miña compañía."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Gardáronse as preferencias dos SMS."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Non hai ningún número de teléfono."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Non se escolleu unha compañía."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Ese xa é o seu número de teléfono."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Ese número de teléfono xa pertence a outro usuario."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5520,39 +6208,39 @@ msgstr ""
"Comprobe no seu teléfono o código e as instrucións para utilizalo."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Ese número de confirmación é incorrecto."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Cancelouse a confirmación para os SMS."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Ese número de teléfono non é seu."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Borrouse o número de teléfono para os SMS."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Compañía"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Escolla unha compañía"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5563,8 +6251,9 @@ msgstr ""
"nesta lista, envíenos un correo electrónico para notificárnolo a %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Non se introduciu ningún código"
#. TRANS: Menu item for site administration
@@ -5636,15 +6325,19 @@ msgstr "Non está subscrito a ese perfil."
msgid "Could not save subscription."
msgstr "Non se puido gardar a subscrición."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Esta acción só permite solicitudes POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Non se pode subscribir a un perfil remoto OMB 0.1 con esta acción."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Subscrito"
@@ -5676,7 +6369,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Estas son as persoas que están seguindo as notas de %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5687,7 +6380,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s non ten subscritores. Quere ser o primeiro?"
@@ -5697,7 +6390,7 @@ msgstr "%s non ten subscritores. Quere ser o primeiro?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5730,7 +6423,7 @@ msgstr "Estas son as persoas cuxas notas segue %s."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5749,23 +6442,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s non está seguindo a ninguén."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Fonte de novas das notas para %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5798,12 +6492,15 @@ msgstr "Sen argumento ID."
msgid "Tag %s"
msgstr "Etiqueta %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Perfil do usuario"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Fotografía"
@@ -5819,6 +6516,11 @@ msgstr ""
"Etiquetas para este usuario (letras, números, -, ., e _), separadas por "
"comas ou espazos en branco"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Etiqueta incorrecta: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5826,10 +6528,6 @@ msgstr ""
"Só pode etiquetar a xente á que estea subscrito ou que estean subscritos a "
"vostede."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Non se puideron gardar as etiquetas."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5840,6 +6538,7 @@ msgstr ""
msgid "No such tag."
msgstr "Esa etiqueta non existe."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Non bloqueou a ese usuario."
@@ -5860,7 +6559,7 @@ msgstr "Á solicitude fáltalle o ID do perfil."
msgid "Unsubscribed"
msgstr "Cancelouse a subscrición"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5894,12 +6593,11 @@ msgstr "Texto de benvida incorrecto. A extensión máxima é de 255 caracteres."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Subscrición por defecto incorrecta. \"%1$s\" non é un usuario."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Perfil"
@@ -5956,55 +6654,71 @@ msgstr "Permitir ou non que os usuarios poidan invitar a novos usuarios."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "Gardar a configuración do usuario"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autorizar a subscrición"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Verifique estes detalles para certificar que quere subscribirse ás notas "
"deste usuario. Se non pediu a subscrición ás notas de alguén, prema en "
"\"Rexeitar\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licenza"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Aceptar"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Subscribirse a este usuario"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Rexeitar"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Rexeitar esta subscrición"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Non se solicitou a autorización!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Autorizouse a subscrición"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -6014,11 +6728,12 @@ msgstr ""
"ás instrucións do sitio para saber máis sobre como autorizar a subscrición. "
"O pase da súa subscrición é:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Rexeitouse a subscrición"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -6028,48 +6743,73 @@ msgstr ""
"ás instrucións do sitio para obter máis información sobre como rexeitar "
"completamente a subscrición."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "Non se atopou o URI do seguidor, \"%s\", aquí."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "O URI do seguidor, \"%s\", é longo de máis."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "O URI do seguidor, \"%s\", é dun usuario local."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "O URL do perfil, \"%s\", pertence a un usuario local."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"A licenza \"%1$s\" das transmisións da persoa seguida non é compatible coa "
+"licenza deste sitio: \"%2$s\"."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "O URL do avatar, \"%s\", é incorrecto."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Non se puido ler o URL do avatar, \"%s\"."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "O tipo de imaxe do URL do avatar, \"%s\", é incorrecto."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Deseño do perfil"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6077,7 +6817,7 @@ msgstr ""
"Personalice a aparencia do seu perfil cunha imaxe de fondo e unha paleta de "
"cores escollida por vostede."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Bo proveito!"
@@ -6107,7 +6847,7 @@ msgstr "Probe a [buscar grupos](%%action.groupsearch%%) e unirse a eles."
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Actualizacións de %1$s en %2$s!"
@@ -6168,7 +6908,7 @@ msgid "Plugins"
msgstr "Complementos"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Versión"
@@ -6177,32 +6917,32 @@ msgid "Author(s)"
msgstr "Autores"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Marcar como favorito"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s marcou a nota %2$s como favorita"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Non se pode procesar o URL \"%s\""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin pensa que algo é imposible."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6219,7 +6959,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6230,7 +6970,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6238,7 +6978,7 @@ msgstr[0] "Un ficheiro deste tamaño excedería a súa cota mensual de %d bytes.
msgstr[1] "Un ficheiro deste tamaño excedería a súa cota mensual de %d bytes."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Nome de ficheiro incorrecto."
@@ -6296,7 +7036,7 @@ msgid "Could not create login token for %s"
msgstr "Non se puido crear un pase de sesión para %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Non se atopou por ningures o nome da base de datos ou DSN."
@@ -6323,23 +7063,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Non existe tal perfil (%1$d) para a nota (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Houbo un erro na base de datos ao intentar inserir a etiqueta: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Houbo un problema ao gardar a nota. É longa de máis."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Houbo un problema ao gardar a nota. Descoñécese o usuario."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6347,7 +7087,7 @@ msgstr ""
"publicar nuns minutos."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6356,43 +7096,43 @@ msgstr ""
"publicar nuns minutos."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Prohibíuselle publicar notas neste sitio de momento."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Houbo un problema ao gardar a nota."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
#, fuzzy
msgid "Bad type provided to saveKnownGroups."
msgstr "O tipo dado para saveKnownGroups era incorrecto"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Houbo un problema ao gardar a caixa de entrada do grupo."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Non se puido gardar a resposta a %1$d, %2$d."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6400,7 +7140,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
@@ -6408,7 +7148,7 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6479,35 +7219,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Benvido a %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Non se estableceu ningún usuario único para o modo de usuario único."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Non se puido crear o grupo."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Non se puido establecer o URI do grupo."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Non se puido establecer a pertenza ao grupo."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Non se puido gardar a información do grupo local."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Non pode borrar usuarios."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6544,211 +7305,214 @@ msgid "Other"
msgstr "Outros"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Páxina sen título"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Mostrar máis"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Navegación principal do sitio"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Liña do tempo do perfil persoal e os amigos"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Persoal"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Cambie o seu correo electrónico, avatar, contrasinal ou perfil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Conta"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Conectarse aos servizos"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Conectarse"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Cambiar a configuración do sitio"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Administrador"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Convide a amigos e compañeiros a unírselle en %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Convidar"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Saír ao anonimato"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Saír"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Crear unha conta"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Rexistrarse"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Identificarse no sitio"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Identificarse"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Axuda!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Axuda"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Buscar persoas ou palabras"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Buscar"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Nota do sitio"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Vistas locais"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Nota da páxina"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Navegación secundaria do sitio"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Axuda"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Acerca de"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "Preguntas máis frecuentes"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Condicións do servicio"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Protección de datos"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Código fonte"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Contacto"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Insignia"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licenza do software StatusNet"
@@ -6756,7 +7520,7 @@ msgstr "Licenza do software StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6766,7 +7530,7 @@ msgstr ""
"site.broughtby%%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** é un servizo de mensaxes de blogue curtas."
@@ -6775,7 +7539,7 @@ msgstr "**%%site.name%%** é un servizo de mensaxes de blogue curtas."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6787,20 +7551,20 @@ msgstr ""
"GNU](http://www.fsf.org/licensing/licenses/agpl-3.0.html) (en inglés)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licenza dos contidos do sitio"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "O contido e os datos de %1$s son privados e confidenciais."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
@@ -6808,7 +7572,7 @@ msgstr ""
"todos os dereitos."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Os contidos e datos son propiedade intelectual dos colaboradores. Quedan "
@@ -6816,26 +7580,26 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
"Todos os contidos e datos de %1$s están dispoñibles baixo a licenza %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paxinación"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Posteriores"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Anteriores"
@@ -6845,10 +7609,80 @@ msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
"Esperábase unha fonte de novas raíz pero recibiuse un documento XML completo."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Non se coñece a lingua \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Fotografía"
+msgid "Cannot force remote user to subscribe."
+msgstr "Introduza o nome do usuario ao que quere subscribirse."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Non se coñece o tipo de ficheiro"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Xa forma parte dese grupo."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Buscar nos contidos das notas"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Non existe tal usuario."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6920,7 +7754,7 @@ msgid "User configuration"
msgstr "Configuración do usuario"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Usuario"
@@ -6966,19 +7800,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Non hai ningunha aplicación para esa clave."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Pase de acceso incorrecto."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Non hai ningún usuario para ese pase."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Non puidemos autenticalo."
@@ -7001,30 +7839,36 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Non se puido inserir a mensaxe."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr ""
"Houbo un erro na base de datos ao intentar inserir o usuario da aplicación "
"OAuth."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr ""
+"Houbo un erro na base de datos ao intentar inserir o usuario da aplicación "
+"OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Intentouse revogar un pase descoñecido."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Erro ao borrar o pase revogado."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Icona para esta aplicación"
@@ -7136,17 +7980,24 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Revogar"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+#, fuzzy
+msgid "Author element must contain a name element."
msgstr "o elemento \"autor\" debe conter un nome."
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Non borrar esta nota"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autor"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Provedor"
@@ -7177,6 +8028,11 @@ msgstr "Non se permite cambiar o contrasinal"
msgid "Block"
msgstr "Excluír"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Bloquear este usuario"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7291,7 +8147,7 @@ msgstr "Nome completo: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Localidade: %s"
@@ -7299,7 +8155,7 @@ msgstr "Localidade: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Sitio web: %s"
@@ -7575,26 +8431,26 @@ msgstr ""
"tracking - aínda non se integrou\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Non se atopou ningún ficheiro de configuración. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Buscáronse ficheiros de configuración nos seguintes lugares: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Pode que queira executar o instalador para arranxalo."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Ir ao instalador."
@@ -7638,14 +8494,19 @@ msgstr "Aplicacións conectadas autorizadas"
msgid "Database error"
msgstr "Houbo un erro na base de datos"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Borrar o usuario"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Cargar un ficheiro"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7666,26 +8527,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Desactivado"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Restablecer"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Cambiar as cores"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Utilizar os valores por defecto"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Restaurar o deseño por defecto"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Volver ao deseño por defecto"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Gardar o deseño"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Non se puido actualizar o seu deseño."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Restableceuse o deseño por defecto."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Non se puido revogar o acceso da aplicación: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Desmarcar esta nota como favorita"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Desmarcar como favorita"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Marcar esta nota como favorita"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Marcar como favorito"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7702,6 +8611,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "Amigo dun amigo"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Todos os membros"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7736,29 +8658,29 @@ msgstr "Continuar"
msgid "Grant this user the \"%s\" role"
msgstr "Outorgarlle a este usuario o rol \"%s\""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
"Entre 1 e 64 letras minúsculas ou números, sen signos de puntuación, "
"espazos, tiles ou eñes"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL do sitio web persoal ou blogue do grupo ou tema"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Describa o grupo ou o tema"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Describa o grupo ou o tema en %d caracteres"
msgstr[1] "Describa o grupo ou o tema en %d caracteres"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
@@ -7766,7 +8688,7 @@ msgstr ""
"Localidade do grupo, se a ten, como por exemplo \"Cidade, Provincia, "
"Comunidade, País\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7875,40 +8797,41 @@ msgstr "Etiquetas nas notas do grupo %s"
msgid "This page is not available in a media type you accept"
msgstr "Esta páxina non está dispoñible nun formato axeitado para vostede"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Non se soporta o formato da imaxe."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Ese ficheiro é grande de máis. O tamaño máximo por ficheiro son %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Carga parcial."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Houbo un erro no sistema ao cargar o ficheiro."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "O ficheiro está mal ou non é unha imaxe."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Perdeuse o noso ficheiro."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Non se coñece o tipo de ficheiro"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7916,7 +8839,7 @@ msgstr[0] "MB"
msgstr[1] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7924,7 +8847,7 @@ msgstr[0] "kB"
msgstr[1] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7945,23 +8868,25 @@ msgstr "Non se coñece a fonte %d da caixa de entrada."
msgid "Leave"
msgstr "Deixar"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Identificarse cun nome de usuario e contrasinal"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Rexistrar unha conta nova"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Confirmación do enderezo de correo electrónico"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7992,14 +8917,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "Agora %1$s segue as súas notas en %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -8013,7 +8938,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -8041,14 +8966,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Biografía: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Novo enderezo de correo electrónico para publicar en %s"
@@ -8056,7 +8981,7 @@ msgstr "Novo enderezo de correo electrónico para publicar en %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8079,19 +9004,19 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Estado de %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Confirmación dos SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
@@ -8099,15 +9024,15 @@ msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "%s fíxolle un aceno"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8136,7 +9061,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nova mensaxe privada de %s"
@@ -8145,7 +9070,7 @@ msgstr "Nova mensaxe privada de %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8180,7 +9105,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) marcou a súa nota como favorita"
@@ -8190,7 +9115,7 @@ msgstr "%s (@%s) marcou a súa nota como favorita"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8229,7 +9154,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8242,7 +9167,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) enviou unha nota á súa atención"
@@ -8253,7 +9178,7 @@ msgstr "%s (@%s) enviou unha nota á súa atención"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8303,11 +9228,11 @@ msgstr ""
"\n"
"P.S.: pode desactivar estas notificacións por correo electrónico en %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Só o usuario pode ler as súas caixas de entrada."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8315,10 +9240,6 @@ msgstr ""
"Non ten mensaxes privadas. Pode enviar mensaxes privadas para conversar con "
"outros usuarios. A xente pode enviarlle mensaxes para que só as lea vostede."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "de"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Non se puido analizar a mensaxe."
@@ -8346,40 +9267,6 @@ msgid "There was a database error while saving your file. Please try again."
msgstr ""
"Houbo un erro na base de datos ao gardar o seu ficheiro. Volva intentalo."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "O ficheiro subido supera a directiva upload_max_filesize no php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"O ficheiro subido supera a directiva MAX_FILE_SIZE especificada no "
-"formulario HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "O ficheiro só se subiu parcialmente."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Falta un cartafol temporal."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Non se puido escribir o ficheiro no disco."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Interrompeuse a carga do ficheiro por mor da extensión."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8400,7 +9287,7 @@ msgstr "Non se puido determinar o tipo MIME do ficheiro."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8411,7 +9298,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "Neste servidor non se soporta o tipo de ficheiro \"%s\"."
@@ -8445,20 +9332,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Enviar"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Mensaxe"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "de"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"O alcume debe ter só letras en minúscula e números, e non pode ter espazos "
"en branco."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8474,11 +9370,11 @@ msgstr "Enviar unha nota"
msgid "What's up, %s?"
msgstr "Que hai de novo, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Anexar"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Anexar un ficheiro"
@@ -8499,55 +9395,59 @@ msgstr ""
"intentar máis tarde"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "L"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "O"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "en"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "no contexto"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Repetida por"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Responder a esta nota"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Responder"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Borrar esta nota"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Repetiuse a nota"
@@ -8584,77 +9484,113 @@ msgstr "Nota duplicada."
msgid "Couldn't insert new subscription."
msgstr "Non se puido inserir unha subscrición nova."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Persoal"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Respostas"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Perfil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favoritas"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Caixa de entrada"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "As mensaxes recibidas"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Caixa de saída"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "As mensaxes enviadas"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Etiquetas nas notas de %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Descoñecida"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Subscricións"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Todas as subscricións"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Subscritores"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Todos os subscritores"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID do usuario"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Membro dende"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grupos"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Media diaria"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Todos os grupos"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Aínda non se implantou o método."
@@ -8701,7 +9637,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Revogarlle o rol \"%s\" a este usuario"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Non se atopou o método da API."
@@ -8792,6 +9728,10 @@ msgstr "Convidar"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Convide a amigos e compañeiros a unírselle en %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Subscribirse a este usuario"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8911,64 +9851,81 @@ msgstr "Cancelar a subscrición"
msgid "User %1$s (%2$d) has no profile record."
msgstr "O usuario %1$s (%2$d) non ten perfil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Modificar o avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Accións do usuario"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Procedendo a borrar o usuario..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Modificar a configuración do perfil"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Modificar"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Enviarlle unha mensaxe directa a este usuario"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Mensaxe"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderar"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Rol do usuario"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrador"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderador"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Non iniciou sesión."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "hai uns segundos"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "hai como un minuto"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8976,12 +9933,12 @@ msgstr[0] "hai un minuto"
msgstr[1] "hai %d minutos"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "hai como unha hora"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8989,12 +9946,12 @@ msgstr[0] "hai unha hora"
msgstr[1] "hai %d horas"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "hai como un día"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -9002,12 +9959,12 @@ msgstr[0] "hai un día"
msgstr[1] "hai %d días"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "hai como un mes"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -9015,18 +9972,13 @@ msgstr[0] "hai un mes"
msgstr[1] "hai %d meses"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "hai como un ano"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s non é unha cor correcta!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s non é unha cor correcta! Use 3 ou 6 caracteres hexadecimais."
@@ -9049,31 +10001,18 @@ msgstr[1] ""
"A mensaxe é longa de máis, o límite de caracteres é de %1$d, e enviou %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Tamaño non válido."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Non se especificou ningún usuario; emprégase o usuario de reserva."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, fuzzy, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "%d entradas na reserva."
-msgstr[1] "%d entradas na reserva."
diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po
index ce4ca83ffc..37977510c6 100644
--- a/locale/he/LC_MESSAGES/statusnet.po
+++ b/locale/he/LC_MESSAGES/statusnet.po
@@ -1,6 +1,7 @@
# Translation of StatusNet - Core to Hebrew (עברית)
# Expored from translatewiki.net
#
+# Author: YaronSh
# --
# This file is distributed under the same license as the StatusNet package.
#
@@ -8,364 +9,831 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-18 22:06+0000\n"
-"PO-Revision-Date: 2010-09-18 22:07:55+0000\n"
+"POT-Creation-Date: 2011-01-15 00:20+0000\n"
+"PO-Revision-Date: 2011-01-15 00:22:37+0000\n"
"Language-Team: Hebrew \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.17alpha (r73298); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 1284-74-75 38::+0000\n"
+"X-POT-Import-Date: 2011-01-15 00:06:50+0000\n"
-#. TRANS: Page notice
-#: actions/accessadminpanel.php:67
+#. TRANS: Page title for Access admin panel that allows configuring site access.
+#. TRANS: Menu item for site administration
+#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363
+msgid "Access"
+msgstr "גישה"
+
+#. TRANS: Page notice.
+#: actions/accessadminpanel.php:64
msgid "Site access settings"
msgstr "הגדרות הפרופיל"
-#. TRANS: Checkbox instructions for admin setting "Private"
-#: actions/accessadminpanel.php:165
+#. TRANS: Form legend for registration form.
+#: actions/accessadminpanel.php:151
+msgid "Registration"
+msgstr "הרשמה"
+
+#. TRANS: Checkbox instructions for admin setting "Private".
+#: actions/accessadminpanel.php:155
msgid "Prohibit anonymous users (not logged in) from viewing site?"
msgstr ""
-#. TRANS: Checkbox instructions for admin setting "Invite only"
-#: actions/accessadminpanel.php:174
+#. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
+#: actions/accessadminpanel.php:157
+#, fuzzy
+msgctxt "LABEL"
+msgid "Private"
+msgstr "פרטיות"
+
+#. TRANS: Checkbox instructions for admin setting "Invite only".
+#: actions/accessadminpanel.php:164
msgid "Make registration invitation only."
msgstr ""
#. TRANS: Checkbox label for configuring site as invite only.
-#: actions/accessadminpanel.php:176
+#: actions/accessadminpanel.php:166
msgid "Invite only"
msgstr ""
-#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations)
-#: actions/accessadminpanel.php:183
+#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations).
+#: actions/accessadminpanel.php:173
msgid "Disable new registrations."
msgstr ""
+#. TRANS: Checkbox label for disabling new user registrations.
+#: actions/accessadminpanel.php:175
+#, fuzzy
+msgid "Closed"
+msgstr "אין משתמש כזה."
+
+#. TRANS: Title for button to save access settings in site admin panel.
+#: actions/accessadminpanel.php:191
+#, fuzzy
+msgid "Save access settings"
+msgstr "הגדרות"
+
+#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button label to save e-mail preferences.
+#. TRANS: Button label to save IM preferences.
+#. TRANS: Button text for saving "Other settings" in profile.
+#. TRANS: Button text to store form data in the Paths admin panel.
+#. TRANS: Button to save input in profile settings.
+#. TRANS: Button text for saving site notice in admin panel.
+#. TRANS: Button label to save SMS preferences.
+#. TRANS: Save button for settings for a profile in a subscriptions list.
+#. TRANS: Button text to save user settings in user admin panel.
+#. TRANS: Button label in the "Edit application" form.
+#. TRANS: Button text on profile design page to save settings.
+#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
+#: actions/imsettings.php:187 actions/othersettings.php:134
+#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
+#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
+#: actions/subscriptions.php:262 actions/useradminpanel.php:298
+#: lib/applicationeditform.php:355 lib/designsettings.php:270
+#: lib/groupeditform.php:207
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Save"
+msgstr "שמור"
+
+#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
#: actions/showfavorites.php:138 actions/tag.php:52
msgid "No such page."
msgstr "אין משתמש כזה."
+#. TRANS: Client error when user not found for an action.
+#. TRANS: Client error when user not found for an rss related action.
+#. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting.
+#. TRANS: Client error displayed if a user could not be found.
+#. TRANS: Client error when user not found updating a profile background image.
+#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error when user not found for an API action to remove a block for a user.
+#. TRANS: Client error given when a user was not found (404).
+#. TRANS: Client error when user not found for an API direct message action.
+#. TRANS: Client error given when a user was not found (404).
+#. TRANS: Client error displayed when checking group membership for a non-existing user.
+#. TRANS: Client error displayed when trying to have a non-existing user join a group.
+#. TRANS: Client error displayed when trying to have a non-existing user leave a group.
+#. TRANS: Client error displayed when updating a status for a non-existing user.
+#. TRANS: Client error displayed when requesting a list of followers for a non-existing user.
+#. TRANS: Client error displayed when requesting most recent favourite notices by a user for a non-existing user.
+#. TRANS: Client error displayed when requesting dents of a user and friends for a user that does not exist.
+#. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user.
+#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
+#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
+#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
-#: actions/all.php:79 actions/allrss.php:68
-#: actions/apiaccountupdatedeliverydevice.php:115
-#: actions/apiaccountupdateprofile.php:106
-#: actions/apiaccountupdateprofilebackgroundimage.php:117
-#: actions/apiaccountupdateprofileimage.php:106 actions/apiblockcreate.php:98
-#: actions/apiblockdestroy.php:97 actions/apidirectmessage.php:77
-#: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:114
-#: actions/apigroupismember.php:91 actions/apigroupjoin.php:101
-#: actions/apigroupleave.php:101 actions/apigrouplist.php:73
-#: actions/apistatusesupdate.php:230 actions/apisubscriptions.php:87
-#: actions/apitimelinefavorites.php:72 actions/apitimelinefriends.php:174
-#: actions/apitimelinehome.php:80 actions/apitimelinementions.php:80
-#: actions/apitimelineuser.php:82 actions/avatarbynickname.php:75
-#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58
-#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116
-#: actions/otp.php:76 actions/remotesubscribe.php:145
-#: actions/remotesubscribe.php:154 actions/replies.php:73
-#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105
-#: actions/userbyid.php:74 actions/usergroups.php:93 actions/userrss.php:40
-#: actions/xrds.php:71 lib/command.php:498 lib/galleryaction.php:59
+#: actions/all.php:80 actions/allrss.php:69
+#: actions/apiaccountupdatedeliverydevice.php:110
+#: actions/apiaccountupdateprofile.php:103
+#: actions/apiaccountupdateprofilebackgroundimage.php:118
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
+#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
+#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
+#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
+#: actions/apigrouplist.php:70 actions/apistatusesupdate.php:230
+#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
+#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
+#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
+#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
+#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
+#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
+#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
#: lib/mailbox.php:82 lib/profileaction.php:77
msgid "No such user."
msgstr "אין משתמש כזה."
-#. TRANS: Page title. %1$s is user nickname
-#. TRANS: H1 text. %1$s is user nickname
+#. TRANS: Page title. %1$s is user nickname, %2$d is page number
+#: actions/all.php:91
+#, fuzzy, php-format
+msgid "%1$s and friends, page %2$d"
+msgstr "%s וחברים"
+
+#. TRANS: Page title. %s is user nickname
+#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
-#: actions/all.php:93 actions/all.php:185 actions/allrss.php:116
-#: actions/apitimelinefriends.php:210 actions/apitimelinehome.php:116
-#: lib/personalgroupnav.php:100
+#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
+#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
+#: lib/personalgroupnav.php:103
#, php-format
msgid "%s and friends"
msgstr "%s וחברים"
-#. TRANS: %1$s is user nickname
-#: actions/all.php:138
+#. TRANS: %s is user nickname.
+#: actions/all.php:108
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 1.0)"
+msgstr "הזנות החברים של %s"
+
+#. TRANS: %s is user nickname.
+#: actions/all.php:117
+#, fuzzy, php-format
+msgid "Feed for friends of %s (RSS 2.0)"
+msgstr "הזנות החברים של %s"
+
+#. TRANS: %s is user nickname.
+#: actions/all.php:126
+#, fuzzy, php-format
+msgid "Feed for friends of %s (Atom)"
+msgstr "הזנות החברים של %s"
+
+#. TRANS: Empty list message. %s is a user nickname.
+#: actions/all.php:139
#, php-format
msgid ""
"This is the timeline for %s and friends but no one has posted anything yet."
msgstr ""
-#: actions/all.php:143
+#. TRANS: Encouragement displayed on logged in user's empty timeline.
+#. TRANS: This message contains Markdown links. Keep "](" together.
+#: actions/all.php:146
#, php-format
msgid ""
"Try subscribing to more people, [join a group](%%action.groups%%) or post "
"something yourself."
msgstr ""
-#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@"
-#: actions/all.php:146
+#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@".
+#. TRANS: This message contains Markdown links. Keep "](" together.
+#: actions/all.php:150
#, php-format
msgid ""
"You can try to [nudge %1$s](../%2$s) from their profile or [post something "
"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/all.php:149 actions/replies.php:210 actions/showstream.php:211
+#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users.
+#. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together.
+#. TRANS: Second sentence of empty message for anonymous users. %s is a user nickname.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:227
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
"post a notice to them."
msgstr ""
+#. TRANS: H1 text for page when viewing a list for self.
+#: actions/all.php:188
+#, fuzzy
+msgid "You and friends"
+msgstr "%s וחברים"
+
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name.
-#: actions/allrss.php:121 actions/apitimelinefriends.php:216
-#: actions/apitimelinehome.php:122
+#: actions/allrss.php:122 actions/apitimelinefriends.php:213
+#: actions/apitimelinehome.php:119
#, php-format
msgid "Updates from %1$s and friends on %2$s!"
msgstr ""
+#. TRANS: Client error displayed handling a non-existing API method.
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours.
+#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials.
+#. TRANS: Client error given when an API method was not found (404).
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#. TRANS: Client error displayed trying to execute an unknown API method showing friendship.
+#. TRANS: Client error given when an API method was not found (404).
+#. TRANS: Client error displayed trying to execute an unknown API method showing group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method joining a group.
+#. TRANS: Client error displayed trying to execute an unknown API method leaving a group.
+#. TRANS: Client error displayed trying to execute an unknown API method checking group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups.
+#. TRANS: Client error displayed trying to execute an unknown API method showing group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method showing a group.
+#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity.
+#. TRANS: Client error displayed trying to execute an unknown API method deleting a status.
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#: actions/apiaccountratelimitstatus.php:69
+#: actions/apiaccountupdatedeliverydevice.php:92
+#: actions/apiaccountupdateprofile.php:94
+#: actions/apiaccountupdateprofilebackgroundimage.php:92
+#: actions/apiaccountupdateprofilecolors.php:115
+#: actions/apiaccountverifycredentials.php:68 actions/apidirectmessage.php:157
+#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:98
+#: actions/apifriendshipscreate.php:99 actions/apifriendshipsdestroy.php:99
+#: actions/apifriendshipsshow.php:124 actions/apigroupcreate.php:138
+#: actions/apigroupismember.php:115 actions/apigroupjoin.php:160
+#: actions/apigroupleave.php:145 actions/apigrouplist.php:134
+#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:105
+#: actions/apigroupshow.php:114 actions/apihelptest.php:84
+#: actions/apistatusesdestroy.php:101 actions/apistatusesretweets.php:110
+#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
+#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
+#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
+#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
+#: actions/apitimelineretweetedtome.php:118
+#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
+#: actions/apitimelineuser.php:206 actions/apiusershow.php:100
+#, fuzzy
+msgid "API method not found."
+msgstr "קוד האישור לא נמצא."
+
#. TRANS: Client error message. POST is a HTTP command. It should not be translated.
#. TRANS: Client error. POST is a HTTP command. It should not be translated.
-#: actions/apiaccountupdatedeliverydevice.php:87
-#: actions/apiaccountupdateprofile.php:90
-#: actions/apiaccountupdateprofilebackgroundimage.php:87
-#: actions/apiaccountupdateprofilecolors.php:111
-#: actions/apiaccountupdateprofileimage.php:85 actions/apiblockcreate.php:90
-#: actions/apiblockdestroy.php:89 actions/apidirectmessagenew.php:110
-#: actions/apifavoritecreate.php:92 actions/apifavoritedestroy.php:93
-#: actions/apifriendshipscreate.php:92 actions/apifriendshipsdestroy.php:92
-#: actions/apigroupcreate.php:106 actions/apigroupjoin.php:93
-#: actions/apigroupleave.php:93 actions/apimediaupload.php:68
-#: actions/apistatusesretweet.php:66 actions/apistatusesupdate.php:199
+#: actions/apiaccountupdatedeliverydevice.php:83
+#: actions/apiaccountupdateprofile.php:85
+#: actions/apiaccountupdateprofilebackgroundimage.php:83
+#: actions/apiaccountupdateprofilecolors.php:106
+#: actions/apiaccountupdateprofileimage.php:80 actions/apiblockcreate.php:87
+#: actions/apiblockdestroy.php:85 actions/apidirectmessagenew.php:107
+#: actions/apifavoritecreate.php:88 actions/apifavoritedestroy.php:88
+#: actions/apifriendshipscreate.php:89 actions/apifriendshipsdestroy.php:89
+#: actions/apigroupcreate.php:102 actions/apigroupjoin.php:89
+#: actions/apigroupleave.php:89 actions/apimediaupload.php:66
+#: actions/apistatusesretweet.php:63 actions/apistatusesupdate.php:194
msgid "This method requires a POST."
msgstr ""
-#: actions/apiaccountupdatedeliverydevice.php:107
+#. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting.
+#: actions/apiaccountupdatedeliverydevice.php:103
msgid ""
"You must specify a parameter named 'device' with a value of one of: sms, im, "
"none."
msgstr ""
-#: actions/apiaccountupdateprofile.php:113
-#: actions/apiaccountupdateprofilebackgroundimage.php:195
-#: actions/apiaccountupdateprofilecolors.php:186
-#: actions/apiaccountupdateprofileimage.php:131 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74
+#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#: actions/apiaccountupdatedeliverydevice.php:130
+#, fuzzy
+msgid "Could not update user."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Client error displayed if a user profile could not be found.
+#. TRANS: Client error displayed when a user has no profile.
+#. TRANS: Client error displayed a user has no profile updating profile colours.
+#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
+#. TRANS: Client error displayed when requesting user information for a user without a profile.
+#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#: actions/apiaccountupdateprofile.php:111
+#: actions/apiaccountupdateprofilebackgroundimage.php:199
+#: actions/apiaccountupdateprofilecolors.php:183
+#: actions/apiaccountupdateprofileimage.php:130
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
#: lib/profileaction.php:84
msgid "User has no profile."
msgstr "למשתמש אין פרופיל."
-#: actions/apiaccountupdateprofilebackgroundimage.php:109
-#: actions/apiaccountupdateprofileimage.php:98 actions/apimediaupload.php:81
-#: actions/apistatusesupdate.php:213 actions/avatarsettings.php:257
-#: actions/designadminpanel.php:123 actions/editapplication.php:118
-#: actions/newapplication.php:101 actions/newnotice.php:94
-#: lib/designsettings.php:283
+#. TRANS: Server error displayed if a user profile could not be saved.
+#: actions/apiaccountupdateprofile.php:147
+#, fuzzy
+msgid "Could not save profile."
+msgstr "שמירת הפרופיל נכשלה."
+
+#. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
+#. TRANS: %s is the number of bytes of the CONTENT_LENGTH.
+#. TRANS: Form validation error in design settings form. POST should remain untranslated.
+#: actions/apiaccountupdateprofilebackgroundimage.php:108
+#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
+#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
+#: actions/designadminpanel.php:125 actions/editapplication.php:121
+#: actions/newapplication.php:104 actions/newnotice.php:95
+#: lib/designsettings.php:298
#, php-format
msgid ""
+"The server was unable to handle that much POST data (%s byte) due to its "
+"current configuration."
+msgid_plural ""
"The server was unable to handle that much POST data (%s bytes) due to its "
"current configuration."
-msgstr ""
+msgstr[0] ""
+msgstr[1] ""
-#: actions/apiaccountupdateprofilebackgroundimage.php:137
-#: actions/apiaccountupdateprofilebackgroundimage.php:147
-#: actions/apiaccountupdateprofilecolors.php:165
-#: actions/apiaccountupdateprofilecolors.php:175
+#. TRANS: Client error displayed when saving design settings fails because of an empty id.
+#. TRANS: Client error displayed when saving design settings fails because of an empty result.
+#. TRANS: Client error displayed when a database error occurs inserting profile colours.
+#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#: actions/apiaccountupdateprofilebackgroundimage.php:138
+#: actions/apiaccountupdateprofilebackgroundimage.php:149
+#: actions/apiaccountupdateprofilecolors.php:160
+#: actions/apiaccountupdateprofilecolors.php:171
#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
#: 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/apiblockcreate.php:127
+#. TRANS: Error displayed when updating design settings fails.
+#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#: actions/apiaccountupdateprofilebackgroundimage.php:191
+#: actions/apiaccountupdateprofilecolors.php:139
+#, fuzzy
+msgid "Could not update your design."
+msgstr "עידכון המשתמש נכשל."
+
+#: actions/apiatomservice.php:86
+msgid "Main"
+msgstr ""
+
+#. TRANS: Message is used as link title. %s is a user nickname.
+#. TRANS: Title in atom group notice feed. %s is a group name.
+#. TRANS: Title in atom user notice feed. %s is a user name.
+#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
+#: lib/atomusernoticefeed.php:68
+#, fuzzy, php-format
+msgid "%s timeline"
+msgstr "קו זמן ציבורי"
+
+#. TRANS: Header for subscriptions overview for a user (first page).
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/subscriptions.php:51
+#, fuzzy, php-format
+msgid "%s subscriptions"
+msgstr "כל המנויים"
+
+#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#, php-format
+msgid "%s favorites"
+msgstr ""
+
+#: actions/apiatomservice.php:123
+#, php-format
+msgid "%s memberships"
+msgstr ""
+
+#. TRANS: Client error displayed when users try to block themselves.
+#: actions/apiblockcreate.php:104
+#, fuzzy
+msgid "You cannot block yourself!"
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Server error displayed when blocking a user has failed.
+#: actions/apiblockcreate.php:126
msgid "Block user failed."
msgstr ""
-#: actions/apiblockdestroy.php:115
+#. TRANS: Server error displayed when unblocking a user has failed.
+#: actions/apiblockdestroy.php:113
msgid "Unblock user failed."
msgstr ""
-#: actions/apidirectmessage.php:89
+#. TRANS: Title. %s is a user nickname.
+#: actions/apidirectmessage.php:88
#, php-format
msgid "Direct messages from %s"
msgstr ""
+#. TRANS: Subtitle. %s is a user nickname.
#: actions/apidirectmessage.php:93
#, php-format
msgid "All the direct messages sent from %s"
msgstr ""
-#: actions/apidirectmessage.php:101
+#. TRANS: Title. %s is a user nickname.
+#: actions/apidirectmessage.php:102
#, php-format
msgid "Direct messages to %s"
msgstr ""
-#: actions/apidirectmessage.php:105
+#. TRANS: Subtitle. %s is a user nickname.
+#: actions/apidirectmessage.php:107
#, php-format
msgid "All the direct messages sent to %s"
msgstr ""
-#: actions/apidirectmessagenew.php:143
+#. TRANS: Client error displayed when no message text was submitted (406).
+#: actions/apidirectmessagenew.php:117
+#, fuzzy
+msgid "No message text!"
+msgstr "הודעה חדשה"
+
+#. TRANS: Client error displayed when message content is too long.
+#. TRANS: %d is the maximum number of characters for a message.
+#. TRANS: Form validation error displayed when message content is too long.
+#. TRANS: %d is the maximum number of characters for a message.
+#: actions/apidirectmessagenew.php:127 actions/newmessage.php:152
+#, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error displayed if a recipient user could not be found (403).
+#: actions/apidirectmessagenew.php:139
+#, fuzzy
+msgid "Recipient user not found."
+msgstr "קוד האישור לא נמצא."
+
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
msgid "Can't send direct messages to users who aren't your friend."
msgstr ""
-#: actions/apifavoritecreate.php:110 actions/apifavoritedestroy.php:111
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr ""
+
+#. TRANS: Client error displayed when requesting a status with a non-existing ID.
+#. TRANS: Client error displayed when trying to remove a favourite with an invalid ID.
+#. TRANS: Client error displayed trying to delete a status with an invalid ID.
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:108
#: actions/apistatusesdestroy.php:121
msgid "No status found with that ID."
msgstr ""
-#: actions/apifavoritedestroy.php:124
+#. TRANS: Client error displayed when trying to mark a notice favourite that already is a favourite.
+#: actions/apifavoritecreate.php:120
+#, fuzzy
+msgid "This status is already a favorite."
+msgstr "זהו כבר זיהוי ה-Jabber שלך."
+
+#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Error message text shown when a favorite could not be set.
+#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#, fuzzy
+msgid "Could not create favorite."
+msgstr "שמירת הפרופיל נכשלה."
+
+#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite.
+#: actions/apifavoritedestroy.php:122
msgid "That status is not a favorite."
msgstr ""
-#: actions/apifriendshipscreate.php:110
+#. TRANS: Client error displayed when removing a favourite has failed.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#, fuzzy
+msgid "Could not delete favorite."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Client error displayed when trying follow who's profile could not be found.
+#: actions/apifriendshipscreate.php:109
msgid "Could not follow user: profile not found."
msgstr "שמירת הפרופיל נכשלה."
-#: actions/apifriendshipscreate.php:119
+#. TRANS: Client error displayed when trying to follow a user that's already being followed.
+#. TRANS: %s is the nickname of the user that is already being followed.
+#: actions/apifriendshipscreate.php:120
#, php-format
msgid "Could not follow user: %s is already on your list."
msgstr ""
-#: actions/apifriendshipsexists.php:91
-msgid "Two valid IDs or screen_names must be supplied."
+#. TRANS: Client error displayed when trying to unfollow a user that cannot be found.
+#: actions/apifriendshipsdestroy.php:109
+#, fuzzy
+msgid "Could not unfollow user: User not found."
+msgstr "נכשלה ההפניה לשרת: %s"
+
+#. TRANS: Client error displayed when trying to unfollow self.
+#: actions/apifriendshipsdestroy.php:121
+#, fuzzy
+msgid "You cannot unfollow yourself."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
+#: actions/apifriendshipsexists.php:88
+msgid "Two valid IDs or nick names must be supplied."
msgstr ""
-#: actions/apigroupcreate.php:168 actions/editgroup.php:186
-#: actions/newgroup.php:126 actions/profilesettings.php:215
-#: actions/register.php:212
-msgid "Nickname must have only lowercase letters and numbers and no spaces."
-msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים."
+#. TRANS: Client error displayed when a source user could not be determined showing friendship.
+#: actions/apifriendshipsshow.php:131
+#, fuzzy
+msgid "Could not determine source user."
+msgstr "עידכון המשתמש נכשל."
-#: actions/apigroupcreate.php:177 actions/editgroup.php:190
-#: actions/newgroup.php:130 actions/profilesettings.php:238
-#: actions/register.php:215
+#. TRANS: Client error displayed when a target user could not be determined showing friendship.
+#: actions/apifriendshipsshow.php:140
+#, fuzzy
+msgid "Could not find target user."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Client error trying to create a group with a nickname this is already in use.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:156 actions/editgroup.php:189
+#: actions/newgroup.php:136 actions/profilesettings.php:277
+#: actions/register.php:214
msgid "Nickname already in use. Try another one."
msgstr "כינוי זה כבר תפוס. נסה כינוי אחר."
-#: actions/apigroupcreate.php:184 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:218
-#: actions/register.php:217
+#. TRANS: Client error in form for group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:164 actions/editgroup.php:193
+#: actions/newgroup.php:140 actions/profilesettings.php:247
+#: actions/register.php:216
msgid "Not a valid nickname."
msgstr "שם משתמש לא חוקי."
-#: actions/apigroupcreate.php:200 actions/editapplication.php:215
-#: actions/editgroup.php:199 actions/newapplication.php:203
-#: actions/newgroup.php:139 actions/profilesettings.php:222
-#: actions/register.php:224
+#. TRANS: Client error in form for group creation.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:181 actions/editapplication.php:233
+#: actions/editgroup.php:200 actions/newapplication.php:211
+#: actions/newgroup.php:147 actions/profilesettings.php:252
+#: actions/register.php:223
msgid "Homepage is not a valid URL."
msgstr "לאתר הבית יש כתובת לא חוקית."
-#: actions/apigroupcreate.php:209 actions/editgroup.php:202
-#: actions/newgroup.php:142 actions/profilesettings.php:225
-#: actions/register.php:227
-msgid "Full name is too long (max 255 chars)."
-msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)"
-
-#: actions/apigroupcreate.php:217 actions/editapplication.php:190
-#: actions/newapplication.php:172
-#, php-format
-msgid "Description is too long (max %d chars)."
-msgstr "שם המיקום ארוך מידי (מותר עד %d אותיות)."
-
-#: actions/apigroupcreate.php:228 actions/editgroup.php:208
-#: actions/newgroup.php:148 actions/profilesettings.php:232
-#: actions/register.php:234
-msgid "Location is too long (max 255 chars)."
-msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)."
-
-#: actions/apigroupcreate.php:247 actions/editgroup.php:219
-#: actions/newgroup.php:159
-#, php-format
-msgid "Too many aliases! Maximum %d."
+#. TRANS: Client error in form for group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:191 actions/editgroup.php:204
+#: actions/newgroup.php:151 actions/profilesettings.php:256
+#: actions/register.php:226
+msgid "Full name is too long (maximum 255 characters)."
msgstr ""
-#: actions/apigroupcreate.php:268
+#. TRANS: Client error shown when providing too long a description during group creation.
+#. TRANS: %d is the maximum number of allowed characters.
+#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: Group edit form validation error.
+#. TRANS: Form validation error in New application form.
+#. TRANS: %d is the maximum number of characters for the description.
+#. TRANS: Group create form validation error.
+#. TRANS: %d is the maximum number of allowed characters.
+#: actions/apigroupcreate.php:201 actions/editapplication.php:201
+#: actions/editgroup.php:209 actions/newapplication.php:178
+#: actions/newgroup.php:156
+#, php-format
+msgid "Description is too long (maximum %d character)."
+msgid_plural "Description is too long (maximum %d characters)."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error shown when providing too long a location during group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:215 actions/editgroup.php:216
+#: actions/newgroup.php:163 actions/profilesettings.php:269
+#: actions/register.php:235
+msgid "Location is too long (maximum 255 characters)."
+msgstr ""
+
+#. TRANS: Client error shown when providing too many aliases during group creation.
+#. TRANS: %d is the maximum number of allowed aliases.
+#. TRANS: Group edit form validation error.
+#. TRANS: %d is the maximum number of allowed aliases.
+#. TRANS: Group create form validation error.
+#. TRANS: %d is the maximum number of allowed aliases.
+#: actions/apigroupcreate.php:236 actions/editgroup.php:229
+#: actions/newgroup.php:176
+#, php-format
+msgid "Too many aliases! Maximum %d allowed."
+msgid_plural "Too many aliases! Maximum %d allowed."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error shown when providing an invalid alias during group creation.
+#. TRANS: %s is the invalid alias.
+#: actions/apigroupcreate.php:253
#, php-format
msgid "Invalid alias: \"%s\"."
msgstr "גודל לא חוקי."
-#: actions/apigroupcreate.php:290 actions/editgroup.php:238
-#: actions/newgroup.php:178
+#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
+#. TRANS: %s is the alias that is already in use.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:244
+#: actions/newgroup.php:191
+#, fuzzy, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr "כינוי זה כבר תפוס. נסה כינוי אחר."
+
+#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#: actions/apigroupcreate.php:278 actions/editgroup.php:251
+#: actions/newgroup.php:198
msgid "Alias can't be the same as nickname."
msgstr ""
-#: actions/apigroupismember.php:96 actions/apigroupjoin.php:106
-#: actions/apigroupleave.php:106 actions/apigroupmembership.php:92
-#: actions/apigroupshow.php:83 actions/apitimelinegroup.php:92
+#. TRANS: Client error displayed when checking group membership for a non-existing group.
+#. TRANS: Client error displayed when trying to join a group that does not exist.
+#. TRANS: Client error displayed when trying to leave a group that does not exist.
+#. TRANS: Client error displayed trying to show group membership on a non-existing group.
+#. TRANS: Client error displayed when trying to show a group that could not be found.
+#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
+#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "קוד האישור לא נמצא."
+#. TRANS: Server error displayed when trying to join a group the user is already a member of.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:112 actions/joingroup.php:100 lib/command.php:336
+#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
msgid "You are already a member of that group."
msgstr "לא שלחנו אלינו את הפרופיל הזה"
+#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:341
+#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr ""
-#: actions/apigrouplistall.php:96
+#. TRANS: Server error displayed when joining a group fails.
+#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Message given having failed to add a user to a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#, fuzzy, php-format
+msgid "Could not join user %1$s to group %2$s."
+msgstr "נכשלה ההפניה לשרת: %s"
+
+#. TRANS: Server error displayed when trying to leave a group the user is not a member of.
+#: actions/apigroupleave.php:115
+#, fuzzy
+msgid "You are not a member of this group."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
+#. TRANS: Server error displayed when leaving a group fails.
+#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Message given having failed to remove a user from a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: lib/command.php:398
+#, fuzzy, php-format
+msgid "Could not remove user %1$s from group %2$s."
+msgstr "נכשלה יצירת OpenID מתוך: %s"
+
+#. TRANS: Used as title in check for group membership. %s is a user name.
+#: actions/apigrouplist.php:94
+#, fuzzy, php-format
+msgid "%s's groups"
+msgstr "פרופיל"
+
+#. TRANS: Used as subtitle in check for group membership. %1$s is a user name, %2$s is the site name.
+#: actions/apigrouplist.php:104
+#, fuzzy, php-format
+msgid "%1$s groups %2$s is a member of."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
+#. TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name.
+#. TRANS: Message is used as a page title. %s is a nick name.
+#: actions/apigrouplistall.php:88 actions/usergroups.php:63
+#, fuzzy, php-format
+msgid "%s groups"
+msgstr "קבוצות"
+
+#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name.
+#: actions/apigrouplistall.php:93
#, php-format
msgid "groups on %s"
msgstr ""
-#: actions/apioauthauthorize.php:101
+#. TRANS: Client error displayed when uploading a media file has failed.
+#: actions/apimediaupload.php:101
+#, fuzzy
+msgid "Upload failed."
+msgstr "ההעלה"
+
+#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
+#: actions/apioauthaccesstoken.php:101
+msgid "Invalid request token or verifier."
+msgstr ""
+
+#. TRANS: Client error given when no oauth_token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:107
msgid "No oauth_token parameter provided."
msgstr ""
-#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
-#: actions/deletenotice.php:169 actions/disfavor.php:74
-#: actions/emailsettings.php:271 actions/favor.php:75 actions/geocode.php:55
+#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129
+msgid "Invalid request token."
+msgstr ""
+
+#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:121
+msgid "Request token already authorized."
+msgstr ""
+
+#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
+#: actions/deletenotice.php:177 actions/disfavor.php:74
+#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:66 actions/imsettings.php:230
-#: actions/invite.php:56 actions/login.php:137 actions/makeadmin.php:66
-#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
-#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135
-#: actions/othersettings.php:145 actions/passwordsettings.php:138
-#: actions/profilesettings.php:194 actions/recoverpassword.php:350
+#: actions/groupunblock.php:65 actions/imsettings.php:230
+#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
+#: actions/othersettings.php:153 actions/passwordsettings.php:138
+#: actions/profilesettings.php:221 actions/recoverpassword.php:350
#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:38
+#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
#: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52
-#: lib/designsettings.php:294
+#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
-#: actions/apioauthauthorize.php:214
-#, php-format
-msgid ""
-"The request token %s has been authorized. Please exchange it for an access "
-"token."
-msgstr ""
-
-#: actions/apioauthauthorize.php:227
-#, php-format
-msgid "The request token %s has been denied and revoked."
+#. TRANS: Form validation error given when an invalid username and/or password was passed to the OAuth API.
+#: actions/apioauthauthorize.php:168
+#, fuzzy
+msgid "Invalid nickname / password!"
+msgstr "שם המשתמש או הסיסמה לא חוקיים"
+
+#. TRANS: Server error displayed when a database action fails.
+#: actions/apioauthauthorize.php:217
+msgid "Database error inserting oauth_token_association."
msgstr ""
+#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
+#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Client error when submitting a form with unexpected information.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
-#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
-#: actions/designadminpanel.php:104 actions/editapplication.php:139
-#: actions/emailsettings.php:290 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:121
+#. TRANS: Unknown form validation error in design settings form.
+#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
+#: actions/designadminpanel.php:104 actions/editapplication.php:144
+#: actions/emailsettings.php:316 actions/grouplogo.php:322
+#: actions/imsettings.php:245 actions/newapplication.php:125
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:304
+#: actions/smssettings.php:277 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "הגשת טופס לא צפויה."
-#: actions/apioauthauthorize.php:259
+#. TRANS: Title for a page where a user can confirm/deny account access by an external application.
+#: actions/apioauthauthorize.php:387
msgid "An application would like to connect to your account"
msgstr ""
-#: actions/apioauthauthorize.php:276
+#. TRANS: Fieldset legend.
+#: actions/apioauthauthorize.php:404
msgid "Allow or deny access"
msgstr ""
-#: actions/apioauthauthorize.php:292
+#. TRANS: User notification of external application requesting account access.
+#. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename.
+#: actions/apioauthauthorize.php:425
+#, php-format
+msgid ""
+"An application would like the ability to %3$s your %4$s "
+"account data. You should only give access to your %4$s account to third "
+"parties you trust."
+msgstr ""
+
+#. TRANS: User notification of external application requesting account access.
+#. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application,
+#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename.
+#: actions/apioauthauthorize.php:433
#, php-format
msgid ""
"The application %1$s by %2$s would like "
@@ -373,357 +841,1253 @@ msgid ""
"give access to your %4$s account to third parties you trust."
msgstr ""
-#: actions/apioauthauthorize.php:313 actions/login.php:252
-#: actions/profilesettings.php:106 actions/register.php:431
-#: actions/showgroup.php:245 actions/tagother.php:94
+#. TRANS: Fieldset legend.
+#: actions/apioauthauthorize.php:455
+msgctxt "LEGEND"
+msgid "Account"
+msgstr ""
+
+#. TRANS: Field label on OAuth API authorisation form.
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for group nickname (dt). Text hidden by default.
+#: actions/apioauthauthorize.php:459 actions/login.php:252
+#: actions/profilesettings.php:110 actions/register.php:432
+#: actions/showgroup.php:240 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:132
+#: lib/userprofile.php:134
msgid "Nickname"
msgstr "כינוי"
+#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:316 actions/login.php:255
-#: actions/register.php:436 lib/accountsettingsaction.php:125
+#: actions/apioauthauthorize.php:463 actions/login.php:255
+#: actions/register.php:437 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "סיסמה"
-#: actions/apioauthauthorize.php:328
-msgid "Deny"
-msgstr ""
+#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
+#. TRANS: by an external application.
+#. TRANS: Button label to cancel an e-mail address confirmation procedure.
+#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel a SMS address confirmation procedure.
+#. TRANS: Button label in the "Edit application" form.
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
+#: actions/imsettings.php:131 actions/smssettings.php:137
+#: lib/applicationeditform.php:351
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Cancel"
+msgstr "בטל"
-#: actions/apioauthauthorize.php:334
+#. TRANS: Button text that when clicked will allow access to an account by an external application.
+#: actions/apioauthauthorize.php:485
+msgctxt "BUTTON"
msgid "Allow"
msgstr ""
-#: actions/apioauthauthorize.php:351
-msgid "Allow or deny access to your account information."
+#. TRANS: Form instructions.
+#: actions/apioauthauthorize.php:502
+msgid "Authorize access to your account information."
msgstr ""
-#: actions/apistatusesdestroy.php:112
+#. TRANS: Header for user notification after revoking OAuth access to an application.
+#: actions/apioauthauthorize.php:594
+msgid "Authorization canceled."
+msgstr ""
+
+#. TRANS: User notification after revoking OAuth access to an application.
+#. TRANS: %s is an OAuth token.
+#: actions/apioauthauthorize.php:598
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
+#: actions/apioauthauthorize.php:621
+msgid "You have successfully authorized the application"
+msgstr ""
+
+#. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
+#: actions/apioauthauthorize.php:625
+msgid ""
+"Please return to the application and enter the following security code to "
+"complete the process."
+msgstr ""
+
+#. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth.
+#. TRANS: %s is the authorised application name.
+#: actions/apioauthauthorize.php:632
+#, php-format
+msgid "You have successfully authorized %s"
+msgstr ""
+
+#. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth.
+#. TRANS: %s is the authorised application name.
+#: actions/apioauthauthorize.php:639
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete a status not using POST or DELETE.
+#. TRANS: POST and DELETE should not be translated.
+#: actions/apistatusesdestroy.php:111
msgid "This method requires a POST or DELETE."
msgstr ""
-#: actions/apistatusesdestroy.php:135
+#. TRANS: Client error displayed trying to delete a status of another user.
+#: actions/apistatusesdestroy.php:136
msgid "You may not delete another user's status."
msgstr ""
-#: actions/apistatusesretweet.php:76 actions/apistatusesretweets.php:72
-#: actions/deletenotice.php:52 actions/shownotice.php:92
+#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
+#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Error message displayed trying to delete a non-existing notice.
+#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
+#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
+#: actions/shownotice.php:92
msgid "No such notice."
msgstr "אין הודעה כזו."
-#: actions/apistatusesshow.php:145
+#. TRANS: Client error displayed trying to repeat an own notice through the API.
+#. TRANS: Error text shown when trying to repeat an own notice.
+#: actions/apistatusesretweet.php:83 lib/command.php:537
+#, fuzzy
+msgid "Cannot repeat your own notice."
+msgstr "לא ניתן להירשם ללא הסכמה לרשיון"
+
+#. TRANS: Client error displayed trying to re-repeat a notice through the API.
+#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user.
+#: actions/apistatusesretweet.php:92 lib/command.php:543
+#, fuzzy
+msgid "Already repeated that notice."
+msgstr "כבר נכנסת למערכת!"
+
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
+#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
+#: actions/atompubshowsubscription.php:122
+#: actions/atompubsubscriptionfeed.php:109
+msgid "HTTP method not supported."
+msgstr ""
+
+#: actions/apistatusesshow.php:141
+#, php-format
+msgid "Unsupported format: %s"
+msgstr ""
+
+#. TRANS: Client error displayed requesting a deleted status.
+#: actions/apistatusesshow.php:152
+#, fuzzy
+msgid "Status deleted."
+msgstr "התמונה עודכנה."
+
+#. TRANS: Client error displayed requesting a status with an invalid ID.
+#: actions/apistatusesshow.php:159
msgid "No status with that ID found."
msgstr ""
-#: actions/apistatusesupdate.php:222
+#: actions/apistatusesshow.php:223
+msgid "Can only delete using the Atom format."
+msgstr ""
+
+#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
+#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
+msgid "Can't delete this notice."
+msgstr ""
+
+#: actions/apistatusesshow.php:243
+#, php-format
+msgid "Deleted notice %d"
+msgstr ""
+
+#. TRANS: Client error displayed when the parameter "status" is missing.
+#: actions/apistatusesupdate.php:221
msgid "Client must provide a 'status' parameter with a value."
msgstr ""
-#: actions/apistatusesupdate.php:307 actions/newnotice.php:181
+#. TRANS: Client error displayed when the parameter "status" is missing.
+#. TRANS: %d is the maximum number of character for a notice.
+#: actions/apistatusesupdate.php:244 actions/newnotice.php:161
+#: lib/mailhandler.php:60
#, php-format
-msgid "Max notice size is %d chars, including attachment URL."
+msgid "That's too long. Maximum notice size is %d character."
+msgid_plural "That's too long. Maximum notice size is %d characters."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error displayed when replying to a non-existing notice.
+#: actions/apistatusesupdate.php:284
+msgid "Parent notice not found."
msgstr ""
+#. TRANS: Client error displayed exceeding the maximum notice length.
+#. TRANS: %d is the maximum lenth for a notice.
+#: actions/apistatusesupdate.php:308 actions/newnotice.php:184
+#, php-format
+msgid "Maximum notice size is %d character, including attachment URL."
+msgid_plural "Maximum notice size is %d characters, including attachment URL."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error displayed when requesting profiles of followers in an unsupported format.
+#. TRANS: Client error displayed when requesting IDs of followers in an unsupported format.
+#: actions/apisubscriptions.php:228 actions/apisubscriptions.php:258
+#, fuzzy
+msgid "Unsupported format."
+msgstr "פורמט התמונה אינו נתמך."
+
+#. TRANS: Title for timeline of most recent favourite notices by a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
+#: actions/apitimelinefavorites.php:108
+#, fuzzy, php-format
+msgid "%1$s / Favorites from %2$s"
+msgstr "הסטטוס של %1$s ב-%2$s "
+
+#. TRANS: Subtitle for timeline of most recent favourite notices by a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name,
+#. TRANS: %3$s is a user nickname.
+#: actions/apitimelinefavorites.php:120
+#, php-format
+msgid "%1$s updates favorited by %2$s / %3$s."
+msgstr ""
+
+#. TRANS: Server error displayed when generating an Atom feed fails.
+#. TRANS: %s is the error.
+#: actions/apitimelinegroup.php:134
+#, php-format
+msgid "Could not generate feed for group - %s"
+msgstr ""
+
+#. TRANS: Title for timeline of most recent mentions of a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
+#: actions/apitimelinementions.php:115
+#, fuzzy, php-format
+msgid "%1$s / Updates mentioning %2$s"
+msgstr "הסטטוס של %1$s ב-%2$s "
+
+#. TRANS: Subtitle for timeline of most recent mentions of a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname,
+#. TRANS: %3$s is a user's full name.
#: actions/apitimelinementions.php:131
#, php-format
msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
-#: actions/apitimelinepublic.php:202 actions/publicrss.php:105
+#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
+#, fuzzy, php-format
+msgid "%s public timeline"
+msgstr "קו זמן ציבורי"
+
+#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
+#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
#, php-format
msgid "%s updates from everyone!"
msgstr ""
-#: actions/apitimelinetag.php:105 actions/tag.php:67
+#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'.
+#: actions/apitimelineretweetedbyme.php:71
+msgid "Unimplemented."
+msgstr ""
+
+#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname.
+#: actions/apitimelineretweetedtome.php:108
+#, fuzzy, php-format
+msgid "Repeated to %s"
+msgstr "תגובת עבור %s"
+
+#. TRANS: Title of list of repeated notices of the logged in user.
+#. TRANS: %s is the nickname of the logged in user.
+#: actions/apitimelineretweetsofme.php:112
+#, fuzzy, php-format
+msgid "Repeats of %s"
+msgstr "תגובת עבור %s"
+
+#. TRANS: Title for timeline with lastest notices with a given tag.
+#. TRANS: %s is the tag.
+#: actions/apitimelinetag.php:101 actions/tag.php:67
#, php-format
msgid "Notices tagged with %s"
msgstr ""
+#. TRANS: Subtitle for timeline with lastest notices with a given tag.
+#. TRANS: %1$s is the tag, $2$s is the StatusNet sitename.
+#: actions/apitimelinetag.php:105 actions/tagrss.php:65
+#, fuzzy, php-format
+msgid "Updates tagged with %1$s on %2$s!"
+msgstr "מיקרובלוג מאת %s"
+
+#. TRANS: Client error displayed trying to add a notice to another user's timeline.
+#: actions/apitimelineuser.php:297
+msgid "Only the user can add to their own timeline."
+msgstr ""
+
+#. TRANS: Client error displayed when using another format than AtomPub.
+#: actions/apitimelineuser.php:304
+msgid "Only accept AtomPub for Atom feeds."
+msgstr ""
+
+#: actions/apitimelineuser.php:310
+msgid "Atom post must not be empty."
+msgstr ""
+
+#: actions/apitimelineuser.php:315
+msgid "Atom post must be well-formed XML."
+msgstr ""
+
+#. TRANS: Client error displayed when not using an Atom entry.
+#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
+#: actions/atompubmembershipfeed.php:228
+#: actions/atompubsubscriptionfeed.php:233
+msgid "Atom post must be an Atom entry."
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/apitimelineuser.php:334
+msgid "Can only handle POST activities."
+msgstr ""
+
+#. TRANS: Client error displayed when using an unsupported activity object type.
+#. TRANS: %s is the unsupported activity object type.
+#: actions/apitimelineuser.php:345
+#, php-format
+msgid "Cannot handle activity object type \"%s\"."
+msgstr ""
+
+#. TRANS: Client error displayed when posting a notice without content through the API.
+#: actions/apitimelineuser.php:378
+#, php-format
+msgid "No content for notice %d."
+msgstr ""
+
+#. TRANS: Client error displayed when using another format than AtomPub.
+#: actions/apitimelineuser.php:406
+#, php-format
+msgid "Notice with URI \"%s\" already exists."
+msgstr ""
+
+#: actions/apitimelineuser.php:437
+#, php-format
+msgid "AtomPub post with unknown attention URI %s"
+msgstr ""
+
+#. TRANS: Server error for unfinished API method showTrends.
+#: actions/apitrends.php:85
+#, fuzzy
+msgid "API method under construction."
+msgstr "קוד האישור לא נמצא."
+
+#. TRANS: Client error displayed when requesting user information for a non-existing user.
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
+msgid "User not found."
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:70
+msgid "No such profile"
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:145
+#, php-format
+msgid "Notices %s has favorited to on %s"
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+msgid "Can't add someone else's subscription"
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/atompubfavoritefeed.php:239
+msgid "Can only handle Favorite activities."
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+msgid "Can only fave notices."
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:256
+msgid "Unknown note."
+msgstr ""
+
+#: actions/atompubfavoritefeed.php:263
+msgid "Already a favorite."
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
+#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#, fuzzy
+msgid "No such profile."
+msgstr "אין הודעה כזו."
+
+#: actions/atompubmembershipfeed.php:144
+#, php-format
+msgid "%s group memberships"
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:147
+#, php-format
+msgid "Groups %s is a member of on %s"
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:217
+msgid "Can't add someone else's membership"
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/atompubmembershipfeed.php:241
+msgid "Can only handle Join activities."
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:256
+msgid "Unknown group."
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:263
+msgid "Already a member."
+msgstr ""
+
+#: actions/atompubmembershipfeed.php:270
+msgid "Blocked by admin."
+msgstr ""
+
+#: actions/atompubshowfavorite.php:89
+msgid "No such favorite."
+msgstr ""
+
+#: actions/atompubshowfavorite.php:151
+msgid "Can't delete someone else's favorite"
+msgstr ""
+
+#: actions/atompubshowmembership.php:81
+#, fuzzy
+msgid "No such group"
+msgstr "אין הודעה כזו."
+
+#: actions/atompubshowmembership.php:90
+msgid "Not a member"
+msgstr ""
+
+#: actions/atompubshowmembership.php:115
+msgid "Method not supported"
+msgstr ""
+
+#: actions/atompubshowmembership.php:150
+msgid "Can't delete someone else's membership"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
+#, php-format
+msgid "No such profile id: %d"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription"
+msgstr ""
+
+#: actions/atompubsubscriptionfeed.php:150
+#, php-format
+msgid "People %s has subscribed to on %s"
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/atompubsubscriptionfeed.php:246
+msgid "Can only handle Follow activities."
+msgstr ""
+
+#: actions/atompubsubscriptionfeed.php:253
+msgid "Can only follow people."
+msgstr ""
+
+#: actions/atompubsubscriptionfeed.php:262
+#, php-format
+msgid "Unknown profile %s"
+msgstr ""
+
+#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
msgstr "אין הודעה כזו."
-#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73
-#: actions/editgroup.php:84 actions/groupdesignsettings.php:84
+#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
+#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
+#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
+#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
+#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:121
+#: actions/grouprss.php:91 actions/showgroup.php:116
msgid "No nickname."
msgstr "אין כינוי"
-#: actions/avatarbynickname.php:64
+#. TRANS: Client error displayed trying to get an avatar without providing an avatar size.
+#: actions/avatarbynickname.php:66
msgid "No size."
msgstr "אין גודל."
-#: actions/avatarbynickname.php:69
+#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size.
+#: actions/avatarbynickname.php:72
msgid "Invalid size."
msgstr "גודל לא חוקי."
+#. TRANS: Title for avatar upload page.
+#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:67 actions/showgroup.php:230
-#: lib/accountsettingsaction.php:118
+#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "תמונה"
-#: actions/avatarsettings.php:119 actions/avatarsettings.php:197
+#. TRANS: Instruction for avatar upload page.
+#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
+#: actions/avatarsettings.php:78
+#, fuzzy, php-format
+msgid "You can upload your personal avatar. The maximum file size is %s."
+msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
+
+#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
+#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
+#: actions/userauthorization.php:72 actions/userrss.php:108
+#, fuzzy
+msgid "User without matching profile."
+msgstr "למשתמש אין פרופיל."
+
+#. TRANS: Avatar upload page form legend.
+#. TRANS: Avatar upload page crop form legend.
+#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
#: actions/grouplogo.php:254
msgid "Avatar settings"
msgstr "הגדרות הפרופיל"
-#: actions/avatarsettings.php:127 actions/avatarsettings.php:205
+#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
#: actions/grouplogo.php:202 actions/grouplogo.php:262
msgid "Original"
msgstr ""
-#: actions/avatarsettings.php:142 actions/avatarsettings.php:217
+#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
#: actions/grouplogo.php:213 actions/grouplogo.php:274
msgid "Preview"
msgstr ""
-#: actions/avatarsettings.php:166 actions/grouplogo.php:236
-msgid "Upload"
-msgstr "ההעלה"
+#. TRANS: Button on avatar upload page to delete current avatar.
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
+msgctxt "BUTTON"
+msgid "Delete"
+msgstr ""
-#: actions/avatarsettings.php:332
+#. TRANS: Button on avatar upload page to upload an avatar.
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
+msgctxt "BUTTON"
+msgid "Upload"
+msgstr ""
+
+#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar.
+#: actions/avatarsettings.php:243
+msgctxt "BUTTON"
+msgid "Crop"
+msgstr ""
+
+#. TRANS: Validation error on avatar upload form when no file was uploaded.
+#: actions/avatarsettings.php:318
+#, fuzzy
+msgid "No file uploaded."
+msgstr "העלאה חלקית."
+
+#. TRANS: Avatar upload form unstruction after uploading a file.
+#: actions/avatarsettings.php:346
msgid "Pick a square area of the image to be your avatar"
msgstr ""
-#: actions/avatarsettings.php:347 actions/grouplogo.php:380
+#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
+#: actions/avatarsettings.php:361 actions/grouplogo.php:380
msgid "Lost our file data."
msgstr ""
-#: actions/avatarsettings.php:370
+#. TRANS: Success message for having updated a user avatar.
+#: actions/avatarsettings.php:385
msgid "Avatar updated."
msgstr "התמונה עודכנה."
-#: actions/avatarsettings.php:373
+#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
+#: actions/avatarsettings.php:389
msgid "Failed updating avatar."
msgstr "עדכון התמונה נכשל."
-#: actions/block.php:69
+#. TRANS: Success message for deleting a user avatar.
+#: actions/avatarsettings.php:413
+#, fuzzy
+msgid "Avatar deleted."
+msgstr "התמונה עודכנה."
+
+#: actions/backupaccount.php:62 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#: actions/backupaccount.php:80
+msgid "Only logged-in users can backup their account."
+msgstr ""
+
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#: actions/backupaccount.php:232
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and "
+"provides an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#: actions/backupaccount.php:255
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr ""
+
+#: actions/backupaccount.php:258
+msgid "Backup your account"
+msgstr ""
+
+#. TRANS: Client error displayed when blocking a user that has already been blocked.
+#: actions/block.php:68
msgid "You already blocked that user."
msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר."
-#: actions/block.php:138
+#. TRANS: Title for block user page.
+#. TRANS: Legend for block user form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#, fuzzy
+msgid "Block user"
+msgstr "אין משתמש כזה."
+
+#. TRANS: Explanation of consequences when blocking a user on the block user page.
+#: actions/block.php:139
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:187
+#. TRANS: Button label on the user block form.
+#. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
+#. TRANS: Button label on the delete notice form.
+#. TRANS: Button label on the delete user form.
+#. TRANS: Button label on the form to block a user from a group.
+#: actions/block.php:154 actions/deleteapplication.php:157
+#: actions/deletegroup.php:220 actions/deletenotice.php:155
+#: actions/deleteuser.php:152 actions/groupblock.php:178
+#, fuzzy
+msgctxt "BUTTON"
+msgid "No"
+msgstr "לא"
+
+#. TRANS: Submit button title for 'No' when blocking a user.
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/block.php:158 actions/deleteuser.php:156
+#, fuzzy
+msgid "Do not block this user"
+msgstr "אין משתמש כזה."
+
+#. TRANS: Button label on the user block form.
+#. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
+#. TRANS: Button label on the delete notice form.
+#. TRANS: Button label on the delete user form.
+#. TRANS: Button label on the form to block a user from a group.
+#: actions/block.php:161 actions/deleteapplication.php:164
+#: actions/deletegroup.php:227 actions/deletenotice.php:162
+#: actions/deleteuser.php:159 actions/groupblock.php:185
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Yes"
+msgstr "כן"
+
+#. TRANS: Submit button title for 'Yes' when blocking a user.
+#. TRANS: Description of the form to block a user.
+#: actions/block.php:165 lib/blockform.php:79
+#, fuzzy
+msgid "Block this user"
+msgstr "אין משתמש כזה."
+
+#. TRANS: Server error displayed when blocking a user fails.
+#: actions/block.php:189
msgid "Failed to save block information."
msgstr ""
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
#. TRANS: Command exception text shown when a group is requested that does not exist.
#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87
-#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62
+#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
+#: actions/deletegroup.php:87 actions/deletegroup.php:100
+#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
#: actions/groupmembers.php:83 actions/groupmembers.php:90
#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:86 actions/joingroup.php:82
+#: actions/groupunblock.php:88 actions/joingroup.php:82
#: actions/joingroup.php:93 actions/leavegroup.php:82
#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:170
-#: lib/command.php:383
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
msgid "No such group."
msgstr "אין משתמש כזה."
-#: actions/blockedfromgroup.php:115
+#. TRANS: Title for first page with list of users blocked from a group.
+#. TRANS: %s is a group nickname.
+#: actions/blockedfromgroup.php:101
+#, fuzzy, php-format
+msgid "%s blocked profiles"
+msgstr "למשתמש אין פרופיל."
+
+#. TRANS: Title for any but the first page with list of users blocked from a group.
+#. TRANS: %1$s is a group nickname, %2$d is a page number.
+#: actions/blockedfromgroup.php:106
+#, fuzzy, php-format
+msgid "%1$s blocked profiles, page %2$d"
+msgstr "%s וחברים"
+
+#. TRANS: Instructions for list of users blocked from a group.
+#: actions/blockedfromgroup.php:122
msgid "A list of the users blocked from joining this group."
msgstr ""
-#. TRANS: Title for the form to unblock a user.
-#: actions/blockedfromgroup.php:320 lib/unblockform.php:70
+#. TRANS: Form legend for unblocking a user from a group.
+#: actions/blockedfromgroup.php:291
+#, fuzzy
+msgid "Unblock user from group"
+msgstr "אין משתמש כזה."
+
+#. TRANS: Button text for unblocking a user from a group.
+#: actions/blockedfromgroup.php:323
+msgctxt "BUTTON"
msgid "Unblock"
msgstr ""
-#: actions/confirmaddress.php:75
+#. TRANS: Tooltip for button for unblocking a user from a group.
+#. TRANS: Description of the form to unblock a user.
+#: actions/blockedfromgroup.php:327 lib/unblockform.php:78
+#, fuzzy
+msgid "Unblock this user"
+msgstr "אין משתמש כזה."
+
+#. TRANS: Title for mini-posting window loaded from bookmarklet.
+#. TRANS: %s is the StatusNet site name.
+#: actions/bookmarklet.php:51
+#, fuzzy, php-format
+msgid "Post to %s"
+msgstr "תגובת עבור %s"
+
+#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action.
+#: actions/confirmaddress.php:74
msgid "No confirmation code."
msgstr "אין קוד אישור."
+#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action.
#: actions/confirmaddress.php:80
msgid "Confirmation code not found."
msgstr "קוד האישור לא נמצא."
-#: actions/confirmaddress.php:85
+#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action.
+#: actions/confirmaddress.php:86
msgid "That confirmation code is not for you!"
msgstr "קוד האישור הזה אינו מיועד לך!"
-#. TRANS: Client error for an already confirmed email/jabbel/sms address.
-#: actions/confirmaddress.php:96
+#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'.
+#: actions/confirmaddress.php:92
+#, fuzzy, php-format
+msgid "Unrecognized address type %s."
+msgstr "סוג לא מזוהה של כתובת %s"
+
+#. TRANS: Client error for an already confirmed email/jabber/sms address.
+#: actions/confirmaddress.php:97
msgid "That address has already been confirmed."
msgstr "כתובת זו כבר אושרה."
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
#. TRANS: Server error thrown on database error updating e-mail preferences.
#. TRANS: Server error thrown on database error removing a registered e-mail address.
#. TRANS: Server error thrown on database error updating IM preferences.
#. TRANS: Server error thrown on database error removing a registered IM address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
#. TRANS: Server error thrown on database error updating SMS preferences.
#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:116 actions/emailsettings.php:331
-#: actions/emailsettings.php:477 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:174
-#: actions/profilesettings.php:283 actions/smssettings.php:308
+#: actions/confirmaddress.php:118 actions/emailsettings.php:359
+#: actions/emailsettings.php:508 actions/imsettings.php:283
+#: actions/imsettings.php:442 actions/othersettings.php:184
+#: actions/profilesettings.php:326 actions/smssettings.php:308
#: actions/smssettings.php:464
msgid "Couldn't update user."
msgstr "עידכון המשתמש נכשל."
-#: actions/confirmaddress.php:146
+#. TRANS: Server error displayed when an address confirmation code deletion from the
+#. TRANS: database fails in the contact address confirmation action.
+#: actions/confirmaddress.php:132
+msgid "Could not delete address confirmation."
+msgstr ""
+
+#. TRANS: Title for the contact address confirmation action.
+#: actions/confirmaddress.php:150
msgid "Confirm address"
msgstr "אשר"
-#: actions/confirmaddress.php:161
+#. TRANS: Success message for the contact address confirmation action.
+#. TRANS: %s can be 'email', 'jabber', or 'sms'.
+#: actions/confirmaddress.php:166
#, php-format
msgid "The address \"%s\" has been confirmed for your account."
msgstr "הכתובת \"%s\" אושרה עבור חשבונך."
-#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
+#. TRANS: Title for page with a conversion (multiple notices in context).
+#: actions/conversation.php:96
+#, fuzzy
+msgid "Conversation"
+msgstr "מיקום"
+
+#. TRANS: Header on conversation page. Hidden by default (h2).
+#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
#: lib/profileaction.php:229 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "הודעות"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr ""
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr ""
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:474
+msgid "Delete account"
+msgstr ""
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:239 actions/register.php:441
+msgid "Confirm"
+msgstr "אשר"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr ""
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete an application while not logged in.
+#: actions/deleteapplication.php:62
+#, fuzzy
+msgid "You must be logged in to delete an application."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Client error displayed trying to delete an application that does not exist.
#: actions/deleteapplication.php:71
msgid "Application not found."
msgstr "קוד האישור לא נמצא."
+#. TRANS: Client error displayed trying to delete an application the current user does not own.
+#. TRANS: Client error displayed trying to edit an application while not being its owner.
+#: actions/deleteapplication.php:79 actions/editapplication.php:78
+#: actions/showapplication.php:94
+#, fuzzy
+msgid "You are not the owner of this application."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
#. TRANS: Client error text when there is a problem with the session token.
-#: actions/deleteapplication.php:102 actions/editapplication.php:127
-#: actions/newapplication.php:110 actions/showapplication.php:118
-#: lib/action.php:1315
+#: actions/deleteapplication.php:102 actions/editapplication.php:131
+#: actions/newapplication.php:114 actions/showapplication.php:118
+#: lib/action.php:1409
msgid "There was a problem with your session token."
msgstr ""
-#: actions/deleteapplication.php:149
+#. TRANS: Title for delete application page.
+#. TRANS: Fieldset legend on delete application page.
+#: actions/deleteapplication.php:124 actions/deleteapplication.php:149
+#, fuzzy
+msgid "Delete application"
+msgstr "אין הודעה כזו."
+
+#. TRANS: Confirmation text on delete application page.
+#: actions/deleteapplication.php:152
msgid ""
"Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user "
"connections."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting an application.
+#: actions/deleteapplication.php:161
+#, fuzzy
+msgid "Do not delete this application"
+msgstr "אין הודעה כזו."
+
+#. TRANS: Submit button title for 'Yes' when deleting an application.
+#: actions/deleteapplication.php:167
+#, fuzzy
+msgid "Delete this application"
+msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות"
+
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
+msgid "You must be logged in to delete a group."
+msgstr ""
+
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#: actions/deletegroup.php:94 actions/joingroup.php:88
+#: actions/leavegroup.php:88
+#, fuzzy
+msgid "No nickname or ID."
+msgstr "אין כינוי"
+
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
+msgid "You are not allowed to delete this group."
+msgstr ""
+
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
+#, php-format
+msgid "Could not delete group %s."
+msgstr ""
+
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
+#, php-format
+msgid "Deleted group %s"
+msgstr ""
+
+#. TRANS: Title of delete group page.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
+msgid "Delete group"
+msgstr ""
+
+#. TRANS: Warning in form for deleleting a group.
+#: actions/deletegroup.php:206
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:224
+msgid "Do not delete this group"
+msgstr ""
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:231
+msgid "Delete this group"
+msgstr ""
+
+#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying a change a subscription while not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
-#: 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:96
+#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
+#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "לא מחובר."
-#: actions/deletenotice.php:71
-msgid "Can't delete this notice."
-msgstr ""
-
-#: actions/deletenotice.php:103
+#. TRANS: Instructions for deleting a notice.
+#: actions/deletenotice.php:110
msgid ""
"You are about to permanently delete a notice. Once this is done, it cannot "
"be undone."
msgstr ""
-#: actions/deletenotice.php:144
+#. TRANS: Page title when deleting a notice.
+#. TRANS: Fieldset legend for the delete notice form.
+#: actions/deletenotice.php:117 actions/deletenotice.php:148
+#, fuzzy
+msgid "Delete notice"
+msgstr "הודעה חדשה"
+
+#. TRANS: Message for the delete notice form.
+#: actions/deletenotice.php:152
msgid "Are you sure you want to delete this notice?"
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting a notice.
+#: actions/deletenotice.php:159
+#, fuzzy
+msgid "Do not delete this notice"
+msgstr "אין הודעה כזו."
+
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:158 lib/noticelist.php:657
+#: actions/deletenotice.php:166 lib/noticelist.php:673
msgid "Delete this notice"
msgstr ""
+#: actions/deleteuser.php:67
+#, fuzzy
+msgid "You cannot delete users."
+msgstr "עידכון המשתמש נכשל."
+
+#: actions/deleteuser.php:74
+#, fuzzy
+msgid "You can only delete local users."
+msgstr "ניתן להשתמש במנוי המקומי!"
+
+#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#, fuzzy
+msgid "Delete user"
+msgstr "מחק"
+
#: actions/deleteuser.php:136
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+#. TRANS: Submit button title for 'Yes' when deleting a user.
+#: actions/deleteuser.php:163 lib/deleteuserform.php:77
+#, fuzzy
+msgid "Delete this user"
+msgstr "אין משתמש כזה."
+
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:139
+#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
msgid "Design"
msgstr ""
#: actions/designadminpanel.php:74
-msgid "Design settings for this StatusNet site."
+msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:426
+#: actions/designadminpanel.php:335
+#, fuzzy
+msgid "Invalid logo URL."
+msgstr "גודל לא חוקי."
+
+#: actions/designadminpanel.php:340
+msgid "Invalid SSL logo URL."
+msgstr ""
+
+#: actions/designadminpanel.php:344
+#, fuzzy, php-format
+msgid "Theme not available: %s."
+msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
+
+#: actions/designadminpanel.php:448
msgid "Change logo"
msgstr "שנה"
-#: actions/designadminpanel.php:461
+#: actions/designadminpanel.php:453
+#, fuzzy
+msgid "Site logo"
+msgstr "הודעה חדשה"
+
+#: actions/designadminpanel.php:457
+msgid "SSL logo"
+msgstr ""
+
+#: actions/designadminpanel.php:469
+#, fuzzy
+msgid "Change theme"
+msgstr "שנה"
+
+#: actions/designadminpanel.php:486
+#, fuzzy
+msgid "Site theme"
+msgstr "הודעה חדשה"
+
+#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr ""
-#: actions/designadminpanel.php:471
+#: actions/designadminpanel.php:493
+#, fuzzy
+msgid "Custom theme"
+msgstr "הודעה חדשה"
+
+#: actions/designadminpanel.php:497
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
-#: actions/designadminpanel.php:486 lib/designsettings.php:101
+#. TRANS: Fieldset legend on profile design page.
+#: actions/designadminpanel.php:512 lib/designsettings.php:98
msgid "Change background image"
msgstr ""
-#: actions/designadminpanel.php:491 actions/designadminpanel.php:574
-#: lib/designsettings.php:178
+#. TRANS: Label on profile design page for setting a profile page background colour.
+#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: lib/designsettings.php:183
msgid "Background"
msgstr ""
+#: actions/designadminpanel.php:522
+#, fuzzy, php-format
+msgid ""
+"You can upload a background image for the site. The maximum file size is %1"
+"$s."
+msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
+
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:527 lib/designsettings.php:139
+#: actions/designadminpanel.php:553
msgid "On"
msgstr ""
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:544 lib/designsettings.php:155
+#: actions/designadminpanel.php:570
msgid "Off"
msgstr ""
-#: actions/designadminpanel.php:545 lib/designsettings.php:156
+#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
+#. TRANS: use of the uploaded profile image.
+#: actions/designadminpanel.php:571 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr ""
-#: actions/designadminpanel.php:550 lib/designsettings.php:161
+#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
+#: actions/designadminpanel.php:576 lib/designsettings.php:165
msgid "Tile background image"
msgstr ""
-#: actions/designadminpanel.php:613 lib/designsettings.php:217
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: actions/designadminpanel.php:590 lib/designsettings.php:175
+#, fuzzy
+msgid "Change colours"
+msgstr "שנה סיסמה"
+
+#. TRANS: Label on profile design page for setting a profile page content colour.
+#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#, fuzzy
+msgid "Content"
+msgstr "התחבר"
+
+#. TRANS: Label on profile design page for setting a profile page sidebar colour.
+#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#, fuzzy
+msgid "Sidebar"
+msgstr "חיפוש"
+
+#. TRANS: Label on profile design page for setting a profile page text colour.
+#: actions/designadminpanel.php:639 lib/designsettings.php:225
msgid "Text"
msgstr "טקסט"
-#: actions/designadminpanel.php:651
+#. TRANS: Label on profile design page for setting a profile page links colour.
+#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#, fuzzy
+msgid "Links"
+msgstr "היכנס"
+
+#: actions/designadminpanel.php:677
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:655
+#: actions/designadminpanel.php:681
msgid "Custom CSS"
msgstr ""
-#: actions/designadminpanel.php:676 lib/designsettings.php:247
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: actions/designadminpanel.php:702 lib/designsettings.php:257
msgid "Use defaults"
msgstr ""
-#: actions/designadminpanel.php:677 lib/designsettings.php:248
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: actions/designadminpanel.php:703 lib/designsettings.php:259
msgid "Restore default designs"
msgstr ""
-#: actions/designadminpanel.php:683 lib/designsettings.php:254
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: actions/designadminpanel.php:709 lib/designsettings.php:267
msgid "Reset back to default"
msgstr ""
#. TRANS: Submit button title.
-#: actions/designadminpanel.php:685 actions/othersettings.php:126
-#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174
+#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/sitenoticeadminpanel.php:195 actions/snapshotadminpanel.php:245
-#: actions/subscriptions.php:226 actions/tagother.php:154
-#: actions/useradminpanel.php:294 lib/applicationeditform.php:353
-#: lib/designsettings.php:256 lib/groupeditform.php:202
+#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
+#: lib/applicationeditform.php:357
msgid "Save"
msgstr "שמור"
-#: actions/designadminpanel.php:686 lib/designsettings.php:257
+#. TRANS: Title for button on profile design page to save settings.
+#: actions/designadminpanel.php:712 lib/designsettings.php:272
msgid "Save design"
msgstr ""
@@ -731,75 +2095,154 @@ msgstr ""
msgid "This notice is not a favorite!"
msgstr ""
+#: actions/disfavor.php:94
+#, fuzzy
+msgid "Add to favorites"
+msgstr "מועדפים"
+
#: actions/doc.php:158
#, php-format
msgid "No such document \"%s\""
msgstr "אין הודעה כזו."
+#. TRANS: Title for "Edit application" form.
+#. TRANS: Form legend.
+#: actions/editapplication.php:54 lib/applicationeditform.php:129
+msgid "Edit application"
+msgstr ""
+
+#. TRANS: Client error displayed trying to edit an application while not logged in.
#: actions/editapplication.php:66
msgid "You must be logged in to edit an application."
msgstr ""
-#: actions/editapplication.php:161
+#. TRANS: Client error displayed trying to edit an application that does not exist.
+#: actions/editapplication.php:83 actions/showapplication.php:87
+#, fuzzy
+msgid "No such application."
+msgstr "אין הודעה כזו."
+
+#. TRANS: Instructions for "Edit application" form.
+#: actions/editapplication.php:167
msgid "Use this form to edit your application."
msgstr ""
-#: actions/editapplication.php:177 actions/newapplication.php:159
+#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:163
msgid "Name is required."
msgstr ""
-#: actions/editapplication.php:186 actions/newapplication.php:168
+#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:169
+msgid "Name is too long (maximum 255 characters)."
+msgstr ""
+
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:166
+#, fuzzy
+msgid "Name already in use. Try another one."
+msgstr "כינוי זה כבר תפוס. נסה כינוי אחר."
+
+#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:172
msgid "Description is required."
msgstr "ההרשמה נדחתה"
-#: actions/editapplication.php:194
+#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
+#: actions/editapplication.php:208
msgid "Source URL is too long."
msgstr ""
-#: actions/editapplication.php:203 actions/newapplication.php:188
+#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
+#: actions/editapplication.php:215 actions/newapplication.php:193
+#, fuzzy
+msgid "Source URL is not valid."
+msgstr "לאתר הבית יש כתובת לא חוקית."
+
+#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
+#: actions/editapplication.php:219 actions/newapplication.php:196
msgid "Organization is required."
msgstr ""
-#: actions/editapplication.php:209 actions/newapplication.php:194
+#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
+#: actions/editapplication.php:223 actions/newapplication.php:199
+msgid "Organization is too long (maximum 255 characters)."
+msgstr ""
+
+#: actions/editapplication.php:226 actions/newapplication.php:202
msgid "Organization homepage is required."
msgstr ""
-#: actions/editapplication.php:218 actions/newapplication.php:206
+#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
+#: actions/editapplication.php:237 actions/newapplication.php:214
msgid "Callback is too long."
msgstr ""
-#: actions/editapplication.php:225 actions/newapplication.php:215
+#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
+#: actions/editapplication.php:245 actions/newapplication.php:223
msgid "Callback URL is not valid."
msgstr ""
-#: actions/editgroup.php:56
+#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
+#: actions/editapplication.php:282
+#, fuzzy
+msgid "Could not update application."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Title for form to edit a group. %s is a group nickname.
+#: actions/editgroup.php:55
#, php-format
msgid "Edit %s group"
msgstr ""
+#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed trying to create a group while not logged in.
#: 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:107 actions/editgroup.php:172
+#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#: actions/editgroup.php:110 actions/editgroup.php:176
#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
msgid "You must be an admin to edit the group."
msgstr ""
-#: actions/editgroup.php:158
+#. TRANS: Form instructions for group edit form.
+#: actions/editgroup.php:161
msgid "Use this form to edit the group."
msgstr ""
-#: actions/editgroup.php:205 actions/newgroup.php:145
-#, php-format
-msgid "description is too long (max %d chars)."
-msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)."
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#: actions/editgroup.php:239 actions/newgroup.php:186
+#, fuzzy, php-format
+msgid "Invalid alias: \"%s\""
+msgstr "כתובת אתר הבית '%s' אינה חוקית"
+#. TRANS: Server error displayed when editing a group fails.
+#: actions/editgroup.php:272
+#, fuzzy
+msgid "Could not update group."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:264 classes/User_group.php:514
+#: actions/editgroup.php:279 classes/User_group.php:534
msgid "Could not create aliases."
msgstr "עידכון המשתמש נכשל."
+#. TRANS: Group edit form success message.
+#: actions/editgroup.php:296
+#, fuzzy
+msgid "Options saved."
+msgstr "ההגדרות נשמרו."
+
+#. TRANS: Title for e-mail settings.
+#: actions/emailsettings.php:61
+#, fuzzy
+msgid "Email settings"
+msgstr "הגדרות הפרופיל"
+
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
#: actions/emailsettings.php:76
@@ -807,117 +2250,245 @@ msgstr "עידכון המשתמש נכשל."
msgid "Manage how you get email from %%site.name%%."
msgstr ""
+#. TRANS: Form legend for e-mail settings form.
+#. TRANS: Field label for e-mail address input in e-mail settings form.
+#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#, fuzzy
+msgid "Email address"
+msgstr "כתובת מסרים מידיים"
+
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:113
+#, fuzzy
+msgid "Current confirmed email address."
+msgstr "כתובת מאושרת נוכחית של Jabber/GTalk."
+
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
#. TRANS: Button label to remove a confirmed IM address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:115 actions/emailsettings.php:162
+#: actions/emailsettings.php:116 actions/emailsettings.php:183
#: actions/imsettings.php:116 actions/smssettings.php:124
#: actions/smssettings.php:180
msgctxt "BUTTON"
msgid "Remove"
msgstr "שיחזור"
+#: actions/emailsettings.php:123
+#, fuzzy
+msgid ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+msgstr ""
+"מחכה לאישור כתובת זו. בדוק את חשבון ה-Jabber/GTalk שלך לקבלת מסר עם הוראות "
+"נוספותץ (האם הוספת את %s לרשימת החברים שלך?)"
+
#. TRANS: Instructions for e-mail address input form. Do not translate
#. TRANS: "example.org". It is one of the domain names reserved for
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:139
+#: actions/emailsettings.php:140
msgid "Email address, like \"UserName@example.org\""
msgstr ""
+#. TRANS: Button label for adding an e-mail address in e-mail settings form.
+#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding a SMS phone number in SMS settings form.
+#: actions/emailsettings.php:144 actions/imsettings.php:151
+#: actions/smssettings.php:162
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Add"
+msgstr "הוסף"
+
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:151 actions/smssettings.php:171
+#: actions/emailsettings.php:152 actions/smssettings.php:171
msgid "Incoming email"
msgstr ""
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:158
+msgid "I want to post notices by email."
+msgstr ""
+
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:159 actions/smssettings.php:178
+#: actions/emailsettings.php:180 actions/smssettings.php:178
msgid "Send email to this address to post new notices."
msgstr ""
-#. TRANS: Instructions for incoming e-mail address input form.
+#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:168 actions/smssettings.php:186
+#: actions/emailsettings.php:189 actions/smssettings.php:186
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
+#. TRANS: Instructions for incoming e-mail address input form.
+#: actions/emailsettings.php:193
+msgid ""
+"To send notices via email, we need to create a unique email address for you "
+"on this server:"
+msgstr ""
+
+#. TRANS: Button label for adding an e-mail address to send notices from.
+#. TRANS: Button label for adding an SMS e-mail address to send notices from.
+#: actions/emailsettings.php:199 actions/smssettings.php:189
+#, fuzzy
+msgctxt "BUTTON"
+msgid "New"
+msgstr "חדש"
+
+#. TRANS: Form legend for e-mail preferences form.
+#: actions/emailsettings.php:208
+#, fuzzy
+msgid "Email preferences"
+msgstr "העדפות"
+
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:190
+#: actions/emailsettings.php:216
+#, fuzzy
+msgid "Send me notices of new subscriptions through email."
+msgstr "שלח לי הודעות דרך Jabber/GTalk."
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:222
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:197
+#: actions/emailsettings.php:229
msgid "Send me email when someone sends me a private message."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:203
+#: actions/emailsettings.php:235
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:209
+#: actions/emailsettings.php:241
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
-msgid "I want to post notices by email."
-msgstr ""
-
-#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:223
+#: actions/emailsettings.php:247
msgid "Publish a MicroID for my email address."
msgstr ""
+#. TRANS: Confirmation message for successful e-mail preferences save.
+#: actions/emailsettings.php:368
+#, fuzzy
+msgid "Email preferences saved."
+msgstr "העדפות נשמרו."
+
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:357
+#: actions/emailsettings.php:388
msgid "No email address."
msgstr ""
+#. TRANS: Message given saving e-mail address that cannot be normalised.
+#: actions/emailsettings.php:396
+#, fuzzy
+msgid "Cannot normalize that email address"
+msgstr "לא ניתן לנרמל את זהות ה-Jabber הזה"
+
+#. TRANS: Message given saving e-mail address that not valid.
+#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/siteadminpanel.php:144
+#, fuzzy
+msgid "Not a valid email address."
+msgstr "שם משתמש לא חוקי."
+
+#. TRANS: Message given saving e-mail address that is already set.
+#: actions/emailsettings.php:405
+#, fuzzy
+msgid "That is already your email address."
+msgstr "זהו כבר זיהוי ה-Jabber שלך."
+
+#. TRANS: Message given saving e-mail address that is already set for another user.
+#: actions/emailsettings.php:409
+#, fuzzy
+msgid "That email address already belongs to another user."
+msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר."
+
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
#. TRANS: Server error thrown on database error adding IM confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:395 actions/imsettings.php:351
+#: actions/emailsettings.php:426 actions/imsettings.php:351
#: actions/smssettings.php:373
msgid "Couldn't insert confirmation code."
msgstr "הכנסת קוד האישור נכשלה."
+#. TRANS: Message given saving valid e-mail address that is to be confirmed.
+#: actions/emailsettings.php:433
+#, fuzzy
+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 לשליחת מסרים "
+"מידיים אליך."
+
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
#. TRANS: Message given canceling IM address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:423 actions/imsettings.php:386
+#: actions/emailsettings.php:454 actions/imsettings.php:386
#: actions/smssettings.php:408
msgid "No pending confirmation to cancel."
msgstr "אין אישור ממתין שניתן לבטל."
+#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
+#: actions/emailsettings.php:459
+#, fuzzy
+msgid "That is the wrong email address."
+msgstr "זוהי כתובת מסרים מידיים שגויה."
+
+#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
+#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
+#: actions/emailsettings.php:468 actions/smssettings.php:422
+#, fuzzy
+msgid "Couldn't delete email confirmation."
+msgstr "הכנסת קוד האישור נכשלה."
+
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:442
+#: actions/emailsettings.php:473
msgid "Email confirmation cancelled."
msgstr "אין אישור ממתין שניתן לבטל."
+#. TRANS: Message given trying to remove an e-mail address that is not
+#. TRANS: registered for the active user.
+#: actions/emailsettings.php:493
+#, fuzzy
+msgid "That is not your email address."
+msgstr "זוהי כתובת מסרים מידיים שגויה."
+
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:483
+#: actions/emailsettings.php:514
msgid "The email address was removed."
msgstr "כתובת זו כבר אושרה."
-#: actions/emailsettings.php:497 actions/smssettings.php:568
+#: actions/emailsettings.php:528 actions/smssettings.php:568
msgid "No incoming email address."
msgstr ""
+#. TRANS: Server error thrown on database error removing incoming e-mail address.
+#. TRANS: Server error thrown on database error adding incoming e-mail address.
+#: actions/emailsettings.php:540 actions/emailsettings.php:565
+#: actions/smssettings.php:578 actions/smssettings.php:602
+#, fuzzy
+msgid "Couldn't update user record."
+msgstr "עידכון המשתמש נכשל."
+
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:512 actions/smssettings.php:581
+#: actions/emailsettings.php:544 actions/smssettings.php:581
msgid "Incoming email address removed."
msgstr ""
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:536 actions/smssettings.php:605
+#: actions/emailsettings.php:569 actions/smssettings.php:605
msgid "New incoming email address added."
msgstr ""
@@ -925,10 +2496,21 @@ msgstr ""
msgid "This notice is already a favorite!"
msgstr ""
-#: actions/favor.php:92 lib/disfavorform.php:140
+#: actions/favor.php:92 lib/disfavorform.php:144
msgid "Disfavor favorite"
msgstr ""
+#: actions/favorited.php:65 lib/popularnoticesection.php:62
+#: lib/publicgroupnav.php:93
+#, fuzzy
+msgid "Popular notices"
+msgstr "אין הודעה כזו."
+
+#: actions/favorited.php:67
+#, fuzzy, php-format
+msgid "Popular notices, page %d"
+msgstr "אין הודעה כזו."
+
#: actions/favorited.php:79
msgid "The most popular notices on the site right now."
msgstr ""
@@ -951,11 +2533,16 @@ msgid ""
msgstr ""
#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:115
+#: lib/personalgroupnav.php:118
#, 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 "מיקרובלוג מאת %s"
+
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
@@ -979,10 +2566,25 @@ msgstr "אין הודעה כזו."
msgid "No notice."
msgstr "אין הודעה כזו."
+#: actions/file.php:42
+#, fuzzy
+msgid "No attachments."
+msgstr "אין מסמך כזה."
+
+#: actions/file.php:51
+#, fuzzy
+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 "ניתן להשתמש במנוי המקומי!"
@@ -995,27 +2597,66 @@ msgstr ""
msgid "You are not authorized."
msgstr "ההרשמה אושרה"
+#: actions/finishremotesubscribe.php:113
+#, fuzzy
+msgid "Could not convert request token to access token."
+msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליחה."
+
+#: actions/finishremotesubscribe.php:118
+#, fuzzy
+msgid "Remote service uses unknown version of OMB protocol."
+msgstr "גירסה לא מוכרת של פרוטוקול OMB"
+
+#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#, fuzzy
+msgid "Error updating remote profile."
+msgstr "שגיאה בעדכון פרופיל מרוחק"
+
+#: actions/getfile.php:79
+#, fuzzy
+msgid "No such file."
+msgstr "אין הודעה כזו."
+
#: actions/getfile.php:83
msgid "Cannot read file."
msgstr "שמירת הפרופיל נכשלה."
+#: actions/grantrole.php:62 actions/revokerole.php:62
+#, fuzzy
+msgid "Invalid role."
+msgstr "גודל לא חוקי."
+
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
+#: actions/grantrole.php:75
+#, fuzzy
+msgid "You cannot grant user roles on this site."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
+#: actions/grantrole.php:82
+#, fuzzy
+msgid "User already has this role."
+msgstr "למשתמש אין פרופיל."
+
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
+#. TRANS: Client error displayed trying a change a subscription without providing a profile.
#: actions/groupblock.php:71 actions/groupunblock.php:71
-#: actions/makeadmin.php:71 actions/subedit.php:46
+#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr ""
-#: actions/groupblock.php:76 actions/groupunblock.php:76
-#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
+#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
+#: actions/groupblock.php:76 actions/groupunblock.php:77
+#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
#: actions/unsubscribe.php:84 lib/profileformaction.php:86
msgid "No profile with that ID."
msgstr ""
-#: actions/groupblock.php:81 actions/groupunblock.php:81
+#: actions/groupblock.php:81 actions/groupunblock.php:82
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr ""
@@ -1024,6 +2665,21 @@ msgstr ""
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:134 actions/groupmembers.php:364
+#, fuzzy
+msgid "Block user from group"
+msgstr "אין משתמש כזה."
+
#: actions/groupblock.php:160
#, php-format
msgid ""
@@ -1032,6 +2688,18 @@ msgid ""
"the group in the future."
msgstr ""
+#. TRANS: Submit button title for 'No' when blocking a user from a group.
+#: actions/groupblock.php:182
+#, fuzzy
+msgid "Do not block this user from this group"
+msgstr "נכשלה ההפניה לשרת: %s"
+
+#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
+#: actions/groupblock.php:189
+#, fuzzy
+msgid "Block this user from this group"
+msgstr "אין משתמש כזה."
+
#: actions/groupblock.php:206
msgid "Database error blocking user from group."
msgstr ""
@@ -1044,16 +2712,64 @@ msgstr "אין זיהוי Jabber כזה."
msgid "You must be logged in to edit a group."
msgstr ""
+#: actions/groupdesignsettings.php:144
+#, fuzzy
+msgid "Group design"
+msgstr "קבוצות"
+
#: actions/groupdesignsettings.php:155
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
+#: lib/designsettings.php:405 lib/designsettings.php:427
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "עידכון המשתמש נכשל."
+
+#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#, fuzzy
+msgid "Design preferences saved."
+msgstr "העדפות נשמרו."
+
+#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#, fuzzy
+msgid "Group logo"
+msgstr "קבוצות"
+
+#: actions/grouplogo.php:153
+#, fuzzy, php-format
+msgid ""
+"You can upload a logo image for your group. The maximum file size is %s."
+msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
+
+#: actions/grouplogo.php:236
+msgid "Upload"
+msgstr "העלאה"
+
+#: actions/grouplogo.php:289
+#, fuzzy
+msgid "Crop"
+msgstr "קבוצות"
+
#: actions/grouplogo.php:365
msgid "Pick a square area of the image to be the logo."
msgstr ""
+#: actions/grouplogo.php:399
+#, fuzzy
+msgid "Logo updated."
+msgstr "התמונה עודכנה."
+
+#: actions/grouplogo.php:401
+#, fuzzy
+msgid "Failed updating logo."
+msgstr "עדכון התמונה נכשל."
+
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
#: actions/groupmembers.php:102
@@ -1082,6 +2798,12 @@ msgctxt "BUTTON"
msgid "Block"
msgstr ""
+#. TRANS: Submit button title.
+#: actions/groupmembers.php:403
+msgctxt "TOOLTIP"
+msgid "Block this user"
+msgstr ""
+
#: actions/groupmembers.php:498
msgid "Make user an admin of the group"
msgstr ""
@@ -1098,6 +2820,12 @@ msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
+#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
+#: actions/grouprss.php:142
+#, fuzzy, php-format
+msgid "Updates from members of %1$s on %2$s!"
+msgstr "מיקרובלוג מאת %s"
+
#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups"
@@ -1118,6 +2846,31 @@ msgid ""
"%%%%)"
msgstr ""
+#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#, fuzzy
+msgid "Create a new group"
+msgstr "צור חשבון חדש"
+
+#: 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%% לפי שם, מיקום, או תחומי עניין. הפרד בעזרת רווחים "
+"בין הביטויים; עליהם להיות בני לפחות 3 אותיות."
+
+#: actions/groupsearch.php:58
+#, fuzzy
+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 ""
@@ -1132,10 +2885,23 @@ msgid ""
"action.newgroup%%) yourself!"
msgstr ""
-#: actions/groupunblock.php:91
+#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
+#: actions/groupunblock.php:94
msgid "Only an admin can unblock group members."
msgstr ""
+#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
+#: actions/groupunblock.php:99
+#, fuzzy
+msgid "User is not blocked from group."
+msgstr "למשתמש אין פרופיל."
+
+#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
+#: actions/groupunblock.php:131 actions/unblock.php:86
+#, fuzzy
+msgid "Error removing the block."
+msgstr "שגיאה בשמירת המשתמש."
+
#. TRANS: Title for instance messaging settings.
#: actions/imsettings.php:60
msgid "IM settings"
@@ -1153,6 +2919,19 @@ msgstr ""
"אפשר לשלוח ולקבל בודעות דרך Jabber/GTalk [instant messages](%%doc.im%%) הגדר "
"את כתובתך והעדפותיך למטה."
+#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:94
+#, fuzzy
+msgid "IM is not available."
+msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
+
+#. TRANS: Form legend for IM settings form.
+#. TRANS: Field label for IM address input in IM settings form.
+#: actions/imsettings.php:106 actions/imsettings.php:136
+#, fuzzy
+msgid "IM address"
+msgstr "כתובת מסרים מידיים"
+
#: actions/imsettings.php:113
msgid "Current confirmed Jabber/GTalk address."
msgstr "כתובת מאושרת נוכחית של Jabber/GTalk."
@@ -1197,8 +2976,20 @@ msgstr "שלח לי הודעות דרך Jabber/GTalk."
msgid "Post a notice when my Jabber/GTalk status changes."
msgstr "פרסם הודעה כששורת הסטטוס שלי ב-Jabber/GTalk מתעדכנת."
+#. TRANS: Checkbox label in IM preferences form.
+#: actions/imsettings.php:175
+#, fuzzy
+msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+msgstr "שלח לי הודעות דרך Jabber/GTalk."
+
+#. TRANS: Checkbox label in IM preferences form.
+#: actions/imsettings.php:182
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/GTalk address."
+msgstr "כתובת מאושרת נוכחית של Jabber/GTalk."
+
#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:180
+#: actions/imsettings.php:290 actions/othersettings.php:190
msgid "Preferences saved."
msgstr "העדפות נשמרו."
@@ -1243,6 +3034,12 @@ msgstr ""
msgid "That is the wrong IM address."
msgstr "זוהי כתובת מסרים מידיים שגויה."
+#. TRANS: Server error thrown on database error canceling IM address confirmation.
+#: actions/imsettings.php:400
+#, fuzzy
+msgid "Couldn't delete IM confirmation."
+msgstr "הכנסת קוד האישור נכשלה."
+
#. TRANS: Message given after successfully canceling IM address confirmation.
#: actions/imsettings.php:405
msgid "IM confirmation cancelled."
@@ -1254,6 +3051,12 @@ msgstr "אין קוד אישור."
msgid "That is not your Jabber ID."
msgstr "זהו לא זיהוי ה-Jabber שלך."
+#. TRANS: Message given after successfully removing a registered IM address.
+#: actions/imsettings.php:450
+#, fuzzy
+msgid "The IM address was removed."
+msgstr "הכתובת הוסרה."
+
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
@@ -1268,64 +3071,128 @@ msgstr ""
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
-#: actions/invite.php:39
+#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
+#: actions/invite.php:40
msgid "Invites have been disabled."
msgstr ""
-#: actions/invite.php:72
+#. TRANS: Client error displayed when trying to sent invites while not logged in.
+#. TRANS: %s is the StatusNet site name.
+#: actions/invite.php:44
+#, fuzzy, php-format
+msgid "You must be logged in to invite other users to use %s."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Form validation message when providing an e-mail address that does not validate.
+#. TRANS: %s is an invalid e-mail address.
+#: actions/invite.php:77
#, php-format
-msgid "Invalid email address: %s"
+msgid "Invalid email address: %s."
msgstr ""
-#: actions/invite.php:110
-msgid "Invitation(s) sent"
+#. TRANS: Page title when invitations have been sent.
+#: actions/invite.php:116
+msgid "Invitations sent"
msgstr ""
-#: actions/invite.php:112
+#. TRANS: Page title when inviting potential users.
+#: actions/invite.php:119
msgid "Invite new users"
msgstr ""
-#. TRANS: Whois output.
-#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
-#: actions/invite.php:131 actions/invite.php:139 lib/command.php:430
+#. TRANS: Message displayed inviting users to use a StatusNet site while the inviting user
+#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
+#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
+#. TRANS: Followed by a bullet list.
+#: actions/invite.php:139
+msgid "You are already subscribed to this user:"
+msgid_plural "You are already subscribed to these users:"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
+#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
+#: actions/invite.php:145 actions/invite.php:159
#, php-format
+msgctxt "INVITE"
msgid "%1$s (%2$s)"
msgstr ""
-#: actions/invite.php:136
-msgid ""
+#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
+#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
+#. TRANS: reported already present people. Followed by a bullet list.
+#: actions/invite.php:153
+msgid "This person is already a user and you were automatically subscribed:"
+msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
-msgstr ""
+msgstr[0] ""
+msgstr[1] ""
-#: actions/invite.php:144
-msgid "Invitation(s) sent to the following people:"
-msgstr ""
+#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
+#. TRANS: based on the number of invitations sent. Followed by a bullet list of
+#. TRANS: e-mail addresses to which invitations were sent.
+#: actions/invite.php:167
+msgid "Invitation sent to the following person:"
+msgid_plural "Invitations sent to the following people:"
+msgstr[0] ""
+msgstr[1] ""
-#: actions/invite.php:150
+#. TRANS: Generic message displayed after sending out one or more invitations to
+#. TRANS: people to join a StatusNet site.
+#: actions/invite.php:177
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
+#. TRANS: Form instructions.
+#: actions/invite.php:190
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
-#: actions/invite.php:187
+#. TRANS: Field label for a list of e-mail addresses.
+#: actions/invite.php:217
msgid "Email addresses"
msgstr ""
-#: actions/invite.php:189
+#. TRANS: Tooltip for field label for a list of e-mail addresses.
+#: actions/invite.php:220
msgid "Addresses of friends to invite (one per line)"
msgstr ""
-#: actions/invite.php:194
+#. TRANS: Field label for a personal message to send to invitees.
+#: actions/invite.php:224
+#, fuzzy
+msgid "Personal message"
+msgstr "הודעה חדשה"
+
+#. TRANS: Tooltip for field label for a personal message to send to invitees.
+#: actions/invite.php:227
msgid "Optionally add a personal message to the invitation."
msgstr ""
-#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral singular 3rd-person pronoun in English.
+#. TRANS: Send button for inviting friends
#: actions/invite.php:231
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Send"
+msgstr "שלח"
+
+#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
+#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
+#. TRANS: the StatusNet sitename.
+#: actions/invite.php:263
+#, fuzzy, php-format
+msgid "%1$s has invited you to join them on %2$s"
+msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s"
+
+#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral
+#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, %2$s is the
+#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
+#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
+#. TRANS: to register with the StatusNet site.
+#: actions/invite.php:270
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -1369,6 +3236,122 @@ msgstr ""
msgid "You must be logged in to leave a group."
msgstr ""
+#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
+#: actions/leavegroup.php:100 lib/command.php:386
+#, fuzzy
+msgid "You are not a member of that group."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
+#: actions/leavegroup.php:137
+#, fuzzy, php-format
+msgid "%1$s left group %2$s"
+msgstr "הסטטוס של %1$s ב-%2$s "
+
+#. TRANS: User admin panel title
+#: actions/licenseadminpanel.php:56
+msgctxt "TITLE"
+msgid "License"
+msgstr ""
+
+#: actions/licenseadminpanel.php:67
+msgid "License for this StatusNet site"
+msgstr ""
+
+#: actions/licenseadminpanel.php:139
+msgid "Invalid license selection."
+msgstr ""
+
+#: actions/licenseadminpanel.php:149
+msgid ""
+"You must specify the owner of the content when using the All Rights Reserved "
+"license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:156
+msgid "Invalid license title. Maximum length is 255 characters."
+msgstr ""
+
+#: actions/licenseadminpanel.php:168
+msgid "Invalid license URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:171
+msgid "Invalid license image URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:179
+msgid "License URL must be blank or a valid URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:187
+msgid "License image must be blank or valid URL."
+msgstr ""
+
+#: actions/licenseadminpanel.php:239
+msgid "License selection"
+msgstr ""
+
+#: actions/licenseadminpanel.php:245
+#, fuzzy
+msgid "Private"
+msgstr "פרטיות"
+
+#: actions/licenseadminpanel.php:246
+msgid "All Rights Reserved"
+msgstr ""
+
+#: actions/licenseadminpanel.php:247
+msgid "Creative Commons"
+msgstr ""
+
+#: actions/licenseadminpanel.php:252
+msgid "Type"
+msgstr ""
+
+#: actions/licenseadminpanel.php:254
+msgid "Select license"
+msgstr ""
+
+#: actions/licenseadminpanel.php:268
+msgid "License details"
+msgstr ""
+
+#: actions/licenseadminpanel.php:274
+msgid "Owner"
+msgstr ""
+
+#: actions/licenseadminpanel.php:275
+msgid "Name of the owner of the site's content (if applicable)."
+msgstr ""
+
+#: actions/licenseadminpanel.php:283
+msgid "License Title"
+msgstr ""
+
+#: actions/licenseadminpanel.php:284
+msgid "The title of the license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:292
+msgid "License URL"
+msgstr ""
+
+#: actions/licenseadminpanel.php:293
+msgid "URL for more information about the license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:300
+msgid "License Image URL"
+msgstr ""
+
+#: actions/licenseadminpanel.php:301
+msgid "URL for an image to display with the license."
+msgstr ""
+
+#: actions/licenseadminpanel.php:319
+msgid "Save license settings"
+msgstr ""
+
#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
msgid "Already logged in."
msgstr "כבר מחובר."
@@ -1377,6 +3360,11 @@ msgstr "כבר מחובר."
msgid "Incorrect username or password."
msgstr "שם משתמש או סיסמה לא נכונים."
+#: actions/login.php:154 actions/otp.php:120
+#, fuzzy
+msgid "Error setting user. You are probably not authorized."
+msgstr "לא מורשה."
+
#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
msgid "Login"
msgstr "היכנס"
@@ -1385,11 +3373,11 @@ msgstr "היכנס"
msgid "Login to site"
msgstr ""
-#: actions/login.php:258 actions/register.php:485
+#: actions/login.php:258 actions/register.php:491
msgid "Remember me"
msgstr "זכור אותי"
-#: actions/login.php:259 actions/register.php:487
+#: actions/login.php:259 actions/register.php:493
msgid "Automatically login in the future; not for shared computers!"
msgstr "בעתיד התחבר אוטומטית; לא לשימוש במחשבים ציבוריים!"
@@ -1407,63 +3395,115 @@ msgstr "לצרכי אבטחה, הכנס מחדש את שם המשתמש והסי
msgid "Login with your username and password."
msgstr "שם משתמש או סיסמה לא נכונים."
+#: actions/login.php:295
+#, fuzzy, php-format
+msgid ""
+"Don't have a username yet? [Register](%%action.register%%) a new account."
+msgstr ""
+"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action."
+"register%%) לחשבון "
+
#: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin."
msgstr ""
-#: actions/newapplication.php:64
+#: actions/makeadmin.php:96
+#, fuzzy, php-format
+msgid "%1$s is already an admin for group \"%2$s\"."
+msgstr "למשתמש אין פרופיל."
+
+#: actions/makeadmin.php:133
+#, fuzzy, php-format
+msgid "Can't get membership record for %1$s in group %2$s."
+msgstr "נכשלה יצירת OpenID מתוך: %s"
+
+#: actions/makeadmin.php:146
+#, fuzzy, php-format
+msgid "Can't make %1$s an admin for group %2$s."
+msgstr "למשתמש אין פרופיל."
+
+#: actions/microsummary.php:69
+#, fuzzy
+msgid "No current status."
+msgstr "אין תוצאות"
+
+#. TRANS: This is the title of the form for adding a new application.
+#: actions/newapplication.php:52
+msgid "New application"
+msgstr ""
+
+#. TRANS: Client error displayed trying to add a new application while not logged in.
+#: actions/newapplication.php:65
msgid "You must be logged in to register an application."
msgstr ""
-#: actions/newapplication.php:143
+#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr ""
-#: actions/newapplication.php:176
+#: actions/newapplication.php:184
msgid "Source URL is required."
msgstr ""
-#: actions/newapplication.php:258 actions/newapplication.php:267
+#: actions/newapplication.php:266 actions/newapplication.php:275
msgid "Could not create application."
msgstr "שמירת הפרופיל נכשלה."
+#. TRANS: Title for form to create a group.
#: actions/newgroup.php:53
msgid "New group"
msgstr ""
-#: actions/newgroup.php:110
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr ""
+
+#. TRANS: Form instructions for group create form.
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr ""
-#: actions/newmessage.php:71 actions/newmessage.php:231
+#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "הודעה חדשה"
+#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other).
+#: actions/newmessage.php:121 actions/newmessage.php:164 lib/command.php:501
+#, fuzzy
+msgid "You can't send a message to this user."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
#. TRANS: Command exception text shown when trying to send a direct message to another user without content.
#. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply.
-#: actions/newmessage.php:144 actions/newnotice.php:138 lib/command.php:481
-#: lib/command.php:582
+#: actions/newmessage.php:144 actions/newnotice.php:140 lib/command.php:478
+#: lib/command.php:581
msgid "No content!"
msgstr "אין תוכן!"
-#: actions/newmessage.php:158
+#: actions/newmessage.php:161
msgid "No recipient specified."
msgstr ""
#. TRANS: Error text shown when trying to send a direct message to self.
-#: actions/newmessage.php:164 lib/command.php:506
+#: actions/newmessage.php:167 lib/command.php:505
msgid ""
"Don't send a message to yourself; just say it to yourself quietly instead."
msgstr ""
+#: actions/newmessage.php:184
+#, fuzzy
+msgid "Message sent"
+msgstr "הודעה חדשה"
+
#. TRANS: Message given have sent a direct message to another user.
#. TRANS: %s is the name of the other user.
-#: actions/newmessage.php:185 lib/command.php:514
+#: actions/newmessage.php:188 lib/command.php:513
#, php-format
msgid "Direct message to %s sent."
msgstr ""
-#: actions/newmessage.php:210 actions/newnotice.php:261 lib/channel.php:189
+#: actions/newmessage.php:213 actions/newnotice.php:264
msgid "Ajax Error"
msgstr ""
@@ -1471,6 +3511,11 @@ msgstr ""
msgid "New notice"
msgstr "הודעה חדשה"
+#: actions/newnotice.php:230
+#, fuzzy
+msgid "Notice posted"
+msgstr "הודעות"
+
#: actions/noticesearch.php:68
#, php-format
msgid ""
@@ -1484,6 +3529,11 @@ msgstr ""
msgid "Text search"
msgstr "חיפוש טקסט"
+#: actions/noticesearch.php:91
+#, fuzzy, php-format
+msgid "Search results for \"%1$s\" on %2$s"
+msgstr "חיפוש ברצף אחרי \"%s\""
+
#: actions/noticesearch.php:121
#, php-format
msgid ""
@@ -1498,9 +3548,20 @@ msgid ""
"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!"
msgstr ""
+#: actions/noticesearchrss.php:96
+#, fuzzy, php-format
+msgid "Updates with \"%s\""
+msgstr "מיקרובלוג מאת %s"
+
+#: actions/noticesearchrss.php:98
+#, 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 their email yet."
+"This user doesn't allow nudges or hasn't confirmed or set their email "
+"address yet."
msgstr ""
#: actions/nudge.php:94
@@ -1511,91 +3572,172 @@ msgstr ""
msgid "Nudge sent!"
msgstr ""
-#: actions/oauthappssettings.php:59
+#. TRANS: Message displayed to an anonymous user trying to view OAuth application list.
+#: actions/oauthappssettings.php:60
msgid "You must be logged in to list your applications."
msgstr ""
-#: actions/oauthappssettings.php:74
+#. TRANS: Page title for OAuth applications
+#: actions/oauthappssettings.php:76
msgid "OAuth applications"
msgstr ""
-#: actions/oauthappssettings.php:85
+#. TRANS: Page instructions for OAuth applications
+#: actions/oauthappssettings.php:88
msgid "Applications you have registered"
msgstr ""
-#: actions/oauthappssettings.php:135
+#. TRANS: Empty list message on page with OAuth applications.
+#: actions/oauthappssettings.php:141
#, php-format
msgid "You have not registered any applications yet."
msgstr ""
-#: actions/oauthconnectionssettings.php:72
+#. TRANS: Title for OAuth connection settings.
+#: actions/oauthconnectionssettings.php:71
msgid "Connected applications"
msgstr ""
+#. TRANS: Instructions for OAuth connection settings.
#: actions/oauthconnectionssettings.php:83
-msgid "You have allowed the following applications to access you account."
+msgid "The following connections exist for your account."
msgstr ""
-#: actions/oauthconnectionssettings.php:186
+#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
+#: actions/oauthconnectionssettings.php:168
+#, fuzzy
+msgid "You are not a user of that application."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
+#. TRANS: Client error when revoking access has failed for some reason.
+#. TRANS: %s is the application ID revoking access failed for.
+#: actions/oauthconnectionssettings.php:183
#, php-format
-msgid "Unable to revoke access for app: %s."
+msgid "Unable to revoke access for application: %s."
msgstr ""
-#: actions/oauthconnectionssettings.php:198
+#. TRANS: Success message after revoking access for an application.
+#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
+#: actions/oauthconnectionssettings.php:202
+#, php-format
+msgid ""
+"You have successfully revoked access for %1$s and the access token starting "
+"with %2$s."
+msgstr ""
+
+#. TRANS: Empty list message when no applications have been authorised yet.
+#: actions/oauthconnectionssettings.php:213
msgid "You have not authorized any applications to use your account."
msgstr ""
-#: actions/oauthconnectionssettings.php:211
-msgid "Developers can edit the registration settings for their applications "
+#. TRANS: Note for developers in the OAuth connection settings form.
+#. TRANS: This message contains a Markdown link. Do not separate "](".
+#. TRANS: %s is the URL to the OAuth settings.
+#: actions/oauthconnectionssettings.php:233
+#, php-format
+msgid ""
+"Are you a developer? [Register an OAuth client application](%s) to use with "
+"this instance of StatusNet."
msgstr ""
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "למשתמש אין פרופיל."
-#: actions/oembed.php:87 actions/shownotice.php:175
+#: actions/oembed.php:83 actions/shownotice.php:172
#, php-format
msgid "%1$s's status on %2$s"
msgstr "הסטטוס של %1$s ב-%2$s "
+#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
+#: actions/oembed.php:168
+#, fuzzy, php-format
+msgid "Content type %s not supported."
+msgstr "התחבר"
+
#. TRANS: Error message displaying attachments. %s is the site's base URL.
-#: actions/oembed.php:163
+#: actions/oembed.php:172
#, php-format
msgid "Only %s URLs over plain HTTP please."
msgstr ""
+#. TRANS: Client error on an API request with an unsupported data format.
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
+#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#, fuzzy
+msgid "Not a supported data format."
+msgstr "פורמט התמונה אינו נתמך."
+
#: actions/opensearch.php:64
msgid "People Search"
msgstr "חיפוש אנשים"
-#: actions/othersettings.php:60
+#: actions/opensearch.php:67
+#, fuzzy
+msgid "Notice Search"
+msgstr "חיפוש אנשים"
+
+#: actions/othersettings.php:59
msgid "Other settings"
msgstr "הגדרות הפרופיל"
+#. TRANS: Instructions for tab "Other" in user profile settings.
#: actions/othersettings.php:71
msgid "Manage various other options."
msgstr ""
-#: actions/othersettings.php:108
+#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
+#. TRANS: user's profile settings. This message has one space at the beginning. Use your
+#. TRANS: language's word separator here if it has one (most likely a single space).
+#: actions/othersettings.php:111
msgid " (free service)"
msgstr ""
-#: actions/othersettings.php:116
+#. TRANS: Label for dropdown with URL shortener services.
+#: actions/othersettings.php:120
msgid "Shorten URLs with"
msgstr ""
-#: actions/othersettings.php:117
+#. TRANS: Tooltip for for dropdown with URL shortener services.
+#: actions/othersettings.php:122
msgid "Automatic shortening service to use."
msgstr ""
-#: actions/othersettings.php:123
+#. TRANS: Label for checkbox.
+#: actions/othersettings.php:128
+#, fuzzy
+msgid "View profile designs"
+msgstr "הגדרות הפרופיל"
+
+#. TRANS: Tooltip for checkbox.
+#: actions/othersettings.php:130
msgid "Show or hide profile designs."
msgstr ""
+#. TRANS: Form validation error for form "Other settings" in user profile.
+#: actions/othersettings.php:162
+msgid "URL shortening service is too long (maximum 50 characters)."
+msgstr ""
+
+#: actions/otp.php:69
+#, fuzzy
+msgid "No user ID specified."
+msgstr "הודעה חדשה"
+
+#: actions/otp.php:83
+#, fuzzy
+msgid "No login token specified."
+msgstr "הודעה חדשה"
+
#: actions/otp.php:90
msgid "No login token requested."
msgstr "לא התבקש אישור!"
+#: actions/otp.php:95
+#, fuzzy
+msgid "Invalid login token specified."
+msgstr "תוכן ההודעה לא חוקי"
+
#: actions/otp.php:104
msgid "Login token expired."
msgstr ""
@@ -1618,6 +3760,16 @@ msgstr ""
msgid "Change password"
msgstr "שנה סיסמה"
+#: actions/passwordsettings.php:69
+#, fuzzy
+msgid "Change your password."
+msgstr "שנה סיסמה"
+
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#, fuzzy
+msgid "Password change"
+msgstr "הסיסמה נשמרה."
+
#: actions/passwordsettings.php:104
msgid "Old password"
msgstr "סיסמה ישנה"
@@ -1630,11 +3782,6 @@ msgstr "סיסמה חדשה"
msgid "6 or more characters"
msgstr "לפחות 6 אותיות"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:440
-msgid "Confirm"
-msgstr "אשר"
-
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
msgid "Same as password above"
msgstr "זהה לסיסמה למעלה"
@@ -1643,7 +3790,12 @@ msgstr "זהה לסיסמה למעלה"
msgid "Change"
msgstr "שנה"
-#: actions/passwordsettings.php:157 actions/register.php:240
+#: actions/passwordsettings.php:154 actions/register.php:238
+#, fuzzy
+msgid "Password must be 6 or more characters."
+msgstr "הסיסמה חייבת להיות בת לפחות 6 אותיות."
+
+#: actions/passwordsettings.php:157 actions/register.php:241
msgid "Passwords don't match."
msgstr "הסיסמאות לא תואמות."
@@ -1663,99 +3815,285 @@ msgstr "לא ניתן לשמור את הסיסמה"
msgid "Password saved."
msgstr "הסיסמה נשמרה."
+#. TRANS: Title for Paths admin panel.
#. TRANS: Menu item for site administration
-#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:371
+#: actions/pathsadminpanel.php:58 lib/adminpanelaction.php:371
msgid "Paths"
msgstr ""
-#: actions/pathsadminpanel.php:70
-msgid "Path and server settings for this StatusNet site."
+#. TRANS: Form instructions for Path admin panel.
+#: actions/pathsadminpanel.php:69
+msgid "Path and server settings for this StatusNet site"
msgstr ""
-#: actions/pathsadminpanel.php:183
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the directory that could not be read from.
+#: actions/pathsadminpanel.php:155
+#, fuzzy, php-format
+msgid "Theme directory not readable: %s."
+msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the avatar directory that could not be written to.
+#: actions/pathsadminpanel.php:163
+#, fuzzy, php-format
+msgid "Avatar directory not writable: %s."
+msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the background directory that could not be written to.
+#: actions/pathsadminpanel.php:171
+#, fuzzy, php-format
+msgid "Background directory not writable: %s."
+msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the locales directory that could not be read from.
+#: actions/pathsadminpanel.php:181
+#, fuzzy, php-format
+msgid "Locales directory not readable: %s."
+msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the SSL server URL that is too long.
+#: actions/pathsadminpanel.php:189
msgid "Invalid SSL server. The maximum length is 255 characters."
msgstr ""
-#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
msgid "Site"
msgstr ""
-#: actions/pathsadminpanel.php:238
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:241 actions/pathsadminpanel.php:279
+#: actions/pathsadminpanel.php:370 actions/pathsadminpanel.php:425
+#, fuzzy
+msgid "Server"
+msgstr "שיחזור"
+
+#: actions/pathsadminpanel.php:242
msgid "Site's server hostname."
msgstr ""
-#: actions/pathsadminpanel.php:242
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:248 actions/pathsadminpanel.php:288
+#: actions/pathsadminpanel.php:379 actions/pathsadminpanel.php:434
msgid "Path"
msgstr ""
-#: actions/pathsadminpanel.php:246
-msgid "Path to locales"
+#: actions/pathsadminpanel.php:249
+msgid "Site path."
msgstr ""
-#: actions/pathsadminpanel.php:246
-msgid "Directory path to locales"
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:255
+msgid "Locale directory"
msgstr ""
-#: actions/pathsadminpanel.php:250
+#: actions/pathsadminpanel.php:256
+msgid "Directory path to locales."
+msgstr ""
+
+#. TRANS: Checkbox label in Paths admin panel.
+#: actions/pathsadminpanel.php:263
msgid "Fancy URLs"
msgstr ""
-#: actions/pathsadminpanel.php:252
+#: actions/pathsadminpanel.php:265
msgid "Use fancy (more readable and memorable) URLs?"
msgstr ""
-#: actions/pathsadminpanel.php:259
+#: actions/pathsadminpanel.php:272
msgid "Theme"
msgstr ""
-#: actions/pathsadminpanel.php:264
-msgid "Theme server"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:281
+msgid "Server for themes."
msgstr ""
-#: actions/pathsadminpanel.php:268
-msgid "Theme path"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:290
+msgid "Web path to themes."
msgstr ""
-#: actions/pathsadminpanel.php:272
-msgid "Theme directory"
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:297 actions/pathsadminpanel.php:388
+#: actions/pathsadminpanel.php:443 actions/pathsadminpanel.php:495
+#, fuzzy
+msgid "SSL server"
+msgstr "שיחזור"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:299
+msgid "SSL server for themes (default: SSL server)."
msgstr ""
-#: actions/pathsadminpanel.php:284
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:306 actions/pathsadminpanel.php:397
+#: actions/pathsadminpanel.php:452
+msgid "SSL path"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:308
+msgid "SSL path to themes (default: /theme/)."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:315 actions/pathsadminpanel.php:406
+#: actions/pathsadminpanel.php:461
+msgid "Directory"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:317
+msgid "Directory where themes are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:326
+#, fuzzy
+msgid "Avatars"
+msgstr "תמונה"
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:333
msgid "Avatar server"
msgstr "תמונה"
-#: actions/pathsadminpanel.php:301
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:335
+msgid "Server for avatars."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:342
+#, fuzzy
+msgid "Avatar path"
+msgstr "התמונה עודכנה."
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:344
+msgid "Web path to avatars."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:351
+#, fuzzy
+msgid "Avatar directory"
+msgstr "התמונה עודכנה."
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:353
+msgid "Directory where avatars are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:364
msgid "Backgrounds"
msgstr ""
-#: actions/pathsadminpanel.php:305
-msgid "Background server"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:372
+msgid "Server for backgrounds."
msgstr ""
-#: actions/pathsadminpanel.php:309
-msgid "Background path"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:381
+msgid "Web path to backgrounds."
msgstr ""
-#: actions/pathsadminpanel.php:313
-msgid "Background directory"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:390
+msgid "Server for backgrounds on SSL pages."
msgstr ""
-#: actions/pathsadminpanel.php:325
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:399
+msgid "Web path to backgrounds on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:408
+msgid "Directory where backgrounds are located."
+msgstr ""
+
+#. TRANS: Fieldset legens in Paths admin panel.
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+msgid "Attachments"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:427
+msgid "Server for attachments."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:436
+msgid "Web path to attachments."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:445
+msgid "Server for attachments on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:454
+msgid "Web path to attachments on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:463
+msgid "Directory where attachments are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:472
+#, fuzzy
+msgid "SSL"
+msgstr "סמס"
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:477 actions/snapshotadminpanel.php:202
+#, fuzzy
+msgid "Never"
+msgstr "שיחזור"
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:479
+#, fuzzy
+msgid "Sometimes"
+msgstr "הודעות"
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:481
msgid "Always"
msgstr ""
-#: actions/pathsadminpanel.php:329
+#: actions/pathsadminpanel.php:485
msgid "Use SSL"
msgstr ""
-#: actions/pathsadminpanel.php:330
-msgid "When to use SSL"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:487
+msgid "When to use SSL."
msgstr ""
-#: actions/pathsadminpanel.php:336
-msgid "Server to direct SSL requests to"
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:497
+msgid "Server to direct SSL requests to."
msgstr ""
+#. TRANS: Button title text to store form data in the Paths admin panel.
+#: actions/pathsadminpanel.php:514
+#, fuzzy
+msgid "Save paths"
+msgstr "הודעה חדשה"
+
#: actions/peoplesearch.php:52
#, php-format
msgid ""
@@ -1769,6 +4107,16 @@ msgstr ""
msgid "People search"
msgstr "חיפוש סיסמה"
+#: actions/peopletag.php:68
+#, fuzzy, php-format
+msgid "Not a valid people tag: %s."
+msgstr "לא עומד בכללים ל-OpenID."
+
+#: actions/peopletag.php:142
+#, fuzzy, php-format
+msgid "Users self-tagged with %1$s - page %2$d"
+msgstr "מיקרובלוג מאת %s"
+
#: actions/postnotice.php:95
msgid "Invalid notice content."
msgstr "גודל לא חוקי."
@@ -1778,122 +4126,223 @@ msgstr "גודל לא חוקי."
msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’."
msgstr ""
-#: actions/profilesettings.php:60
+#. TRANS: Page title for profile settings.
+#: actions/profilesettings.php:61
msgid "Profile settings"
msgstr "הגדרות הפרופיל"
-#: actions/profilesettings.php:71
+#. TRANS: Usage instructions for profile settings.
+#: actions/profilesettings.php:73
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr "עדכן את הפרופיל האישי שלך כאן, על מנת שאנשים יוכלו לדעת עליך יותר."
-#: actions/profilesettings.php:99
+#. TRANS: Profile settings form legend.
+#: actions/profilesettings.php:102
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 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים."
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:113
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
+msgstr ""
-#: actions/profilesettings.php:111 actions/register.php:455
-#: actions/showgroup.php:256 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:150
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for full group name (dt). Text hidden by default.
+#: actions/profilesettings.php:117 actions/register.php:456
+#: actions/showgroup.php:252 actions/tagother.php:104
+#: lib/groupeditform.php:157 lib/userprofile.php:152
msgid "Full name"
msgstr "שם מלא"
+#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:115 actions/register.php:460
-#: lib/applicationeditform.php:235 lib/groupeditform.php:161
+#: actions/profilesettings.php:122 actions/register.php:461
+#: lib/applicationeditform.php:236 lib/groupeditform.php:161
msgid "Homepage"
msgstr "אתר בית"
-#: actions/profilesettings.php:117 actions/register.php:462
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר "
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:125
+msgid "URL of your homepage, blog, or profile on another site."
+msgstr ""
-#: actions/profilesettings.php:127 actions/register.php:473
+#. TRANS: Tooltip for field label in form for profile settings. Plural
+#. TRANS: is decided by the number of characters available for the
+#. TRANS: biography (%d).
+#: actions/profilesettings.php:133 actions/register.php:472
+#, php-format
+msgid "Describe yourself and your interests in %d character"
+msgid_plural "Describe yourself and your interests in %d characters"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:139 actions/register.php:477
+#, fuzzy
+msgid "Describe yourself and your interests"
+msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות"
+
+#. TRANS: Text area label in form for profile settings where users can provide.
+#. TRANS: their biography.
+#: actions/profilesettings.php:143 actions/register.php:479
msgid "Bio"
msgstr "ביוגרפיה"
-#: actions/profilesettings.php:132 actions/register.php:478
-#: actions/showgroup.php:265 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:177
-#: lib/userprofile.php:165
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for group location (dt). Text hidden by default.
+#: actions/profilesettings.php:149 actions/register.php:484
+#: actions/showgroup.php:262 actions/tagother.php:112
+#: actions/userauthorization.php:166 lib/groupeditform.php:180
+#: lib/userprofile.php:167
msgid "Location"
msgstr "מיקום"
-#: actions/profilesettings.php:134 actions/register.php:480
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:152 actions/register.php:486
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\""
-#: actions/profilesettings.php:138
+#. TRANS: Checkbox label in form for profile settings.
+#: actions/profilesettings.php:157
msgid "Share my current location when posting notices"
msgstr ""
-#: actions/profilesettings.php:145 actions/tagother.php:149
+#. TRANS: Field label in form for profile settings.
+#: actions/profilesettings.php:165 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:210
+#: lib/subscriptionlist.php:108 lib/userprofile.php:212
msgid "Tags"
msgstr ""
-#: actions/profilesettings.php:147
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:168
msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr ""
-#: actions/profilesettings.php:151
+#. TRANS: Dropdownlist label in form for profile settings.
+#: actions/profilesettings.php:173
msgid "Language"
msgstr "שפה"
-#: actions/profilesettings.php:152
+#. TRANS: Tooltip for dropdown list label in form for profile settings.
+#: actions/profilesettings.php:175
msgid "Preferred language"
msgstr ""
-#: actions/profilesettings.php:161
+#. TRANS: Dropdownlist label in form for profile settings.
+#: actions/profilesettings.php:185
msgid "Timezone"
msgstr ""
-#: actions/profilesettings.php:162
+#. TRANS: Tooltip for dropdown list label in form for profile settings.
+#: actions/profilesettings.php:187
msgid "What timezone are you normally in?"
msgstr ""
-#: actions/profilesettings.php:167
+#. TRANS: Checkbox label in form for profile settings.
+#: actions/profilesettings.php:193
msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr ""
-#: actions/profilesettings.php:228 actions/register.php:230
+#. TRANS: Validation error in form for profile settings.
+#. TRANS: Plural form is used based on the maximum number of allowed
+#. TRANS: characters for the biography (%d).
+#: actions/profilesettings.php:262 actions/register.php:229
#, php-format
-msgid "Bio is too long (max %d chars)."
-msgstr "שם המיקום ארוך מידי (מותר עד %d אותיות)."
+msgid "Bio is too long (maximum %d character)."
+msgid_plural "Bio is too long (maximum %d characters)."
+msgstr[0] ""
+msgstr[1] ""
-#: actions/profilesettings.php:235 actions/siteadminpanel.php:151
+#. TRANS: Validation error in form for profile settings.
+#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr ""
-#: actions/profilesettings.php:253 actions/tagother.php:178
+#. TRANS: Validation error in form for profile settings.
+#: actions/profilesettings.php:281
+msgid "Language is too long (maximum 50 characters)."
+msgstr ""
+
+#. TRANS: Validation error in form for profile settings.
+#. TRANS: %s is an invalid tag.
+#: actions/profilesettings.php:295 actions/tagother.php:178
#, php-format
msgid "Invalid tag: \"%s\""
msgstr "גודל לא חוקי."
-#: actions/profilesettings.php:375
+#. TRANS: Server error thrown when user profile settings could not be updated to
+#. TRANS: automatically subscribe to any subscriber.
+#: actions/profilesettings.php:351
+#, fuzzy
+msgid "Couldn't update user for autosubscribe."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Server error thrown when user profile location preference settings could not be updated.
+#: actions/profilesettings.php:409
+#, fuzzy
+msgid "Couldn't save location prefs."
+msgstr "שמירת הפרופיל נכשלה."
+
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/profilesettings.php:422
msgid "Couldn't save profile."
msgstr "שמירת הפרופיל נכשלה."
+#. TRANS: Server error thrown when user profile settings tags could not be saved.
+#: actions/profilesettings.php:431
+#, fuzzy
+msgid "Couldn't save tags."
+msgstr "שמירת הפרופיל נכשלה."
+
+#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:391 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "ההגדרות נשמרו."
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:481 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr ""
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
msgstr ""
+#: actions/public.php:92
+#, fuzzy
+msgid "Could not retrieve public stream."
+msgstr "עידכון המשתמש נכשל."
+
+#: actions/public.php:130
+#, fuzzy, php-format
+msgid "Public timeline, page %d"
+msgstr "קו זמן ציבורי"
+
#: actions/public.php:132 lib/publicgroupnav.php:79
msgid "Public timeline"
msgstr "קו זמן ציבורי"
+#: actions/public.php:160
+#, fuzzy
+msgid "Public Stream Feed (RSS 1.0)"
+msgstr "הזנת זרם הציבורי"
+
+#: actions/public.php:164
+#, fuzzy
+msgid "Public Stream Feed (RSS 2.0)"
+msgstr "הזנת זרם הציבורי"
+
+#: actions/public.php:168
+#, fuzzy
+msgid "Public Stream Feed (Atom)"
+msgstr "הזנת זרם הציבורי"
+
#: actions/public.php:188
#, php-format
msgid ""
@@ -1928,28 +4377,46 @@ msgid ""
"tool."
msgstr ""
-#: actions/publictagcloud.php:63
+#. TRANS: Title for public tag cloud.
+#: actions/publictagcloud.php:57
+#, fuzzy
+msgid "Public tag cloud"
+msgstr "הזנת זרם הציבורי"
+
+#. TRANS: Instructions (more used like an explanation/header).
+#. TRANS: %s is the StatusNet sitename.
+#: actions/publictagcloud.php:65
#, php-format
-msgid "These are most popular recent tags on %s "
+msgid "These are most popular recent tags on %s"
msgstr ""
-#: actions/publictagcloud.php:69
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/publictagcloud.php:74
#, php-format
msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
msgstr ""
-#: actions/publictagcloud.php:72
+#. TRANS: Message shown to a logged in user for the public tag cloud
+#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
+#: actions/publictagcloud.php:79
msgid "Be the first to post one!"
msgstr ""
-#: actions/publictagcloud.php:75
+#. TRANS: Message shown to a anonymous user for the public tag cloud
+#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/publictagcloud.php:87
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to post "
"one!"
msgstr ""
-#: actions/publictagcloud.php:134
+#: actions/publictagcloud.php:146
msgid "Tag cloud"
msgstr ""
@@ -1977,6 +4444,11 @@ msgstr "שגיאה באישור הקוד."
msgid "This confirmation code is too old. Please start again."
msgstr "קוד אישור זה ישן מידי. אנא התחל מחדש."
+#: actions/recoverpassword.php:111
+#, fuzzy
+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 "
@@ -1987,6 +4459,11 @@ msgstr ""
msgid "You have been identified. Enter a new password below. "
msgstr ""
+#: actions/recoverpassword.php:188
+#, fuzzy
+msgid "Password recovery"
+msgstr "התבקש שיחזור סיסמה"
+
#: actions/recoverpassword.php:191
msgid "Nickname or email address"
msgstr ""
@@ -2050,14 +4527,14 @@ msgid "Unexpected password reset."
msgstr "איפוס סיסמה לא צפוי."
#: actions/recoverpassword.php:365
-msgid "Password must be 6 chars or more."
-msgstr "הסיסמה חייבת להיות בת לפחות 6 אותיות."
+msgid "Password must be 6 characters or more."
+msgstr ""
#: actions/recoverpassword.php:369
msgid "Password and confirmation do not match."
msgstr "הסיסמה ואישורה אינן תואמות."
-#: actions/recoverpassword.php:388 actions/register.php:255
+#: actions/recoverpassword.php:388 actions/register.php:256
msgid "Error setting user."
msgstr "שגיאה ביצירת שם המשתמש."
@@ -2065,15 +4542,20 @@ msgstr "שגיאה ביצירת שם המשתמש."
msgid "New password successfully saved. You are now logged in."
msgstr "הסיסמה החדשה נשמרה בהצלחה. אתה מחובר למערכת."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:412
+#: actions/register.php:92 actions/register.php:196 actions/register.php:413
msgid "Sorry, only invited people can register."
msgstr ""
+#: actions/register.php:99
+#, fuzzy
+msgid "Sorry, invalid invitation code."
+msgstr "שגיאה באישור הקוד."
+
#: actions/register.php:119
msgid "Registration successful"
msgstr ""
-#: actions/register.php:121 actions/register.php:506 lib/logingroupnav.php:85
+#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
msgid "Register"
msgstr "הירשם"
@@ -2081,68 +4563,87 @@ msgstr "הירשם"
msgid "Registration not allowed."
msgstr ""
-#: actions/register.php:205
+#: actions/register.php:209
msgid "You can't register if you don't agree to the license."
msgstr "לא ניתן להירשם ללא הסכמה לרשיון"
-#: actions/register.php:250 actions/register.php:272
+#: actions/register.php:218
+#, fuzzy
+msgid "Email address already exists."
+msgstr "כתובת זו כבר אושרה."
+
+#: actions/register.php:251 actions/register.php:273
msgid "Invalid username or password."
msgstr "שם המשתמש או הסיסמה לא חוקיים"
-#: actions/register.php:350
+#: actions/register.php:351
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:437
+#: actions/register.php:433
+#, fuzzy
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
+msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים."
+
+#: actions/register.php:438
msgid "6 or more characters. Required."
msgstr " לפחות 6 אותיות. שדה חובה."
+#: actions/register.php:442
+#, fuzzy
+msgid "Same as password above. Required."
+msgstr "זהה לסיסמה למעלה"
+
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:445 actions/register.php:449
-#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:132
+#: actions/register.php:446 actions/register.php:450
+#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr ""
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:447 actions/register.php:451
msgid "Used only for updates, announcements, and password recovery"
msgstr "לשימוש רק במקרים של עידכונים, הודעות מערכת, ושיחזורי סיסמאות"
-#: actions/register.php:457
+#: actions/register.php:458
msgid "Longer name, preferably your \"real\" name"
msgstr ""
-#: actions/register.php:518
+#: actions/register.php:463
+msgid "URL of your homepage, blog, or profile on another site"
+msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר "
+
+#: actions/register.php:524
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:528
+#: actions/register.php:534
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:532
+#: actions/register.php:538
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:535
+#: actions/register.php:541
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:540
+#: actions/register.php:546
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr ""
-#: actions/register.php:583
+#: actions/register.php:589
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -2161,7 +4662,7 @@ msgid ""
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
-#: actions/register.php:607
+#: actions/register.php:613
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -2182,6 +4683,11 @@ msgstr ""
msgid "Remote subscribe"
msgstr "הרשמה מרוחקת"
+#: actions/remotesubscribe.php:124
+#, fuzzy
+msgid "Subscribe to a remote user"
+msgstr "ההרשמה אושרה"
+
#: actions/remotesubscribe.php:129
msgid "User nickname"
msgstr "כינוי משתמש"
@@ -2199,7 +4705,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:406
+#: lib/userprofile.php:411
msgid "Subscribe"
msgstr "הירשם כמנוי"
@@ -2207,24 +4713,69 @@ msgstr "הירשם כמנוי"
msgid "Invalid profile URL (bad format)"
msgstr "כתובת פרופיל לא חוקית (פורמט לא תקין)"
+#: actions/remotesubscribe.php:168
+#, fuzzy
+msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
+msgstr "Not a valid profile URL (no YADIS document)."
+
#: 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 "אסימון הבקשה לא התקבל."
+
#: actions/repeat.php:57
msgid "Only logged-in users can repeat notices."
msgstr ""
-#: actions/repeat.php:114 lib/noticelist.php:676
+#: actions/repeat.php:64 actions/repeat.php:71
+#, fuzzy
+msgid "No notice specified."
+msgstr "הודעה חדשה"
+
+#: actions/repeat.php:76
+#, fuzzy
+msgid "You can't repeat your own notice."
+msgstr "לא ניתן להירשם ללא הסכמה לרשיון"
+
+#: actions/repeat.php:90
+#, fuzzy
+msgid "You already repeated that notice."
+msgstr "כבר נכנסת למערכת!"
+
+#: actions/repeat.php:114 lib/noticelist.php:692
msgid "Repeated"
msgstr "איפוס"
+#: actions/repeat.php:119
+#, fuzzy
+msgid "Repeated!"
+msgstr "צור"
+
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:105
+#: lib/personalgroupnav.php:108
#, php-format
msgid "Replies to %s"
msgstr "תגובת עבור %s"
+#: actions/replies.php:128
+#, fuzzy, php-format
+msgid "Replies to %1$s, page %2$d"
+msgstr "תגובת עבור %s"
+
+#: actions/replies.php:145
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 1.0)"
+msgstr "הזנת הודעות של %s"
+
+#: actions/replies.php:152
+#, fuzzy, php-format
+msgid "Replies feed for %s (RSS 2.0)"
+msgstr "הזנת הודעות של %s"
+
#: actions/replies.php:159
#, php-format
msgid "Replies feed for %s (Atom)"
@@ -2251,10 +4802,117 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
+#: actions/repliesrss.php:72
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s!"
+msgstr "תגובת עבור %s"
+
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr ""
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "שגיאת מערכת בהעלאת הקובץ."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr ""
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr ""
+
+#: actions/revokerole.php:75
+#, fuzzy
+msgid "You cannot revoke user roles on this site."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
+#: actions/revokerole.php:82
+#, fuzzy
+msgid "User doesn't have this role."
+msgstr "למשתמש אין פרופיל."
+
#: actions/rsd.php:146 actions/version.php:159
msgid "StatusNet"
msgstr "סטטיסטיקה"
+#: actions/sandbox.php:65 actions/unsandbox.php:65
+#, fuzzy
+msgid "You cannot sandbox users on this site."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
+#: actions/sandbox.php:72
+#, fuzzy
+msgid "User is already sandboxed."
+msgstr "למשתמש אין פרופיל."
+
#. TRANS: Menu item for site administration
#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170
#: lib/adminpanelaction.php:379
@@ -2262,7 +4920,7 @@ msgid "Sessions"
msgstr ""
#: actions/sessionsadminpanel.php:65
-msgid "Session settings for this StatusNet site."
+msgid "Session settings for this StatusNet site"
msgstr ""
#: actions/sessionsadminpanel.php:175
@@ -2282,7 +4940,6 @@ msgid "Turn on debugging output for sessions."
msgstr ""
#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/useradminpanel.php:294
msgid "Save site settings"
msgstr "הגדרות הפרופיל"
@@ -2290,12 +4947,38 @@ msgstr "הגדרות הפרופיל"
msgid "You must be logged in to view an application."
msgstr ""
+#: actions/showapplication.php:157
+#, fuzzy
+msgid "Application profile"
+msgstr "להודעה אין פרופיל"
+
#. TRANS: Form input field label for application icon.
#: actions/showapplication.php:159 lib/applicationeditform.php:173
msgid "Icon"
msgstr ""
-#: actions/showapplication.php:192 actions/showgroup.php:436
+#. TRANS: Form input field label for application name.
+#: actions/showapplication.php:169 actions/version.php:197
+#: lib/applicationeditform.php:190
+#, fuzzy
+msgid "Name"
+msgstr "כינוי"
+
+#. TRANS: Form input field label.
+#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#, fuzzy
+msgid "Organization"
+msgstr "מיקום"
+
+#. TRANS: Form input field label.
+#: actions/showapplication.php:187 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#, fuzzy
+msgid "Description"
+msgstr "הרשמות"
+
+#. TRANS: Header for group statistics on a group page (h2).
+#: actions/showapplication.php:192 actions/showgroup.php:448
#: lib/profileaction.php:187
msgid "Statistics"
msgstr "סטטיסטיקה"
@@ -2313,6 +4996,12 @@ msgstr ""
msgid "Reset key & secret"
msgstr ""
+#: actions/showapplication.php:252 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:66 lib/noticelist.php:673
+#, fuzzy
+msgid "Delete"
+msgstr "מחק"
+
#: actions/showapplication.php:261
msgid "Application info"
msgstr ""
@@ -2347,6 +5036,31 @@ msgstr ""
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
+#: actions/showfavorites.php:79
+#, fuzzy, php-format
+msgid "%1$s's favorite notices, page %2$d"
+msgstr "%s וחברים"
+
+#: actions/showfavorites.php:132
+#, fuzzy
+msgid "Could not retrieve favorite notices."
+msgstr "שמירת הפרופיל נכשלה."
+
+#: actions/showfavorites.php:171
+#, fuzzy, php-format
+msgid "Feed for favorites of %s (RSS 1.0)"
+msgstr "הזנות החברים של %s"
+
+#: actions/showfavorites.php:178
+#, fuzzy, php-format
+msgid "Feed for favorites of %s (RSS 2.0)"
+msgstr "הזנות החברים של %s"
+
+#: actions/showfavorites.php:185
+#, fuzzy, php-format
+msgid "Feed for favorites of %s (Atom)"
+msgstr "הזנות החברים של %s"
+
#: actions/showfavorites.php:206
msgid ""
"You haven't chosen any favorite notices yet. Click the fave button on "
@@ -2372,35 +5086,107 @@ msgstr ""
msgid "This is a way to share what you like."
msgstr ""
-#: actions/showgroup.php:82
+#. TRANS: Page title for first group page. %s is a group name.
+#: actions/showgroup.php:75
#, php-format
msgid "%s group"
msgstr ""
-#: actions/showgroup.php:227
+#. TRANS: Page title for any but first group page.
+#. TRANS: %1$s is a group name, $2$s is a page number.
+#: actions/showgroup.php:79
+#, fuzzy, php-format
+msgid "%1$s group, page %2$d"
+msgstr "כל המנויים"
+
+#. TRANS: Group profile header (h2). Text hidden by default.
+#: actions/showgroup.php:220
msgid "Group profile"
msgstr "למשתמש אין פרופיל."
-#: actions/showgroup.php:272 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:178
+#. TRANS: Label for group URL (dt). Text hidden by default.
+#: actions/showgroup.php:270 actions/tagother.php:118
+#: actions/userauthorization.php:175 lib/userprofile.php:180
msgid "URL"
msgstr ""
-#: actions/showgroup.php:293 lib/groupeditform.php:184
+#. TRANS: Label for group description or group note (dt). Text hidden by default.
+#: actions/showgroup.php:282 actions/tagother.php:128
+#: actions/userauthorization.php:187 lib/userprofile.php:197
+#, fuzzy
+msgid "Note"
+msgstr "הודעות"
+
+#. TRANS: Label for group aliases (dt). Text hidden by default.
+#: actions/showgroup.php:293 lib/groupeditform.php:187
msgid "Aliases"
msgstr ""
-#: actions/showgroup.php:398 lib/profileaction.php:117
+#. TRANS: Group actions header (h2). Text hidden by default.
+#: actions/showgroup.php:304
+#, fuzzy
+msgid "Group actions"
+msgstr "קבוצות"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:345
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 1.0)"
+msgstr "הזנת הודעות של %s"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:352
+#, fuzzy, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr "הזנת הודעות של %s"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:359
+#, fuzzy, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr "הזנת הודעות של %s"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:365
+#, fuzzy, php-format
+msgid "FOAF for %s group"
+msgstr "הזנת הודעות של %s"
+
+#. TRANS: Header for mini list of group members on a group page (h2).
+#: actions/showgroup.php:402
+#, fuzzy
+msgid "Members"
+msgstr "חבר מאז"
+
+#. TRANS: Description for mini list of group members on a group page when the group has no members.
+#: actions/showgroup.php:408 lib/profileaction.php:117
#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr ""
-#: actions/showgroup.php:404
+#. TRANS: Link to all group members from mini list of group members if group has more than n members.
+#: actions/showgroup.php:417
msgid "All members"
msgstr ""
-#: actions/showgroup.php:455
+#. TRANS: Label for creation date in statistics on group page.
+#: actions/showgroup.php:453
+msgctxt "LABEL"
+msgid "Created"
+msgstr ""
+
+#. TRANS: Label for member count in statistics on group page.
+#: actions/showgroup.php:461
+msgctxt "LABEL"
+msgid "Members"
+msgstr ""
+
+#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations.
+#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
+#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
+#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
+#: actions/showgroup.php:476
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -2410,7 +5196,10 @@ msgid ""
"of this group and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
-#: actions/showgroup.php:461
+#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
+#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
+#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
+#: actions/showgroup.php:486
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -2419,53 +5208,119 @@ msgid ""
"their life and interests. "
msgstr ""
-#: actions/showgroup.php:489
+#. TRANS: Header for list of group administrators on a group page (h2).
+#: actions/showgroup.php:515
msgid "Admins"
msgstr ""
-#: actions/showmessage.php:98
+#. TRANS: Client error displayed requesting a single message that does not exist.
+#: actions/showmessage.php:79
+#, fuzzy
+msgid "No such message."
+msgstr "אין משתמש כזה."
+
+#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
+#: actions/showmessage.php:97
msgid "Only the sender and recipient may read this message."
msgstr ""
-#: actions/showmessage.php:108
+#. TRANS: Page title for single direct message display when viewing user is the sender.
+#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
+#: actions/showmessage.php:110
#, php-format
msgid "Message to %1$s on %2$s"
msgstr ""
-#: actions/showmessage.php:113
+#. TRANS: Page title for single message display.
+#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
+#: actions/showmessage.php:118
#, php-format
msgid "Message from %1$s on %2$s"
msgstr ""
-#: actions/showstream.php:73
+#: actions/shownotice.php:90
+#, fuzzy
+msgid "Notice deleted."
+msgstr "הודעות"
+
+#. TRANS: Page title showing tagged notices in one user's stream. %1$s is the username, %2$s is the hash tag.
+#: actions/showstream.php:70
#, php-format
-msgid " tagged %s"
+msgid "%1$s tagged %2$s"
msgstr ""
-#: actions/showstream.php:148
+#. TRANS: Page title showing tagged notices in one user's stream.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#: actions/showstream.php:74
+#, php-format
+msgid "%1$s tagged %2$s, page %3$d"
+msgstr ""
+
+#. TRANS: Extended page title showing tagged notices in one user's stream.
+#. TRANS: %1$s is the username, %2$d is the page number.
+#: actions/showstream.php:82
+#, fuzzy, php-format
+msgid "%1$s, page %2$d"
+msgstr "%s וחברים"
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %1$s is a user nickname, %2$s is a hashtag.
+#: actions/showstream.php:127
+#, fuzzy, php-format
+msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)"
+msgstr "הזנת הודעות של %s"
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %s is a user nickname.
+#: actions/showstream.php:136
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr "הזנת הודעות של %s"
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %s is a user nickname.
+#: actions/showstream.php:145
+#, fuzzy, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr "הזנת הודעות של %s"
+
+#: actions/showstream.php:152
+#, fuzzy, php-format
+msgid "Notice feed for %s (Atom)"
+msgstr "הזנת הודעות של %s"
+
+#. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend.
+#. TRANS: More information at http://www.foaf-project.org. %s is a user nickname.
+#: actions/showstream.php:159
#, php-format
msgid "FOAF for %s"
msgstr ""
-#: actions/showstream.php:200
+#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname.
+#: actions/showstream.php:211
#, php-format
-msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet."
+msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet."
msgstr ""
-#: actions/showstream.php:205
+#. TRANS: Second sentence of empty list message for a stream for the user themselves.
+#: actions/showstream.php:217
msgid ""
"Seen anything interesting recently? You haven't posted any notices yet, now "
"would be a good time to start :)"
msgstr ""
-#: actions/showstream.php:207
+#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:221
#, php-format
msgid ""
"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%"
"%?status_textarea=%2$s)."
msgstr ""
-#: actions/showstream.php:243
+#. TRANS: Announcement for anonymous users showing a stream if site registrations are open.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:264
#, php-format
msgid ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -2474,7 +5329,9 @@ msgid ""
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
-#: actions/showstream.php:248
+#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:271
#, php-format
msgid ""
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -2482,10 +5339,21 @@ msgid ""
"[StatusNet](http://status.net/) tool. "
msgstr ""
+#. TRANS: Link to the author of a repeated notice. %s is a linked nickname.
+#: actions/showstream.php:328
+#, fuzzy, php-format
+msgid "Repeat of %s"
+msgstr "תגובת עבור %s"
+
#: actions/silence.php:65 actions/unsilence.php:65
msgid "You cannot silence users on this site."
msgstr ""
+#: actions/silence.php:72
+#, fuzzy
+msgid "User is already silenced."
+msgstr "למשתמש אין פרופיל."
+
#: actions/siteadminpanel.php:69
msgid "Basic settings for this StatusNet site"
msgstr ""
@@ -2515,6 +5383,11 @@ msgstr ""
msgid "General"
msgstr ""
+#: actions/siteadminpanel.php:224
+#, fuzzy
+msgid "Site name"
+msgstr "הודעה חדשה"
+
#: actions/siteadminpanel.php:225
msgid "The name of your site, like \"Yourcompany Microblog\""
msgstr ""
@@ -2539,6 +5412,11 @@ msgstr ""
msgid "Contact email address for your site"
msgstr ""
+#: actions/siteadminpanel.php:245
+#, fuzzy
+msgid "Local"
+msgstr "מיקום"
+
#: actions/siteadminpanel.php:256
msgid "Default timezone"
msgstr ""
@@ -2575,18 +5453,45 @@ msgstr ""
msgid "How long users must wait (in seconds) to post the same thing again."
msgstr ""
-#: actions/sitenoticeadminpanel.php:56
+#. TRANS: Page title for site-wide notice tab in admin panel.
+#: actions/sitenoticeadminpanel.php:55
msgid "Site Notice"
msgstr "הודעות"
-#: actions/sitenoticeadminpanel.php:113
-msgid "Max length for the site-wide notice is 255 chars."
+#. TRANS: Instructions for site-wide notice tab in admin panel.
+#: actions/sitenoticeadminpanel.php:66
+#, fuzzy
+msgid "Edit site-wide message"
+msgstr "הודעה חדשה"
+
+#. TRANS: Server error displayed when saving a site-wide notice was impossible.
+#: actions/sitenoticeadminpanel.php:101
+#, fuzzy
+msgid "Unable to save site notice."
+msgstr "בעיה בשמירת ההודעה."
+
+#. TRANS: Client error displayed when a site-wide notice was longer than allowed.
+#: actions/sitenoticeadminpanel.php:112
+msgid "Maximum length for the site-wide notice is 255 characters."
msgstr ""
-#: actions/sitenoticeadminpanel.php:178
-msgid "Site-wide notice text (255 chars max; HTML okay)"
+#. TRANS: Label for site-wide notice text field in admin panel.
+#: actions/sitenoticeadminpanel.php:176
+#, fuzzy
+msgid "Site notice text"
+msgstr "הודעה חדשה"
+
+#. TRANS: Tooltip for site-wide notice text field in admin panel.
+#: actions/sitenoticeadminpanel.php:179
+msgid "Site-wide notice text (255 characters maximum; HTML allowed)"
msgstr ""
+#. TRANS: Title for button to save site notice in admin panel.
+#: actions/sitenoticeadminpanel.php:201
+#, fuzzy
+msgid "Save site notice"
+msgstr "הודעה חדשה"
+
#. TRANS: Title for SMS settings.
#: actions/smssettings.php:59
msgid "SMS settings"
@@ -2599,6 +5504,18 @@ msgstr "הגדרות הפרופיל"
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
+#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
+#: actions/smssettings.php:97
+#, fuzzy
+msgid "SMS is not available."
+msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
+
+#. TRANS: Form legend for SMS settings form.
+#: actions/smssettings.php:111
+#, fuzzy
+msgid "SMS address"
+msgstr "כתובת מסרים מידיים"
+
#. TRANS: Form guide in SMS settings form.
#: actions/smssettings.php:120
msgid "Current confirmed SMS-enabled phone number."
@@ -2609,16 +5526,35 @@ msgstr ""
msgid "Awaiting confirmation on this phone number."
msgstr ""
+#. TRANS: Field label for SMS address input in SMS settings form.
+#: actions/smssettings.php:142
+#, fuzzy
+msgid "Confirmation code"
+msgstr "אין קוד אישור."
+
#. TRANS: Form field instructions in SMS settings form.
#: actions/smssettings.php:144
msgid "Enter the code you received on your phone."
msgstr ""
+#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
+#: actions/smssettings.php:148
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Confirm"
+msgstr "אשר"
+
#. TRANS: Field label for SMS phone number input in SMS settings form.
#: actions/smssettings.php:153
msgid "SMS phone number"
msgstr ""
+#. TRANS: SMS phone number input field instructions in SMS settings form.
+#: actions/smssettings.php:156
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code"
+msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים."
+
#. TRANS: Form legend for SMS preferences form.
#: actions/smssettings.php:195
msgid "SMS preferences"
@@ -2631,11 +5567,35 @@ msgid ""
"from my carrier."
msgstr ""
+#. TRANS: Confirmation message for successful SMS preferences save.
+#: actions/smssettings.php:315
+#, fuzzy
+msgid "SMS preferences saved."
+msgstr "העדפות נשמרו."
+
+#. TRANS: Message given saving SMS phone number without having provided one.
+#: actions/smssettings.php:338
+#, fuzzy
+msgid "No phone number."
+msgstr "אין משתמש כזה."
+
#. TRANS: Message given saving SMS phone number without having selected a carrier.
#: actions/smssettings.php:344
msgid "No carrier selected."
msgstr ""
+#. TRANS: Message given saving SMS phone number that is already set.
+#: actions/smssettings.php:352
+#, fuzzy
+msgid "That is already your phone number."
+msgstr "זהו כבר זיהוי ה-Jabber שלך."
+
+#. TRANS: Message given saving SMS phone number that is already set for another user.
+#: actions/smssettings.php:356
+#, fuzzy
+msgid "That phone number already belongs to another user."
+msgstr "זיהוי ה-Jabber כבר שייך למשתמש אחר."
+
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
#: actions/smssettings.php:384
msgid ""
@@ -2645,11 +5605,30 @@ msgstr ""
"קוד אישור נשלח אל כתובת המסרים המידיים שהוספת. עליך לאשר את %s לשליחת מסרים "
"מידיים אליך."
+#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
+#: actions/smssettings.php:413
+#, fuzzy
+msgid "That is the wrong confirmation number."
+msgstr "זוהי כתובת מסרים מידיים שגויה."
+
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
#: actions/smssettings.php:427
msgid "SMS confirmation cancelled."
msgstr "אין קוד אישור."
+#. TRANS: Message given trying to remove an SMS phone number that is not
+#. TRANS: registered for the active user.
+#: actions/smssettings.php:448
+#, fuzzy
+msgid "That is not your phone number."
+msgstr "זהו לא זיהוי ה-Jabber שלך."
+
+#. TRANS: Message given after successfully removing a registered SMS phone number.
+#: actions/smssettings.php:470
+#, fuzzy
+msgid "The SMS phone number was removed."
+msgstr "הכתובת הוסרה."
+
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
#: actions/smssettings.php:511
msgid "Mobile carrier"
@@ -2669,12 +5648,23 @@ msgid ""
"email but isn't listed here, send email to let us know at %s."
msgstr ""
+#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
+#: actions/smssettings.php:548
+#, fuzzy
+msgid "No code entered"
+msgstr "אין תוכן!"
+
#. TRANS: Menu item for site administration
#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
#: lib/adminpanelaction.php:395
msgid "Snapshots"
msgstr ""
+#: actions/snapshotadminpanel.php:65
+#, fuzzy
+msgid "Manage snapshot configuration"
+msgstr "הרשמות"
+
#: actions/snapshotadminpanel.php:127
msgid "Invalid snapshot run value."
msgstr ""
@@ -2719,8 +5709,20 @@ msgstr ""
msgid "Snapshots will be sent to this URL"
msgstr ""
+#: actions/snapshotadminpanel.php:248
+#, fuzzy
+msgid "Save snapshot settings"
+msgstr "הגדרות"
+
+#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile.
+#: actions/subedit.php:75
+#, fuzzy
+msgid "You are not subscribed to that profile."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
+#. TRANS: Server error displayed when updating a subscription fails with a database error.
#. TRANS: Exception thrown when a subscription could not be stored on the server.
-#: actions/subedit.php:83 classes/Subscription.php:136
+#: actions/subedit.php:89 classes/Subscription.php:141
msgid "Could not save subscription."
msgstr "הכנסת מנוי חדש נכשלה."
@@ -2728,43 +5730,94 @@ msgstr "הכנסת מנוי חדש נכשלה."
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribers.php:63
+#: actions/subscribe.php:117
+#, fuzzy
+msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
+#: actions/subscribe.php:145
+#, fuzzy
+msgid "Subscribed"
+msgstr "הירשם כמנוי"
+
+#. TRANS: Header for list of subscribers for a user (first page).
+#. TRANS: %s is the user's nickname.
+#: actions/subscribers.php:51
+#, fuzzy, php-format
+msgid "%s subscribers"
+msgstr "מנויים"
+
+#. TRANS: Header for list of subscribers for a user (not first page).
+#. TRANS: %1$s is the user's nickname, $2$d is the page number.
+#: actions/subscribers.php:55
+#, fuzzy, php-format
+msgid "%1$s subscribers, page %2$d"
+msgstr "כל המנויים"
+
+#. TRANS: Page notice for page with an overview of all subscribers
+#. TRANS: of the logged in user's own profile.
+#: actions/subscribers.php:68
msgid "These are the people who listen to your notices."
msgstr "אלה האנשים המאזינים להודעות שלך."
-#: actions/subscribers.php:67
+#. TRANS: Page notice for page with an overview of all subscribers of a user other
+#. TRANS: than the logged in user. %s is the user nickname.
+#: actions/subscribers.php:74
#, php-format
msgid "These are the people who listen to %s's notices."
msgstr "אלה האנשים במאזינים להודעות של %s."
-#: actions/subscribers.php:108
+#. TRANS: Subscriber list text when the logged in user has no subscribers.
+#: actions/subscribers.php:116
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
-"return the favor"
+"return the favor."
msgstr ""
-#: actions/subscribers.php:110
+#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
+#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
+#: actions/subscribers.php:120
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
-#: actions/subscribers.php:114
+#. TRANS: Subscriber list text when looking at the subscribers for a of a user that has none
+#. TRANS: as an anonymous user. %s is the user nickname.
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/subscribers.php:129
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
"%) and be the first?"
msgstr ""
-#: actions/subscriptions.php:65
+#. TRANS: Header for subscriptions overview for a user (not first page).
+#. TRANS: %1$s is a user nickname, %2$d is the page number.
+#: actions/subscriptions.php:55
+#, fuzzy, php-format
+msgid "%1$s subscriptions, page %2$d"
+msgstr "כל המנויים"
+
+#. TRANS: Page notice for page with an overview of all subscriptions
+#. TRANS: of the logged in user's own profile.
+#: actions/subscriptions.php:68
msgid "These are the people whose notices you listen to."
msgstr "אלה האנשים שלהודעות שלהם אתה מאזין."
-#: actions/subscriptions.php:69
+#. TRANS: Page notice for page with an overview of all subscriptions of a user other
+#. TRANS: than the logged in user. %s is the user nickname.
+#: actions/subscriptions.php:74
#, php-format
msgid "These are the people whose notices %s listens to."
msgstr "אלה האנשים ש%s מאזין להודעות שלהם."
-#: actions/subscriptions.php:126
+#. TRANS: Subscription list text when the logged in user has no subscriptions.
+#. TRANS: This message contains Markdown URLs. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/subscriptions.php:135
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -2774,17 +5827,68 @@ msgid ""
"automatically subscribe to people you already follow there."
msgstr ""
-#: actions/subscriptions.php:222 lib/connectsettingsaction.php:115
+#. TRANS: Subscription list text when looking at the subscriptions for a of a user other
+#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
+#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
+#. TRANS: as an anonymous user. %s is the user nickname.
+#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#, fuzzy, php-format
+msgid "%s is not listening to anyone."
+msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s"
+
+#: actions/subscriptions.php:178
+#, php-format
+msgid "Subscription feed for %s (Atom)"
+msgstr ""
+
+#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
+#: actions/subscriptions.php:242
+#, fuzzy
+msgid "Jabber"
+msgstr "אין זיהוי Jabber כזה."
+
+#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
+#: actions/subscriptions.php:257
msgid "SMS"
msgstr "סמס"
+#: actions/tag.php:69
+#, fuzzy, php-format
+msgid "Notices tagged with %1$s, page %2$d"
+msgstr "מיקרובלוג מאת %s"
+
+#: actions/tag.php:87
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (RSS 1.0)"
+msgstr "הזנת הודעות של %s"
+
+#: actions/tag.php:93
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (RSS 2.0)"
+msgstr "הזנת הודעות של %s"
+
+#: actions/tag.php:99
+#, fuzzy, php-format
+msgid "Notice feed for tag %s (Atom)"
+msgstr "הזנת הודעות של %s"
+
+#: actions/tagother.php:39
+#, fuzzy
+msgid "No ID argument."
+msgstr "אין מסמך כזה."
+
#: actions/tagother.php:65
#, php-format
msgid "Tag %s"
msgstr ""
+#: actions/tagother.php:77 lib/userprofile.php:76
+#, fuzzy
+msgid "User profile"
+msgstr "למשתמש אין פרופיל."
+
#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:103
+#: lib/userprofile.php:107
msgid "Photo"
msgstr ""
@@ -2811,72 +5915,150 @@ msgstr "שמירת הפרופיל נכשלה."
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
+#: actions/tagrss.php:35
+#, fuzzy
+msgid "No such tag."
+msgstr "אין הודעה כזו."
+
+#: actions/unblock.php:59
+#, fuzzy
+msgid "You haven't blocked that user."
+msgstr "כבר נכנסת למערכת!"
+
+#: actions/unsandbox.php:72
+#, fuzzy
+msgid "User is not sandboxed."
+msgstr "למשתמש אין פרופיל."
+
+#: actions/unsilence.php:72
+#, fuzzy
+msgid "User is not silenced."
+msgstr "למשתמש אין פרופיל."
+
#: actions/unsubscribe.php:77
msgid "No profile ID in request."
msgstr "לא התבקש אישור!"
+#: actions/unsubscribe.php:98
+#, fuzzy
+msgid "Unsubscribed"
+msgstr "בטל מנוי"
+
#: actions/updateprofile.php:64 actions/userauthorization.php:337
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
msgstr ""
-#: actions/useradminpanel.php:70
-msgid "User settings for this StatusNet site."
+#. TRANS: User admin panel title
+#: actions/useradminpanel.php:58
+msgctxt "TITLE"
+msgid "User"
+msgstr "משתמש"
+
+#. TRANS: Instruction for user admin panel.
+#: actions/useradminpanel.php:69
+msgid "User settings for this StatusNet site"
msgstr ""
-#: actions/useradminpanel.php:149
+#. TRANS: Form validation error in user admin panel when a non-numeric character limit was set.
+#: actions/useradminpanel.php:147
msgid "Invalid bio limit. Must be numeric."
msgstr ""
-#: actions/useradminpanel.php:155
-msgid "Invalid welcome text. Max length is 255 characters."
+#. TRANS: Form validation error in user admin panel when welcome text is too long.
+#: actions/useradminpanel.php:154
+msgid "Invalid welcome text. Maximum length is 255 characters."
msgstr ""
-#: actions/useradminpanel.php:165
+#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
+#. TRANS: users in user admin panel. %1$s is the invalid nickname.
+#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not user."
+msgid "Invalid default subscripton: '%1$s' is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
-#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:111
-#: lib/personalgroupnav.php:109
+#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
+#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "פרופיל"
-#: actions/useradminpanel.php:222
+#. TRANS: Field label in user admin panel for setting the character limit for the bio field.
+#: actions/useradminpanel.php:220
msgid "Bio Limit"
msgstr ""
-#: actions/useradminpanel.php:223
+#. TRANS: Tooltip in user admin panel for setting the character limit for the bio field.
+#: actions/useradminpanel.php:222
msgid "Maximum length of a profile bio in characters."
msgstr ""
+#. TRANS: Form legend in user admin panel.
#: actions/useradminpanel.php:231
msgid "New users"
msgstr "הודעה חדשה"
-#: actions/useradminpanel.php:235
+#. TRANS: Field label in user admin panel for setting new user welcome text.
+#: actions/useradminpanel.php:236
msgid "New user welcome"
msgstr ""
-#: actions/useradminpanel.php:236
-msgid "Welcome text for new users (Max 255 chars)."
+#. TRANS: Tooltip in user admin panel for setting new user welcome text.
+#: actions/useradminpanel.php:238
+msgid "Welcome text for new users (maximum 255 characters)."
msgstr ""
+#. TRANS: Field label in user admin panel for setting default subscription for new users.
+#: actions/useradminpanel.php:244
+#, fuzzy
+msgid "Default subscription"
+msgstr "כל המנויים"
+
+#. TRANS: Tooltip in user admin panel for setting default subscription for new users.
+#: actions/useradminpanel.php:246
+#, fuzzy
+msgid "Automatically subscribe new users to this user."
+msgstr "ההרשמה אושרה"
+
+#. TRANS: Form legend in user admin panel.
#: actions/useradminpanel.php:256
+#, fuzzy
+msgid "Invitations"
+msgstr "מיקום"
+
+#. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail.
+#: actions/useradminpanel.php:262
msgid "Invitations enabled"
msgstr ""
-#: actions/useradminpanel.php:258
+#. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail.
+#: actions/useradminpanel.php:265
msgid "Whether to allow users to invite new users."
msgstr ""
+#. TRANS: Title for button to save user settings in user admin panel.
+#: actions/useradminpanel.php:302
+msgid "Save user settings"
+msgstr ""
+
#: 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 ""
+"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה "
+"להירשם, לחץ \"בטל\"."
+
+#. TRANS: Menu item for site administration
#: actions/userauthorization.php:196 actions/version.php:167
+#: lib/adminpanelaction.php:403
msgid "License"
msgstr ""
@@ -2905,10 +6087,30 @@ msgstr "לא התבקש אישור!"
msgid "Subscription authorized"
msgstr "ההרשמה אושרה"
+#: actions/userauthorization.php:256
+#, 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 ""
+"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש "
+"כיצד לאשר מנוי. אסימון המנוי שלך הוא:"
+
#: actions/userauthorization.php:266
msgid "Subscription rejected"
msgstr "ההרשמה נדחתה"
+#: actions/userauthorization.php:268
+#, 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 ""
+"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים "
+"דחיית מנוי."
+
#: actions/userauthorization.php:303
#, php-format
msgid "Listener URI ‘%s’ not found here."
@@ -2934,7 +6136,24 @@ msgstr ""
msgid "Avatar URL ‘%s’ is not valid."
msgstr ""
-#: actions/userdesignsettings.php:87 lib/designsettings.php:76
+#: actions/userauthorization.php:350
+#, fuzzy, php-format
+msgid "Can’t read avatar URL ‘%s’."
+msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה"
+
+#: actions/userauthorization.php:355
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL ‘%s’."
+msgstr "סוג התמונה של '%s' אינו מתאים"
+
+#. TRANS: Page title for profile design page.
+#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#, fuzzy
+msgid "Profile design"
+msgstr "הגדרות הפרופיל"
+
+#. TRANS: Instructions for profile design page.
+#: actions/userdesignsettings.php:87 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -2944,10 +6163,21 @@ msgstr ""
msgid "Enjoy your hotdog!"
msgstr ""
+#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number.
+#: actions/usergroups.php:66
+#, fuzzy, php-format
+msgid "%1$s groups, page %2$d"
+msgstr "כל המנויים"
+
#: actions/usergroups.php:132
msgid "Search for more groups"
msgstr ""
+#: actions/usergroups.php:159
+#, fuzzy, php-format
+msgid "%s is not a member of any group."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
#: actions/usergroups.php:164
#, php-format
msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
@@ -2959,11 +6189,16 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:76
+#: lib/atomusernoticefeed.php:75
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr ""
+#: actions/version.php:75
+#, fuzzy, php-format
+msgid "StatusNet %s"
+msgstr "סטטיסטיקה"
+
#: actions/version.php:155
#, php-format
msgid ""
@@ -3002,54 +6237,158 @@ msgstr ""
msgid "Plugins"
msgstr ""
+#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
+#: actions/version.php:198 lib/action.php:885
+#, fuzzy
+msgid "Version"
+msgstr "אישי"
+
#: actions/version.php:199
msgid "Author(s)"
msgstr ""
+#. TRANS: Activity title when marking a notice as favorite.
+#: classes/Fave.php:164 lib/favorform.php:143
+#, fuzzy
+msgid "Favor"
+msgstr "מועדפים"
+
+#. TRANS: Ntofication given when a user marks a notice as favorite.
+#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
+#: classes/Fave.php:167
+#, php-format
+msgid "%1$s marked notice %2$s as a favorite."
+msgstr ""
+
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:143
+#: classes/File.php:156
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:175
+#: classes/File.php:188
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
-#: classes/File.php:190
+#. TRANS: %1$s is used for plural.
+#: classes/File.php:204
#, php-format
msgid ""
+"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
+"Try to upload a smaller version."
+msgid_plural ""
"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. "
"Try to upload a smaller version."
-msgstr ""
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
-#. TRANS: %d (number) is the user quota in bytes.
-#: classes/File.php:202
+#. TRANS: %d (number) is the user quota in bytes and is used for plural.
+#: classes/File.php:217
#, php-format
-msgid "A file this large would exceed your user quota of %d bytes."
-msgstr ""
+msgid "A file this large would exceed your user quota of %d byte."
+msgid_plural "A file this large would exceed your user quota of %d bytes."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
-#. TRANS: $d (number) is the monthly user quota in bytes.
-#: classes/File.php:211
+#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
+#: classes/File.php:229
#, php-format
-msgid "A file this large would exceed your monthly quota of %d bytes."
+msgid "A file this large would exceed your monthly quota of %d byte."
+msgid_plural "A file this large would exceed your monthly quota of %d bytes."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client exception thrown if a file upload does not have a valid name.
+#: classes/File.php:276 classes/File.php:291
+#, fuzzy
+msgid "Invalid filename."
+msgstr "גודל לא חוקי."
+
+#. TRANS: Exception thrown when joining a group fails.
+#: classes/Group_member.php:51
+#, fuzzy
+msgid "Group join failed."
+msgstr "אין הודעה כזו."
+
+#. TRANS: Exception thrown when trying to leave a group the user is not a member of.
+#: classes/Group_member.php:64
+#, fuzzy
+msgid "Not part of group."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Exception thrown when trying to leave a group fails.
+#: classes/Group_member.php:72
+#, fuzzy
+msgid "Group leave failed."
+msgstr "אין הודעה כזו."
+
+#. TRANS: Exception thrown providing an invalid profile ID.
+#. TRANS: %s is the invalid profile ID.
+#: classes/Group_member.php:85
+#, php-format
+msgid "Profile ID %s is invalid."
msgstr ""
+#. TRANS: Exception thrown providing an invalid group ID.
+#. TRANS: %s is the invalid group ID.
+#: classes/Group_member.php:98
+#, php-format
+msgid "Group ID %s is invalid."
+msgstr ""
+
+#. TRANS: Activity title.
+#: classes/Group_member.php:147 lib/joinform.php:114
+#, fuzzy
+msgid "Join"
+msgstr "היכנס"
+
+#. TRANS: Success message for subscribe to group attempt through OStatus.
+#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
+#: classes/Group_member.php:151
+#, php-format
+msgid "%1$s has joined group %2$s."
+msgstr ""
+
+#. TRANS: Server exception thrown when updating a local group fails.
+#: classes/Local_group.php:42
+#, fuzzy
+msgid "Could not update local group."
+msgstr "עידכון המשתמש נכשל."
+
+#. TRANS: Exception thrown when trying creating a login token failed.
+#. TRANS: %s is the user nickname for which token creation failed.
+#: classes/Login_token.php:78
+#, fuzzy, php-format
+msgid "Could not create login token for %s"
+msgstr "שמירת מידע התמונה נכשל"
+
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:537
msgid "No database name or DSN found anywhere."
msgstr ""
#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them.
-#: classes/Message.php:46
+#: classes/Message.php:45
msgid "You are banned from sending direct messages."
msgstr ""
+#. TRANS: Message given when a message could not be stored on the server.
+#: classes/Message.php:69
+#, fuzzy
+msgid "Could not insert message."
+msgstr "הכנסת מנוי חדש נכשלה."
+
+#. TRANS: Message given when a message could not be updated on the server.
+#: classes/Message.php:80
+#, fuzzy
+msgid "Could not update message with new URI."
+msgstr "עידכון המשתמש נכשל."
+
#. TRANS: Server exception thrown when a user profile for a notice cannot be found.
#. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number).
#: classes/Notice.php:98
@@ -3058,227 +6397,471 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "שגיאה בהכנסת התמונה."
+#. TRANS: Client exception thrown if a notice contains too many characters.
+#: classes/Notice.php:279
+#, fuzzy
+msgid "Problem saving notice. Too long."
+msgstr "בעיה בשמירת ההודעה."
+
+#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
+#: classes/Notice.php:284
+#, fuzzy
+msgid "Problem saving notice. Unknown user."
+msgstr "בעיה בשמירת ההודעה."
+
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:276
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:283
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:291
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr ""
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:358 classes/Notice.php:385
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "בעיה בשמירת ההודעה."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:899
-msgid "Bad type provided to saveKnownGroups"
+#: classes/Notice.php:914
+msgid "Bad type provided to saveKnownGroups."
+msgstr ""
+
+#. TRANS: Server exception thrown when an update for a group inbox fails.
+#: classes/Notice.php:1013
+#, fuzzy
+msgid "Problem saving group inbox."
+msgstr "בעיה בשמירת ההודעה."
+
+#. TRANS: Server exception thrown when a reply cannot be saved.
+#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
+#: classes/Notice.php:1127
+#, php-format
+msgid "Could not save reply for %1$d, %2$d."
msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1759
+#: classes/Notice.php:1646
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
+#. TRANS: Full name of a profile or group followed by nickname in parens
+#: classes/Profile.php:172 classes/User_group.php:242
+#, php-format
+msgctxt "FANCYNAME"
+msgid "%1$s (%2$s)"
+msgstr ""
+
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:737
+#: classes/Profile.php:765
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:746
+#: classes/Profile.php:774
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
+#. TRANS: Exception thrown when a right for a non-existing user profile is checked.
+#: classes/Remote_profile.php:54
+#, fuzzy
+msgid "Missing profile."
+msgstr "למשתמש אין פרופיל."
+
+#. TRANS: Exception thrown when a tag cannot be saved.
+#: classes/Status_network.php:338
+#, fuzzy
+msgid "Unable to save tag."
+msgstr "בעיה בשמירת ההודעה."
+
#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
-#: classes/Subscription.php:75 lib/oauthstore.php:466
+#: classes/Subscription.php:77 lib/oauthstore.php:482
msgid "You have been banned from subscribing."
msgstr ""
+#. TRANS: Exception thrown when trying to subscribe while already subscribed.
+#: classes/Subscription.php:82
+#, fuzzy
+msgid "Already subscribed!"
+msgstr "לא מנוי!"
+
+#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user.
+#: classes/Subscription.php:87
+#, fuzzy
+msgid "User has blocked you."
+msgstr "למשתמש אין פרופיל."
+
+#. TRANS: Exception thrown when trying to unsibscribe without a subscription.
+#: classes/Subscription.php:176
+#, fuzzy
+msgid "Not subscribed!"
+msgstr "לא מנוי!"
+
#. TRANS: Exception thrown when trying to unsubscribe a user from themselves.
-#: classes/Subscription.php:178
+#: classes/Subscription.php:183
msgid "Could not delete self-subscription."
msgstr "הכנסת מנוי חדש נכשלה."
#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server.
-#: classes/Subscription.php:206
+#: classes/Subscription.php:211
msgid "Could not delete subscription OMB token."
msgstr "הכנסת מנוי חדש נכשלה."
#. TRANS: Exception thrown when a subscription could not be deleted on the server.
-#: classes/Subscription.php:218
+#: classes/Subscription.php:223
msgid "Could not delete subscription."
msgstr "הכנסת מנוי חדש נכשלה."
+#. TRANS: Activity tile when subscribing to another person.
+#: classes/Subscription.php:265
+msgid "Follow"
+msgstr ""
+
+#. TRANS: Notification given when one person starts following another.
+#. TRANS: %1$s is the subscriber, %2$s is the subscribed.
+#: classes/Subscription.php:268
+#, php-format
+msgid "%1$s is now following %2$s."
+msgstr ""
+
#. TRANS: Notice given on user registration.
#. TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
-#: classes/User.php:365
+#: classes/User.php:395
#, php-format
msgid "Welcome to %1$s, @%2$s!"
msgstr ""
+#. TRANS: Server exception.
+#: classes/User.php:918
+msgid "No single user defined for single-user mode."
+msgstr ""
+
+#. TRANS: Server exception.
+#: classes/User.php:922
+msgid "Single-user mode code called when not enabled."
+msgstr ""
+
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:496
+#: classes/User_group.php:516
msgid "Could not create group."
msgstr "עידכון המשתמש נכשל."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:506
+#: classes/User_group.php:526
msgid "Could not set group URI."
msgstr "שמירת הפרופיל נכשלה."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:529
+#: classes/User_group.php:549
msgid "Could not set group membership."
msgstr "עידכון המשתמש נכשל."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:564
msgid "Could not save local group info."
msgstr "שמירת הפרופיל נכשלה."
#. TRANS: Link title attribute in user account settings menu.
-#: lib/accountsettingsaction.php:130
+#: lib/accountsettingsaction.php:104
+#, fuzzy
+msgid "Change your profile settings"
+msgstr "הגדרות הפרופיל"
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:111
+#, fuzzy
+msgid "Upload an avatar"
+msgstr "עדכון התמונה נכשל."
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:118
+#, fuzzy
+msgid "Change your password"
+msgstr "שנה סיסמה"
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:125
msgid "Change email handling"
msgstr ""
#. TRANS: Link title attribute in user account settings menu.
-#: lib/accountsettingsaction.php:144
+#: lib/accountsettingsaction.php:132
+#, fuzzy
+msgid "Design your profile"
+msgstr "למשתמש אין פרופיל."
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:139
msgid "Other options"
msgstr ""
#. TRANS: Link description in user account settings menu.
-#: lib/accountsettingsaction.php:146
+#: lib/accountsettingsaction.php:141
msgid "Other"
msgstr ""
+#. TRANS: Page title. %1$s is the title, %2$s is the site name.
+#: lib/action.php:148
+#, fuzzy, php-format
+msgid "%1$s - %2$s"
+msgstr "הסטטוס של %1$s ב-%2$s "
+
#. TRANS: Page title for a page without a title set.
#: lib/action.php:164
msgid "Untitled page"
msgstr ""
+#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
+#: lib/action.php:312
+msgctxt "TOOLTIP"
+msgid "Show more"
+msgstr ""
+
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:449
+#: lib/action.php:531
msgid "Primary site navigation"
msgstr ""
#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:455
+#: lib/action.php:537
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr ""
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
+#: lib/action.php:540
+#, fuzzy
+msgctxt "MENU"
+msgid "Personal"
+msgstr "אישי"
+
+#. TRANS: Tooltip for main menu option "Account"
+#: lib/action.php:542
+#, fuzzy
+msgctxt "TOOLTIP"
+msgid "Change your email, avatar, password, profile"
+msgstr "שנה סיסמה"
+
+#. TRANS: Main menu option when logged in for access to user settings
+#: lib/action.php:545
+#, fuzzy
+msgid "Account"
+msgstr "אודות"
+
+#. TRANS: Tooltip for main menu option "Services"
+#: lib/action.php:547
+#, fuzzy
+msgctxt "TOOLTIP"
+msgid "Connect to services"
+msgstr "נכשלה ההפניה לשרת: %s"
+
#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:468
+#: lib/action.php:550
msgid "Connect"
msgstr "התחבר"
+#. TRANS: Tooltip for menu option "Admin"
+#: lib/action.php:553
+#, fuzzy
+msgctxt "TOOLTIP"
+msgid "Change site configuration"
+msgstr "הרשמות"
+
#. TRANS: Main menu option when logged in and site admin for access to site configuration
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:474 lib/groupnav.php:117
+#: lib/action.php:556 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr ""
#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:478
+#: lib/action.php:560
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr ""
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
+#: lib/action.php:563
+#, fuzzy
+msgctxt "MENU"
+msgid "Invite"
+msgstr "גודל לא חוקי."
+
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:487
+#: lib/action.php:569
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr ""
+#. TRANS: Main menu option when logged in to log out the current user
+#: lib/action.php:572
+#, fuzzy
+msgctxt "MENU"
+msgid "Logout"
+msgstr "צא"
+
+#. TRANS: Tooltip for main menu option "Register"
+#: lib/action.php:577
+#, fuzzy
+msgctxt "TOOLTIP"
+msgid "Create an account"
+msgstr "צור חשבון חדש"
+
+#. TRANS: Main menu option when not logged in to register a new account
+#: lib/action.php:580
+#, fuzzy
+msgctxt "MENU"
+msgid "Register"
+msgstr "הירשם"
+
#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:501
+#: lib/action.php:583
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr ""
+#. TRANS: Main menu option when not logged in to log in
+#: lib/action.php:586
+#, fuzzy
+msgctxt "MENU"
+msgid "Login"
+msgstr "היכנס"
+
+#. TRANS: Tooltip for main menu option "Help"
+#: lib/action.php:589
+#, fuzzy
+msgctxt "TOOLTIP"
+msgid "Help me!"
+msgstr "עזרה"
+
+#. TRANS: Main menu option for help on the StatusNet site
+#: lib/action.php:592
+#, fuzzy
+msgctxt "MENU"
+msgid "Help"
+msgstr "עזרה"
+
#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:513
+#: lib/action.php:595
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr ""
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
+#: lib/action.php:598
+#, fuzzy
+msgctxt "MENU"
+msgid "Search"
+msgstr "חיפוש"
+
+#. TRANS: DT element for site notice. String is hidden in default CSS.
+#. TRANS: Menu item for site administration
+#: lib/action.php:620 lib/adminpanelaction.php:387
+#, fuzzy
+msgid "Site notice"
+msgstr "הודעה חדשה"
+
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:605
+#: lib/action.php:687
msgid "Local views"
msgstr ""
+#. TRANS: DT element for page notice. String is hidden in default CSS.
+#: lib/action.php:757
+#, fuzzy
+msgid "Page notice"
+msgstr "הודעה חדשה"
+
+#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
+#: lib/action.php:858
+#, fuzzy
+msgid "Secondary site navigation"
+msgstr "הרשמות"
+
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:784
+#: lib/action.php:864
msgid "Help"
msgstr "עזרה"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:787
+#: lib/action.php:867
msgid "About"
msgstr "אודות"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:790
+#: lib/action.php:870
msgid "FAQ"
msgstr "רשימת שאלות נפוצות"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:795
+#: lib/action.php:875
msgid "TOS"
msgstr ""
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:799
+#: lib/action.php:879
msgid "Privacy"
msgstr "פרטיות"
-#. TRANS: Secondary navigation menu option.
-#: lib/action.php:802
+#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
+#: lib/action.php:882
msgid "Source"
msgstr "מקור"
-#. TRANS: Secondary navigation menu option leading to contact information on the StatusNet site.
-#: lib/action.php:808
+#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
+#. TRANS: StatusNet site, where to report bugs, ...
+#: lib/action.php:889
msgid "Contact"
msgstr "צור קשר"
-#: lib/action.php:810
+#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
+#: lib/action.php:892
msgid "Badge"
msgstr ""
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:839
+#: lib/action.php:921
msgid "StatusNet software license"
msgstr ""
+#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set.
+#. TRANS: Text between [] is a link description, text between () is the link itself.
+#. TRANS: Make sure there is no whitespace between "]" and "(".
+#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
+#: lib/action.php:928
+#, fuzzy, php-format
+msgid ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%)."
+msgstr ""
+"**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%"
+"site.broughtbyurl%%)."
+
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:849
+#: lib/action.php:931
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** הוא שרות ביקרובלוג."
@@ -3287,7 +6870,7 @@ msgstr "**%%site.name%%** הוא שרות ביקרובלוג."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:856
+#: lib/action.php:938
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -3298,54 +6881,122 @@ msgstr ""
"s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/"
"licensing/licenses/agpl-3.0.html)"
+#. TRANS: DT element for StatusNet site content license.
+#: lib/action.php:954
+#, fuzzy
+msgid "Site content license"
+msgstr "הודעה חדשה"
+
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:879
+#: lib/action.php:961
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:886
+#: lib/action.php:968
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:890
+#: lib/action.php:972
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:904
+#: lib/action.php:1004
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1243
+#: lib/action.php:1340
msgid "Pagination"
msgstr ""
+#. TRANS: Pagination message to go to a page displaying information more in the
+#. TRANS: present than the currently displayed information.
+#: lib/action.php:1351
+#, fuzzy
+msgid "After"
+msgstr "<< אחרי"
+
+#. TRANS: Pagination message to go to a page displaying information more in the
+#. TRANS: past than the currently displayed information.
+#: lib/action.php:1361
+#, fuzzy
+msgid "Before"
+msgstr "לפני >>"
+
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
-#: lib/activity.php:122
+#: lib/activity.php:125
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr ""
+
#. TRANS: Client exception thrown when there is no source attribute.
-#: lib/activityutils.php:203
+#: lib/activityutils.php:200
msgid "Can't handle remote content yet."
msgstr ""
#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet.
-#: lib/activityutils.php:240
+#: lib/activityutils.php:237
msgid "Can't handle embedded XML content yet."
msgstr ""
#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet.
-#: lib/activityutils.php:245
+#: lib/activityutils.php:242
msgid "Can't handle embedded Base64 content yet."
msgstr ""
@@ -3375,20 +7026,47 @@ msgstr ""
msgid "Unable to delete design setting."
msgstr ""
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:337
+#, fuzzy
+msgid "Basic site configuration"
+msgstr "הרשמות"
+
+#. TRANS: Menu item for site administration
+#: lib/adminpanelaction.php:339
+#, fuzzy
+msgctxt "MENU"
+msgid "Site"
+msgstr "הודעה חדשה"
+
#. TRANS: Menu item title/tooltip
#: lib/adminpanelaction.php:345
msgid "Design configuration"
msgstr ""
+#. TRANS: Menu item for site administration
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/adminpanelaction.php:347 lib/groupnav.php:135
+#, fuzzy
+msgctxt "MENU"
+msgid "Design"
+msgstr "אישי"
+
#. TRANS: Menu item title/tooltip
#: lib/adminpanelaction.php:353
msgid "User configuration"
msgstr "אין קוד אישור."
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:115
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
msgid "User"
-msgstr "מתשמש"
+msgstr "משתמש"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:361
+#, fuzzy
+msgid "Access configuration"
+msgstr "הרשמות"
#. TRANS: Menu item title/tooltip
#: lib/adminpanelaction.php:369
@@ -3400,176 +7078,307 @@ msgstr "אין קוד אישור."
msgid "Sessions configuration"
msgstr "אין קוד אישור."
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:385
+#, fuzzy
+msgid "Edit site notice"
+msgstr "הודעה חדשה"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:393
+#, fuzzy
+msgid "Snapshots configuration"
+msgstr "הרשמות"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:401
+msgid "Set site license"
+msgstr ""
+
#. TRANS: Client error 401.
#: lib/apiauth.php:111
msgid "API resource requires read-write access, but you only have read access."
msgstr ""
#. TRANS: OAuth exception thrown when no application is found for a given consumer key.
-#: lib/apiauth.php:175
+#: lib/apiauth.php:177
msgid "No application for that consumer key."
msgstr ""
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:212
+#: lib/apiauth.php:219
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:217
+#: lib/apiauth.php:224
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:258 lib/apiauth.php:290
+#: lib/apiauth.php:266 lib/apiauth.php:293
msgid "Could not authenticate you."
msgstr ""
+#. TRANS: Server error displayed when trying to create an anynymous OAuth consumer.
+#: lib/apioauthstore.php:45
+msgid "Could not create anonymous consumer."
+msgstr ""
+
+#. TRANS: Server error displayed when trying to create an anynymous OAuth application.
+#: lib/apioauthstore.php:69
+msgid "Could not create anonymous OAuth application."
+msgstr ""
+
+#. TRANS: Exception thrown when no token association could be found.
+#: lib/apioauthstore.php:151
+msgid ""
+"Could not find a profile and application associated with the request token."
+msgstr ""
+
+#. TRANS: Exception thrown when no access token can be issued.
+#: lib/apioauthstore.php:186
+msgid "Could not issue access token."
+msgstr ""
+
+#. TRANS: Server error displayed when a database error occurs.
+#: lib/apioauthstore.php:243
+#, fuzzy
+msgid "Database error inserting OAuth application user."
+msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:178
+#: lib/apioauthstore.php:285
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:182
+#: lib/apioauthstore.php:290
msgid "Failed to delete revoked token."
msgstr ""
-#. TRANS: Form legend.
-#: lib/applicationeditform.php:129
-msgid "Edit application"
-msgstr ""
-
#. TRANS: Form guide.
#: lib/applicationeditform.php:178
msgid "Icon for this application"
msgstr ""
#. TRANS: Form input field instructions.
-#: lib/applicationeditform.php:224
+#. TRANS: %d is the number of available characters for the description.
+#: lib/applicationeditform.php:201
+#, php-format
+msgid "Describe your application in %d character"
+msgid_plural "Describe your application in %d characters"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:205
+#, fuzzy
+msgid "Describe your application"
+msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות"
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:216
+#, fuzzy
+msgid "URL of the homepage of this application"
+msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר "
+
+#. TRANS: Form input field label.
+#: lib/applicationeditform.php:218
+#, fuzzy
+msgid "Source URL"
+msgstr "מקור"
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:225
msgid "Organization responsible for this application"
msgstr ""
#. TRANS: Form input field instructions.
-#: lib/applicationeditform.php:242
+#: lib/applicationeditform.php:234
+#, fuzzy
+msgid "URL for the homepage of the organization"
+msgstr "הכתובת של אתר הבית שלך, בלוג, או פרופיל באתר אחר "
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:243
msgid "URL to redirect to after authentication"
msgstr ""
#. TRANS: Radio button label for application type
-#: lib/applicationeditform.php:269
+#: lib/applicationeditform.php:271
msgid "Browser"
msgstr ""
#. TRANS: Radio button label for application type
-#: lib/applicationeditform.php:286
+#: lib/applicationeditform.php:288
msgid "Desktop"
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:288
+#: lib/applicationeditform.php:290
msgid "Type of application, browser or desktop"
msgstr ""
#. TRANS: Radio button label for access type.
-#: lib/applicationeditform.php:311
+#: lib/applicationeditform.php:314
msgid "Read-only"
msgstr ""
#. TRANS: Radio button label for access type.
-#: lib/applicationeditform.php:330
+#: lib/applicationeditform.php:334
msgid "Read-write"
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:332
+#: lib/applicationeditform.php:336
msgid "Default access for this application: read-only, or read-write"
msgstr ""
#. TRANS: Submit button title.
-#: lib/applicationeditform.php:349
+#: lib/applicationeditform.php:353
msgid "Cancel"
msgstr "בטל"
+#: lib/applicationlist.php:247
+msgid " by "
+msgstr ""
+
#. TRANS: Application access type
-#: lib/applicationlist.php:135
+#: lib/applicationlist.php:260
msgid "read-write"
msgstr ""
#. TRANS: Application access type
-#: lib/applicationlist.php:137
+#: lib/applicationlist.php:262
msgid "read-only"
msgstr ""
-#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only)
-#: lib/applicationlist.php:143
+#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only")
+#: lib/applicationlist.php:268
#, php-format
msgid "Approved %1$s - \"%2$s\" access."
msgstr ""
+#. TRANS: Access token in the application list.
+#. TRANS: %s are the first 7 characters of the access token.
+#: lib/applicationlist.php:282
+#, php-format
+msgid "Access token starting with: %s"
+msgstr ""
+
#. TRANS: Button label
-#: lib/applicationlist.php:158
+#: lib/applicationlist.php:298
msgctxt "BUTTON"
msgid "Revoke"
msgstr "שיחזור"
-#. TRANS: DT element label in attachment list.
-#: lib/attachmentlist.php:88
-msgid "Attachments"
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr ""
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
msgstr ""
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:265
+#: lib/attachmentlist.php:294
msgid "Author"
msgstr ""
+#. TRANS: DT element label in attachment list item.
+#: lib/attachmentlist.php:308
+#, fuzzy
+msgid "Provider"
+msgstr "פרופיל"
+
#. TRANS: Title.
-#: lib/attachmentnoticesection.php:68
+#: lib/attachmentnoticesection.php:67
msgid "Notices where this attachment appears"
msgstr ""
#. TRANS: Title.
-#: lib/attachmenttagcloudsection.php:49
+#: lib/attachmenttagcloudsection.php:48
msgid "Tags for this attachment"
msgstr ""
+#. TRANS: Exception thrown when a password change fails.
+#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227
+msgid "Password changing failed."
+msgstr ""
+
+#. TRANS: Exception thrown when a password change attempt fails because it is not allowed.
+#: lib/authenticationplugin.php:238
+msgid "Password changing is not allowed."
+msgstr ""
+
#. TRANS: Title for the form to block a user.
-#: lib/blockform.php:70
+#: lib/blockform.php:68
msgid "Block"
msgstr ""
-#: lib/channel.php:157 lib/channel.php:177
+#. TRANS: Title for command results.
+#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
msgstr ""
-#: lib/channel.php:229 lib/mailhandler.php:142
+#. TRANS: Title for command results.
+#: lib/channel.php:194
+msgid "AJAX error"
+msgstr ""
+
+#. TRANS: E-mail subject when a command has completed.
+#: lib/channel.php:233 lib/mailhandler.php:143
msgid "Command complete"
msgstr ""
-#: lib/channel.php:240
+#. TRANS: E-mail subject when a command has failed.
+#: lib/channel.php:244
msgid "Command failed"
msgstr ""
+#. TRANS: Command exception text shown when a notice ID is requested that does not exist.
+#: lib/command.php:82 lib/command.php:106
+#, fuzzy
+msgid "Notice with that id does not exist."
+msgstr "אין פרופיל תואם לפרופיל המרוחק "
+
+#. TRANS: Command exception text shown when a last user notice is requested and it does not exist.
+#. TRANS: Error text shown when a last user notice is requested and it does not exist.
+#: lib/command.php:99 lib/command.php:630
+#, fuzzy
+msgid "User has no last notice."
+msgstr "למשתמש אין פרופיל."
+
+#. TRANS: Message given requesting a profile for a non-existing user.
+#. TRANS: %s is the nickname of the user for which the profile could not be found.
+#: lib/command.php:128
+#, fuzzy, php-format
+msgid "Could not find a user with nickname %s."
+msgstr "עידכון המשתמש נכשל."
+
#. TRANS: Message given getting a non-existing user.
#. TRANS: %s is the nickname of the user that could not be found.
-#: lib/command.php:150
+#: lib/command.php:148
#, php-format
msgid "Could not find a local user with nickname %s."
msgstr ""
#. TRANS: Error text shown when an unimplemented command is given.
-#: lib/command.php:185
+#: lib/command.php:183
msgid "Sorry, this command is not yet implemented."
msgstr ""
#. TRANS: Command exception text shown when a user tries to nudge themselves.
-#: lib/command.php:231
+#: lib/command.php:229
msgid "It does not make a lot of sense to nudge yourself!"
msgstr ""
#. TRANS: Message given having nudged another user.
#. TRANS: %s is the nickname of the user that was nudged.
-#: lib/command.php:240
+#: lib/command.php:238
#, php-format
msgid "Nudge sent to %s."
msgstr ""
@@ -3578,7 +7387,7 @@ msgstr ""
#. TRANS: %1$s is the number of other user the user is subscribed to.
#. TRANS: %2$s is the number of users that are subscribed to the user.
#. TRANS: %3$s is the number of notices the user has sent.
-#: lib/command.php:270
+#: lib/command.php:268
#, php-format
msgid ""
"Subscriptions: %1$s\n"
@@ -3587,146 +7396,245 @@ msgid ""
msgstr ""
#. TRANS: Text shown when a notice has been marked as favourite successfully.
-#: lib/command.php:314
+#: lib/command.php:312
msgid "Notice marked as fave."
msgstr ""
#. TRANS: Message given having added a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: lib/command.php:360
+#: lib/command.php:357
#, php-format
msgid "%1$s joined group %2$s."
msgstr ""
#. TRANS: Message given having removed a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: lib/command.php:408
+#: lib/command.php:405
#, php-format
msgid "%1$s left group %2$s."
msgstr ""
+#. TRANS: Whois output.
+#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
+#: lib/command.php:426
+#, php-format
+msgctxt "WHOIS"
+msgid "%1$s (%2$s)"
+msgstr ""
+
+#. TRANS: Whois output. %s is the full name of the queried user.
+#: lib/command.php:430
+#, fuzzy, php-format
+msgid "Fullname: %s"
+msgstr "שם מלא"
+
+#. TRANS: Whois output. %s is the location of the queried user.
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is a location.
+#: lib/command.php:434 lib/mail.php:278
+#, fuzzy, php-format
+msgid "Location: %s"
+msgstr "מיקום"
+
+#. TRANS: Whois output. %s is the homepage of the queried user.
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is a homepage.
+#: lib/command.php:438 lib/mail.php:282
+#, fuzzy, php-format
+msgid "Homepage: %s"
+msgstr "אתר בית"
+
#. TRANS: Whois output. %s is the bio information of the queried user.
-#: lib/command.php:446
+#: lib/command.php:442
#, php-format
msgid "About: %s"
msgstr "אודות: %s"
#. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server).
-#: lib/command.php:474
+#. TRANS: %s is a remote profile.
+#: lib/command.php:471
#, php-format
msgid ""
"%s is a remote profile; you can only send direct messages to users on the "
"same server."
msgstr ""
-#. TRANS: Message given if content is too long.
+#. TRANS: Message given if content is too long. %1$sd is used for plural.
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
-#: lib/command.php:491 lib/xmppmanager.php:403
+#: lib/command.php:488
#, php-format
-msgid "Message too long - maximum is %1$d characters, you sent %2$d."
-msgstr ""
+msgid "Message too long - maximum is %1$d character, you sent %2$d."
+msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Error text shown sending a direct message fails with an unknown reason.
+#: lib/command.php:516
+#, fuzzy
+msgid "Error sending direct message."
+msgstr "שגיאה ביצירת שם המשתמש."
+
+#. TRANS: Message given having repeated a notice from another user.
+#. TRANS: %s is the name of the user for which the notice was repeated.
+#: lib/command.php:553
+#, fuzzy, php-format
+msgid "Notice from %s repeated."
+msgstr "הודעות"
#. TRANS: Error text shown when repeating a notice fails with an unknown reason.
-#: lib/command.php:557
+#: lib/command.php:556
msgid "Error repeating notice."
msgstr "שגיאה ביצירת שם המשתמש."
-#. TRANS: Message given if content of a notice for a reply is too long.
+#. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural.
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
-#: lib/command.php:592
+#: lib/command.php:591
#, php-format
-msgid "Notice too long - maximum is %1$d characters, you sent %2$d."
-msgstr ""
+msgid "Notice too long - maximum is %1$d character, you sent %2$d."
+msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Text shown having sent a reply to a notice successfully.
+#. TRANS: %s is the nickname of the user of the notice the reply was sent to.
+#: lib/command.php:604
+#, fuzzy, php-format
+msgid "Reply to %s sent."
+msgstr "תגובת עבור %s"
+
+#. TRANS: Error text shown when a reply to a notice fails with an unknown reason.
+#: lib/command.php:607
+#, fuzzy
+msgid "Error saving notice."
+msgstr "בעיה בשמירת ההודעה."
#. TRANS: Error text shown when no username was provided when issuing a subscribe command.
-#: lib/command.php:655
+#: lib/command.php:654
msgid "Specify the name of the user to subscribe to."
msgstr ""
+#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command.
+#: lib/command.php:663
+#, fuzzy
+msgid "Can't subscribe to OMB profiles by command."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
#. TRANS: Text shown after having subscribed to another user successfully.
#. TRANS: %s is the name of the user the subscription was requested for.
-#: lib/command.php:672
+#: lib/command.php:671
#, php-format
msgid "Subscribed to %s."
msgstr ""
#. TRANS: Error text shown when no username was provided when issuing an unsubscribe command.
#. TRANS: Error text shown when no username was provided when issuing the command.
-#: lib/command.php:694 lib/command.php:804
+#: lib/command.php:692 lib/command.php:803
msgid "Specify the name of the user to unsubscribe from."
msgstr ""
#. TRANS: Text shown after having unsubscribed from another user successfully.
#. TRANS: %s is the name of the user the unsubscription was requested for.
-#: lib/command.php:705
+#: lib/command.php:703
#, php-format
msgid "Unsubscribed from %s."
msgstr ""
#. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented.
#. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented.
-#: lib/command.php:724 lib/command.php:750
+#: lib/command.php:723 lib/command.php:749
msgid "Command not yet implemented."
msgstr ""
+#. TRANS: Text shown when issuing the command "off" successfully.
+#: lib/command.php:727
+#, fuzzy
+msgid "Notification off."
+msgstr "אין קוד אישור."
+
#. TRANS: Error text shown when the command "off" fails for an unknown reason.
-#: lib/command.php:731
+#: lib/command.php:730
msgid "Can't turn off notification."
msgstr ""
+#. TRANS: Text shown when issuing the command "on" successfully.
+#: lib/command.php:753
+#, fuzzy
+msgid "Notification on."
+msgstr "אין קוד אישור."
+
#. TRANS: Error text shown when the command "on" fails for an unknown reason.
-#: lib/command.php:757
+#: lib/command.php:756
msgid "Can't turn on notification."
msgstr ""
#. TRANS: Error text shown when issuing the login command while login is disabled.
-#: lib/command.php:771
+#: lib/command.php:770
msgid "Login command is disabled."
msgstr ""
#. TRANS: Text shown after issuing the login command successfully.
#. TRANS: %s is a logon link..
-#: lib/command.php:784
+#: lib/command.php:783
#, php-format
msgid "This link is useable only once and is valid for only 2 minutes: %s."
msgstr ""
#. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user).
#. TRANS: %s is the name of the user the unsubscription was requested for.
-#: lib/command.php:813
+#: lib/command.php:812
#, php-format
msgid "Unsubscribed %s."
msgstr ""
+#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions.
+#: lib/command.php:830
+#, fuzzy
+msgid "You are not subscribed to anyone."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
#. TRANS: Text shown after requesting other users a user is subscribed to.
#. TRANS: This message supports plural forms. This message is followed by a
#. TRANS: hard coded space and a comma separated list of subscribed users.
-#: lib/command.php:836
+#: lib/command.php:835
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
+#. TRANS: Text shown after requesting other users that are subscribed to a user
+#. TRANS: (followers) without having any subscribers.
+#: lib/command.php:857
+#, fuzzy
+msgid "No one is subscribed to you."
+msgstr "הרשמה מרוחקת"
+
#. TRANS: Text shown after requesting other users that are subscribed to a user (followers).
#. TRANS: This message supports plural forms. This message is followed by a
#. TRANS: hard coded space and a comma separated list of subscribing users.
-#: lib/command.php:863
+#: lib/command.php:862
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "הרשמה מרוחקת"
msgstr[1] "הרשמה מרוחקת"
+#. TRANS: Text shown after requesting groups a user is subscribed to without having
+#. TRANS: any group subscriptions.
+#: lib/command.php:884
+#, fuzzy
+msgid "You are not a member of any groups."
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
#. TRANS: Text shown after requesting groups a user is subscribed to.
#. TRANS: This message supports plural forms. This message is followed by a
#. TRANS: hard coded space and a comma separated list of subscribed groups.
-#: lib/command.php:890
+#: lib/command.php:889
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings.
-#: lib/command.php:905
+#: lib/command.php:904
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@@ -3768,64 +7676,142 @@ msgid ""
"tracking - not yet implemented.\n"
msgstr ""
-#: lib/common.php:136
-msgid "I looked for configuration files in the following places: "
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#: lib/common.php:150
+msgid "No configuration file found."
msgstr ""
-#: lib/common.php:138
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#. TRANS: Is followed by a list of directories (separated by HTML breaks).
+#: lib/common.php:153
+msgid "I looked for configuration files in the following places:"
+msgstr ""
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#: lib/common.php:156
msgid "You may wish to run the installer to fix this."
msgstr ""
-#: lib/common.php:139
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#. TRANS: The text is link text that leads to the installer page.
+#: lib/common.php:160
msgid "Go to the installer."
msgstr ""
-#: lib/connectsettingsaction.php:110
+#. TRANS: Menu item for Instant Messaging settings.
+#: lib/connectsettingsaction.php:106
+msgctxt "MENU"
msgid "IM"
msgstr ""
-#: lib/connectsettingsaction.php:111
+#. TRANS: Tooltip for Instant Messaging menu item.
+#: lib/connectsettingsaction.php:108
msgid "Updates by instant messenger (IM)"
msgstr ""
-#: lib/connectsettingsaction.php:116
+#. TRANS: Menu item for Short Message Service settings.
+#: lib/connectsettingsaction.php:113
+msgctxt "MENU"
+msgid "SMS"
+msgstr ""
+
+#. TRANS: Tooltip for Short Message Service menu item.
+#: lib/connectsettingsaction.php:115
msgid "Updates by SMS"
msgstr ""
-#: lib/connectsettingsaction.php:121
+#. TRANS: Menu item for OuAth connection settings.
+#: lib/connectsettingsaction.php:120
+msgctxt "MENU"
+msgid "Connections"
+msgstr ""
+
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
+#: lib/connectsettingsaction.php:122
msgid "Authorized connected applications"
msgstr ""
-#: lib/dberroraction.php:60
+#: lib/dberroraction.php:59
msgid "Database error"
msgstr ""
-#: lib/designsettings.php:418
+#. TRANS: Label in form on profile design page.
+#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
+#: lib/designsettings.php:104
+#, fuzzy
+msgid "Upload file"
+msgstr "ההעלה"
+
+#. TRANS: Instructions for form on profile design page.
+#: lib/designsettings.php:109
+#, fuzzy
+msgid ""
+"You can upload your personal background image. The maximum file size is 2MB."
+msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
+
+#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image.
+#: lib/designsettings.php:139
+msgctxt "RADIO"
+msgid "On"
+msgstr ""
+
+#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image.
+#: lib/designsettings.php:156
+msgctxt "RADIO"
+msgid "Off"
+msgstr ""
+
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:264
+msgctxt "BUTTON"
+msgid "Reset"
+msgstr ""
+
+#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
+#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr ""
-#: lib/disfavorform.php:114 lib/disfavorform.php:140
+#: lib/disfavorform.php:114 lib/disfavorform.php:144
msgid "Disfavor this notice"
msgstr ""
-#: lib/feed.php:85
+#: lib/favorform.php:114 lib/favorform.php:143
+#, fuzzy
+msgid "Favor this notice"
+msgstr "אין הודעה כזו."
+
+#: lib/feed.php:84
msgid "RSS 1.0"
msgstr ""
-#: lib/feed.php:87
+#: lib/feed.php:86
msgid "RSS 2.0"
msgstr ""
-#: lib/feed.php:89
+#: lib/feed.php:88
msgid "Atom"
msgstr ""
-#: lib/feed.php:91
+#: lib/feed.php:90
msgid "FOAF"
msgstr ""
-#: lib/feedlist.php:64
-msgid "Export data"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr ""
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
+#. TRANS: Header for feed links (h2).
+#: lib/feedlist.php:66
+msgid "Feeds"
msgstr ""
#: lib/galleryaction.php:121
@@ -3857,11 +7843,42 @@ msgstr ""
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:187
-#, php-format
-msgid "Extra nicknames for the group, comma- or space- separated, max %d"
+#: lib/groupeditform.php:154
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr "1 עד 64 אותיות אנגליות קטנות או מספרים, ללא סימני פיסוק או רווחים."
+
+#: 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"
+msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אותיות"
+
+#: lib/groupeditform.php:170
+#, php-format
+msgid "Describe the group or topic in %d character or less"
+msgid_plural "Describe the group or topic in %d characters or less"
+msgstr[0] ""
+msgstr[1] ""
+
+#: lib/groupeditform.php:182
+msgid ""
+"Location for the group, if any, like \"City, State (or Region), Country\"."
+msgstr ""
+
+#: lib/groupeditform.php:190
+#, php-format
+msgid ""
+"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
+"alias allowed."
+msgid_plural ""
+"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
+"aliases allowed."
+msgstr[0] ""
+msgstr[1] ""
+
#. TRANS: Menu item in the group navigation page.
#: lib/groupnav.php:86
msgctxt "MENU"
@@ -3934,15 +7951,19 @@ msgctxt "TOOLTIP"
msgid "Add or edit %s design"
msgstr ""
+#. TRANS: Title for groups with the most members section.
#: lib/groupsbymemberssection.php:71
msgid "Groups with most members"
msgstr ""
+#. TRANS: Title for groups with the most posts section.
#: lib/groupsbypostssection.php:71
msgid "Groups with most posts"
msgstr ""
-#: lib/grouptagcloudsection.php:56
+#. TRANS: Title for group tag cloud section.
+#. TRANS: %s is a group name.
+#: lib/grouptagcloudsection.php:57
#, php-format
msgid "Tags in %s group's notices"
msgstr ""
@@ -3956,30 +7977,53 @@ msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לק
msgid "Unsupported image file format."
msgstr "פורמט התמונה אינו נתמך."
-#: lib/imagefile.php:93
+#. TRANS: Exception thrown when too large a file is uploaded.
+#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
+#: lib/imagefile.php:90
+#, fuzzy, php-format
+msgid "That file is too big. The maximum file size is %s."
+msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
+
+#: lib/imagefile.php:95
msgid "Partial upload."
msgstr "העלאה חלקית."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:101 lib/mediafile.php:179
-msgid "System error uploading file."
-msgstr "שגיאת מערכת בהעלאת הקובץ."
-
-#: lib/imagefile.php:109
+#: lib/imagefile.php:111
msgid "Not an image or corrupt file."
msgstr "זהו לא קובץ תמונה, או שחל בו שיבוש."
-#: lib/imagefile.php:163 lib/imagefile.php:224
+#: lib/imagefile.php:160
+#, fuzzy
+msgid "Lost our file."
+msgstr "אין הודעה כזו."
+
+#: lib/imagefile.php:197 lib/imagefile.php:237
msgid "Unknown file type"
msgstr ""
-#: lib/imagefile.php:244
-msgid "MB"
-msgstr ""
+#. TRANS: Number of megabytes. %d is the number.
+#: lib/imagefile.php:283
+#, php-format
+msgid "%dMB"
+msgid_plural "%dMB"
+msgstr[0] ""
+msgstr[1] ""
-#: lib/imagefile.php:246
-msgid "kB"
-msgstr ""
+#. TRANS: Number of kilobytes. %d is the number.
+#: lib/imagefile.php:287
+#, php-format
+msgid "%dkB"
+msgid_plural "%dkB"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Number of bytes. %d is the number.
+#: lib/imagefile.php:290
+#, php-format
+msgid "%dB"
+msgid_plural "%dB"
+msgstr[0] ""
+msgstr[1] ""
#: lib/jabber.php:387
#, php-format
@@ -3991,45 +8035,101 @@ msgstr ""
msgid "Unknown inbox source %d."
msgstr ""
+#: lib/leaveform.php:114
+#, fuzzy
+msgid "Leave"
+msgstr "שמור"
+
+#: lib/logingroupnav.php:80
+#, fuzzy
+msgid "Login with a username and password"
+msgstr "שם המשתמש או הסיסמה לא חוקיים"
+
+#: lib/logingroupnav.php:86
+#, fuzzy
+msgid "Sign up for a new account"
+msgstr "צור חשבון חדש"
+
+#. TRANS: Subject for address confirmation email.
+#: lib/mail.php:174
+#, fuzzy
+msgid "Email address confirmation"
+msgstr "שגיאה בשמירת אישור הכתובת."
+
#. TRANS: Body for address confirmation email.
-#: lib/mail.php:177
+#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
+#. TRANS: %3$s is the URL to confirm at.
+#: lib/mail.php:179
#, php-format
msgid ""
-"Hey, %s.\n"
+"Hey, %1$s.\n"
"\n"
-"Someone just entered this email address on %s.\n"
+"Someone just entered this email address on %2$s.\n"
"\n"
"If it was you, and you want to confirm your entry, use the URL below:\n"
"\n"
-"\t%s\n"
+"\t%3$s\n"
"\n"
"If not, just ignore this message.\n"
"\n"
"Thanks for your time, \n"
-"%s\n"
+"%2$s\n"
msgstr ""
-#. TRANS: Subject of new-subscriber notification e-mail
-#: lib/mail.php:243
+#. TRANS: Subject of new-subscriber notification e-mail.
+#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
+#: lib/mail.php:246
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s"
-#: lib/mail.php:248
+#. TRANS: This is a paragraph in a new-subscriber e-mail.
+#. TRANS: %s is a URL where the subscriber can be reported as abusive.
+#: lib/mail.php:253
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
"your subscribers list and report as spam to site administrators at %s"
msgstr ""
-#. TRANS: Subject of notification mail for new posting email address
-#: lib/mail.php:304
+#. TRANS: Main body of new-subscriber notification e-mail.
+#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename,
+#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
+#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
+#. TRANS: %7$s is a link to the addressed user's e-mail settings.
+#: lib/mail.php:263
+#, 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"
+"%2$s.\n"
+"\n"
+"----\n"
+"Change your email address or notification options at %7$s\n"
+msgstr ""
+
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is biographical information.
+#: lib/mail.php:286
+#, fuzzy, php-format
+msgid "Bio: %s"
+msgstr "אודות: %s"
+
+#. TRANS: Subject of notification mail for new posting email address.
+#. TRANS: %s is the StatusNet sitename.
+#: lib/mail.php:315
#, php-format
msgid "New email address for posting to %s"
msgstr ""
-#. TRANS: Body of notification mail for new posting email address
-#: lib/mail.php:308
+#. TRANS: Body of notification mail for new posting email address.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
+#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
+#: lib/mail.php:321
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -4039,23 +8139,40 @@ msgid ""
"More email instructions at %3$s.\n"
"\n"
"Faithfully yours,\n"
-"%4$s"
+"%1$s"
msgstr ""
-#. TRANS: Main body heading for SMS-by-email address confirmation message
-#: lib/mail.php:463
+#. TRANS: Subject line for SMS-by-email notification messages.
+#. TRANS: %s is the posting user's nickname.
+#: lib/mail.php:442
+#, fuzzy, php-format
+msgid "%s status"
+msgstr "הסטטוס של %1$s ב-%2$s "
+
+#. TRANS: Subject line for SMS-by-email address confirmation message.
+#: lib/mail.php:468
+#, fuzzy
+msgid "SMS confirmation"
+msgstr "אין קוד אישור."
+
+#. TRANS: Main body heading for SMS-by-email address confirmation message.
+#. TRANS: %s is the addressed user's nickname.
+#: lib/mail.php:472
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
-#. TRANS: Subject for 'nudge' notification email
-#: lib/mail.php:484
+#. TRANS: Subject for 'nudge' notification email.
+#. TRANS: %s is the nudging user.
+#: lib/mail.php:493
#, php-format
msgid "You've been nudged by %s"
msgstr ""
-#. TRANS: Body for 'nudge' notification email
-#: lib/mail.php:489
+#. TRANS: Body for 'nudge' notification email.
+#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
+#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
+#: lib/mail.php:500
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -4071,14 +8188,18 @@ msgid ""
"%4$s\n"
msgstr ""
-#. TRANS: Subject for direct-message notification email
-#: lib/mail.php:536
+#. TRANS: Subject for direct-message notification email.
+#. TRANS: %s is the sending user's nickname.
+#: lib/mail.php:547
#, php-format
msgid "New private message from %s"
msgstr ""
-#. TRANS: Body for direct-message notification email
-#: lib/mail.php:541
+#. TRANS: Body for direct-message notification email.
+#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
+#. TRANS: %3$s is the message content, %4$s a URL to the message,
+#. TRANS: %5$s is the StatusNet sitename.
+#: lib/mail.php:555
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -4097,8 +8218,19 @@ msgid ""
"%5$s\n"
msgstr ""
-#. TRANS: Body for favorite notification email
-#: lib/mail.php:592
+#. TRANS: Subject for favorite notification e-mail.
+#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
+#: lib/mail.php:607
+#, php-format
+msgid "%1$s (@%2$s) added your notice as a favorite"
+msgstr ""
+
+#. TRANS: Body for favorite notification e-mail.
+#. TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created,
+#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
+#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
+#. TRANS: %7$s is the adding user's nickname.
+#: lib/mail.php:614
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -4120,7 +8252,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:651
+#: lib/mail.php:672
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -4128,13 +8260,20 @@ msgid ""
"\t%s"
msgstr ""
-#: lib/mail.php:657
+#. TRANS: E-mail subject for notice notification.
+#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
+#: lib/mail.php:680
#, php-format
-msgid "%s (@%s) sent a notice to your attention"
+msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr ""
#. TRANS: Body of @-reply notification e-mail.
-#: lib/mail.php:660
+#. TRANS: %1$s is the sending user's long name, $2$s is the StatusNet sitename,
+#. TRANS: %3$s is a URL to the notice, %4$s is the notice text,
+#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
+#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
+#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
+#: lib/mail.php:688
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -4171,66 +8310,61 @@ msgid ""
"users in conversation. People can send you messages for your eyes only."
msgstr ""
-#: lib/mailbox.php:228 lib/noticelist.php:506
+#: lib/mailbox.php:228 lib/noticelist.php:522
msgid "from"
msgstr ""
+#: lib/mailhandler.php:37
+#, fuzzy
+msgid "Could not parse message."
+msgstr "עידכון המשתמש נכשל."
+
+#: lib/mailhandler.php:42
+#, fuzzy
+msgid "Not a registered user."
+msgstr "זהו לא קוד אישור."
+
+#: lib/mailhandler.php:46
+#, fuzzy
+msgid "Sorry, that is not your incoming email address."
+msgstr "זוהי כתובת מסרים מידיים שגויה."
+
#: lib/mailhandler.php:50
msgid "Sorry, no incoming email allowed."
msgstr ""
+#: lib/mailhandler.php:229
+#, fuzzy, php-format
+msgid "Unsupported message type: %s"
+msgstr "פורמט התמונה אינו נתמך."
+
#. TRANS: Client exception thrown when a database error was thrown during a file upload operation.
-#: lib/mediafile.php:99 lib/mediafile.php:125
+#: lib/mediafile.php:102 lib/mediafile.php:174
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:145
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:151
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:157
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:165
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:169
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:173
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
-#: lib/mediafile.php:189 lib/mediafile.php:232
+#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
msgstr ""
#. TRANS: Client exception thrown when a file upload operation fails because the file could
#. TRANS: not be moved from the temporary folder to the permanent file location.
-#: lib/mediafile.php:209 lib/mediafile.php:251
+#: lib/mediafile.php:258 lib/mediafile.php:300
msgid "File could not be moved to destination directory."
msgstr ""
+#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME
+#. TRANS: type of the uploaded file could not be determined.
+#: lib/mediafile.php:265 lib/mediafile.php:306
+#, fuzzy
+msgid "Could not determine file's MIME type."
+msgstr "עידכון המשתמש נכשל."
+
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:340
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -4239,7 +8373,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:345
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -4248,10 +8382,54 @@ msgstr ""
msgid "Send a direct notice"
msgstr ""
-#: lib/messageform.php:146
+#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list.
+#: lib/messageform.php:137
+msgid "Select recipient:"
+msgstr ""
+
+#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message.
+#: lib/messageform.php:150
+msgid "No mutual subscribers."
+msgstr ""
+
+#: lib/messageform.php:153
msgid "To"
msgstr "אל"
+#: lib/messageform.php:166 lib/noticeform.php:186
+#, fuzzy
+msgid "Available characters"
+msgstr "לפחות 6 אותיות"
+
+#: lib/messageform.php:185 lib/noticeform.php:237
+#, fuzzy
+msgctxt "Send button for sending notice"
+msgid "Send"
+msgstr "שלח"
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:165
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים."
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:178
+msgid "Nickname cannot be empty."
+msgstr ""
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:191
+#, php-format
+msgid "Nickname cannot be more than %d character long."
+msgid_plural "Nickname cannot be more than %d characters long."
+msgstr[0] ""
+msgstr[1] ""
+
+#: lib/noticeform.php:160
+#, fuzzy
+msgid "Send a notice"
+msgstr "הודעה חדשה"
+
#: lib/noticeform.php:174
#, php-format
msgid "What's up, %s?"
@@ -4265,48 +8443,79 @@ msgstr ""
msgid "Attach a file"
msgstr ""
+#: lib/noticeform.php:213
+#, fuzzy
+msgid "Share my location"
+msgstr "שמירת הפרופיל נכשלה."
+
+#: lib/noticeform.php:216
+#, fuzzy
+msgid "Do not share my location"
+msgstr "שמירת הפרופיל נכשלה."
+
#: lib/noticeform.php:217
msgid ""
"Sorry, retrieving your geo location is taking longer than expected, please "
"try again later"
msgstr ""
+#. TRANS: Used in coordinates as abbreviation of north
+#: lib/noticelist.php:452
+#, fuzzy
+msgid "N"
+msgstr "לא"
+
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:438
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:440
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:442
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:444
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:453
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:502
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:630
+#: lib/noticelist.php:584
+#, fuzzy
+msgid "in context"
+msgstr "אין תוכן!"
+
+#: lib/noticelist.php:619
+#, fuzzy
+msgid "Repeated by"
+msgstr "צור"
+
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr ""
-#: lib/noticelist.php:631
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "תגובות"
+#: lib/noticelist.php:691
+#, fuzzy
+msgid "Notice repeated"
+msgstr "הודעות"
+
#: lib/nudgeform.php:116
msgid "Nudge this user"
msgstr ""
@@ -4319,58 +8528,63 @@ msgstr ""
msgid "Send a nudge to this user"
msgstr ""
-#: lib/oauthstore.php:283
+#: lib/oauthstore.php:294
msgid "Error inserting new profile."
msgstr ""
-#: lib/oauthstore.php:291
+#: lib/oauthstore.php:302
msgid "Error inserting avatar."
msgstr ""
-#: lib/oauthstore.php:311
+#: lib/oauthstore.php:322
msgid "Error inserting remote profile."
msgstr ""
#. TRANS: Exception thrown when a notice is denied because it has been sent before.
-#: lib/oauthstore.php:346
+#: lib/oauthstore.php:362
msgid "Duplicate notice."
msgstr ""
-#: lib/oauthstore.php:491
+#: lib/oauthstore.php:507
msgid "Couldn't insert new subscription."
msgstr "הכנסת מנוי חדש נכשלה."
-#: lib/personalgroupnav.php:99
+#: lib/personalgroupnav.php:102
msgid "Personal"
msgstr "אישי"
-#: lib/personalgroupnav.php:104
+#: lib/personalgroupnav.php:107
msgid "Replies"
msgstr "תגובות"
-#: lib/personalgroupnav.php:114
+#: lib/personalgroupnav.php:117
msgid "Favorites"
msgstr "מועדפים"
-#: lib/personalgroupnav.php:125
+#: lib/personalgroupnav.php:128
msgid "Inbox"
msgstr ""
-#: lib/personalgroupnav.php:126
+#: lib/personalgroupnav.php:129
msgid "Your incoming messages"
msgstr ""
-#: lib/personalgroupnav.php:130
+#: lib/personalgroupnav.php:133
msgid "Outbox"
msgstr ""
+#: lib/personalgroupnav.php:134
+#, fuzzy
+msgid "Your sent messages"
+msgstr "הודעה חדשה"
+
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr ""
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:116
+#: lib/plugin.php:121
msgid "Unknown"
msgstr ""
@@ -4386,6 +8600,16 @@ msgstr "כל המנויים"
msgid "Subscribers"
msgstr "מנויים"
+#: lib/profileaction.php:161
+#, fuzzy
+msgid "All subscribers"
+msgstr "מנויים"
+
+#: lib/profileaction.php:191
+#, fuzzy
+msgid "User ID"
+msgstr "מתשמש"
+
#: lib/profileaction.php:196
msgid "Member since"
msgstr "חבר מאז"
@@ -4395,6 +8619,11 @@ msgstr "חבר מאז"
msgid "Daily average"
msgstr ""
+#: lib/profileaction.php:264
+#, fuzzy
+msgid "All groups"
+msgstr "קבוצות"
+
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -4415,29 +8644,73 @@ msgstr ""
msgid "Featured"
msgstr ""
+#: lib/publicgroupnav.php:92
+#, fuzzy
+msgid "Popular"
+msgstr "אנשים"
+
+#: lib/redirectingaction.php:95
+#, fuzzy
+msgid "No return-to arguments."
+msgstr "אין מסמך כזה."
+
+#: lib/repeatform.php:107
+#, fuzzy
+msgid "Repeat this notice?"
+msgstr "אין הודעה כזו."
+
#: lib/repeatform.php:132
msgid "Yes"
msgstr "כן"
-#: lib/router.php:709
-msgid "No single user defined for single-user mode."
+#: lib/repeatform.php:132
+#, fuzzy
+msgid "Repeat this notice"
+msgstr "אין הודעה כזו."
+
+#: lib/revokeroleform.php:91
+#, fuzzy, php-format
+msgid "Revoke the \"%s\" role from this user"
+msgstr "אין משתמש כזה."
+
+#. TRANS: Client error on action trying to visit a non-existing page.
+#: lib/router.php:974
+msgid "Page not found."
msgstr ""
#: lib/sandboxform.php:67
msgid "Sandbox"
msgstr ""
+#: lib/sandboxform.php:78
+#, fuzzy
+msgid "Sandbox this user"
+msgstr "אין משתמש כזה."
+
+#. TRANS: Fieldset legend for the search form.
+#: lib/searchaction.php:120
+#, fuzzy
+msgid "Search site"
+msgstr "חיפוש"
+
#. TRANS: Used as a field label for the field where one or more keywords
#. TRANS: for searching can be entered.
-#: lib/searchaction.php:129
+#: lib/searchaction.php:128
msgid "Keyword(s)"
msgstr ""
+#. TRANS: Button text for searching site.
#: lib/searchaction.php:130
msgctxt "BUTTON"
msgid "Search"
msgstr ""
+#. TRANS: Definition list item with instructions on how to get (better) search results.
+#: lib/searchaction.php:170
+#, fuzzy
+msgid "Search help"
+msgstr "חיפוש"
+
#: lib/searchgroupnav.php:80
msgid "People"
msgstr "אנשים"
@@ -4462,6 +8735,26 @@ msgstr ""
msgid "More..."
msgstr ""
+#: lib/silenceform.php:67
+#, fuzzy
+msgid "Silence"
+msgstr "הודעה חדשה"
+
+#: lib/silenceform.php:78
+#, fuzzy
+msgid "Silence this user"
+msgstr "אין משתמש כזה."
+
+#: lib/subgroupnav.php:83
+#, fuzzy, php-format
+msgid "People %s subscribes to"
+msgstr "הרשמה מרוחקת"
+
+#: lib/subgroupnav.php:91
+#, fuzzy, php-format
+msgid "People subscribed to %s"
+msgstr "הרשמה מרוחקת"
+
#: lib/subgroupnav.php:99
#, php-format
msgid "Groups %s is a member of"
@@ -4486,6 +8779,16 @@ msgstr ""
msgid "People Tagcloud as tagged"
msgstr ""
+#: lib/tagcloudsection.php:56
+#, fuzzy
+msgid "None"
+msgstr "לא"
+
+#. TRANS: Server exception displayed if a theme name was invalid.
+#: lib/theme.php:74
+msgid "Invalid theme name."
+msgstr ""
+
#: lib/themeuploader.php:50
msgid "This server cannot handle theme uploads without ZIP support."
msgstr ""
@@ -4494,92 +8797,155 @@ msgstr ""
msgid "The theme file is missing or the upload failed."
msgstr ""
+#: lib/themeuploader.php:91 lib/themeuploader.php:102
+#: lib/themeuploader.php:279 lib/themeuploader.php:283
+#: lib/themeuploader.php:291 lib/themeuploader.php:298
+#, fuzzy
+msgid "Failed saving theme."
+msgstr "עדכון התמונה נכשל."
+
#: lib/themeuploader.php:147
msgid "Invalid theme: bad directory structure."
msgstr ""
#: lib/themeuploader.php:166
#, php-format
-msgid "Uploaded theme is too large; must be less than %d bytes uncompressed."
-msgstr ""
+msgid "Uploaded theme is too large; must be less than %d byte uncompressed."
+msgid_plural ""
+"Uploaded theme is too large; must be less than %d bytes uncompressed."
+msgstr[0] ""
+msgstr[1] ""
-#: lib/themeuploader.php:178
+#: lib/themeuploader.php:179
msgid "Invalid theme archive: missing file css/display.css"
msgstr ""
-#: lib/themeuploader.php:218
+#: lib/themeuploader.php:219
msgid ""
"Theme contains invalid file or folder name. Stick with ASCII letters, "
"digits, underscore, and minus sign."
msgstr ""
-#: lib/themeuploader.php:224
+#: lib/themeuploader.php:225
msgid "Theme contains unsafe file extension names; may be unsafe."
msgstr ""
-#: lib/themeuploader.php:241
+#: lib/themeuploader.php:242
#, php-format
msgid "Theme contains file of type '.%s', which is not allowed."
msgstr ""
+#: lib/themeuploader.php:260
+#, fuzzy
+msgid "Error opening theme archive."
+msgstr "שגיאה בעדכון פרופיל מרוחק"
+
#: lib/topposterssection.php:74
msgid "Top posters"
msgstr ""
+#. TRANS: Title for the form to unblock a user.
+#: lib/unblockform.php:67
+msgctxt "TITLE"
+msgid "Unblock"
+msgstr ""
+
#: lib/unsandboxform.php:69
msgid "Unsandbox"
msgstr ""
+#: lib/unsandboxform.php:80
+#, fuzzy
+msgid "Unsandbox this user"
+msgstr "אין משתמש כזה."
+
#: lib/unsilenceform.php:67
msgid "Unsilence"
msgstr ""
+#: lib/unsilenceform.php:78
+#, fuzzy
+msgid "Unsilence this user"
+msgstr "אין משתמש כזה."
+
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+#, fuzzy
+msgid "Unsubscribe from this user"
+msgstr "לא שלחנו אלינו את הפרופיל הזה"
+
#: lib/unsubscribeform.php:137
msgid "Unsubscribe"
msgstr "בטל מנוי"
-#: lib/userprofile.php:234 lib/userprofile.php:248
+#. TRANS: Exception text shown when no profile can be found for a user.
+#. TRANS: %1$s is a user nickname, $2$d is a user ID (number).
+#: lib/usernoprofileexception.php:60
+#, php-format
+msgid "User %1$s (%2$d) has no profile record."
+msgstr ""
+
+#: lib/userprofile.php:119
+#, fuzzy
+msgid "Edit Avatar"
+msgstr "תמונה"
+
+#: lib/userprofile.php:236 lib/userprofile.php:250
msgid "User actions"
msgstr ""
-#: lib/userprofile.php:237
+#: lib/userprofile.php:239
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:264
+#: lib/userprofile.php:265
+#, fuzzy
+msgid "Edit profile settings"
+msgstr "הגדרות הפרופיל"
+
+#: lib/userprofile.php:266
msgid "Edit"
msgstr ""
-#: lib/userprofile.php:287
+#: lib/userprofile.php:289
msgid "Send a direct message to this user"
msgstr ""
-#: lib/userprofile.php:326
+#: lib/userprofile.php:290
+#, fuzzy
+msgid "Message"
+msgstr "הודעה חדשה"
+
+#: lib/userprofile.php:331
msgid "Moderate"
msgstr ""
-#: lib/userprofile.php:366
+#: lib/userprofile.php:369
+#, fuzzy
+msgid "User role"
+msgstr "למשתמש אין פרופיל."
+
+#: lib/userprofile.php:371
msgctxt "role"
msgid "Administrator"
msgstr ""
-#: lib/userprofile.php:367
+#: lib/userprofile.php:372
msgctxt "role"
msgid "Moderator"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1103
+#: lib/util.php:1306
msgid "a few seconds ago"
msgstr "לפני מספר שניות"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1106
+#: lib/util.php:1309
msgid "about a minute ago"
msgstr "לפני כדקה"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1110
+#: lib/util.php:1313
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -4587,12 +8953,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1113
+#: lib/util.php:1316
msgid "about an hour ago"
msgstr "לפני כשעה"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1117
+#: lib/util.php:1320
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -4600,12 +8966,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1120
+#: lib/util.php:1323
msgid "about a day ago"
msgstr "לפני כיום"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1124
+#: lib/util.php:1327
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -4613,12 +8979,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1127
+#: lib/util.php:1330
msgid "about a month ago"
msgstr "לפני כחודש"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1131
+#: lib/util.php:1334
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -4626,11 +8992,49 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1134
+#: lib/util.php:1337
msgid "about a year ago"
msgstr "לפני כשנה"
-#: lib/webcolor.php:123
+#: lib/webcolor.php:80
+#, fuzzy, php-format
+msgid "%s is not a valid color!"
+msgstr "לאתר הבית יש כתובת לא חוקית."
+
+#. TRANS: Validation error for a web colour.
+#. TRANS: %s is the provided (invalid) text for colour.
+#: lib/webcolor.php:120
#, php-format
-msgid "%s is not a valid color! Use 3 or 6 hex chars."
+msgid "%s is not a valid color! Use 3 or 6 hex characters."
+msgstr ""
+
+#. TRANS: %s is the URL to the StatusNet site's Instant Messaging settings.
+#: lib/xmppmanager.php:287
+#, php-format
+msgid "Unknown user. Go to %s to add your address to your account"
+msgstr ""
+
+#. TRANS: Response to XMPP source when it sent too long a message.
+#. TRANS: %1$d the maximum number of allowed characters (used for plural), %2$d is the sent number.
+#: lib/xmppmanager.php:406
+#, php-format
+msgid "Message too long. Maximum is %1$d character, you sent %2$d."
+msgid_plural "Message too long. Maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Exception.
+#: lib/xrd.php:64
+msgid "Invalid XML."
+msgstr ""
+
+#. TRANS: Exception.
+#: lib/xrd.php:69
+msgid "Invalid XML, missing XRD root."
+msgstr ""
+
+#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
+#: scripts/restoreuser.php:62
+#, php-format
+msgid "Getting backup from file '%s'."
msgstr ""
diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po
index f53d6917f6..a520f22168 100644
--- a/locale/hsb/LC_MESSAGES/statusnet.po
+++ b/locale/hsb/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Upper Sorbian (Hornjoserbsce)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: McDutchie
@@ -11,18 +11,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:53+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:47+0000\n"
"Language-Team: Upper Sorbian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: hsb\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || "
"n%100==4) ? 2 : 3)\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -54,7 +54,7 @@ msgstr "Priwatny"
#. TRANS: Checkbox instructions for admin setting "Invite only".
#: actions/accessadminpanel.php:164
msgid "Make registration invitation only."
-msgstr ""
+msgstr "Registrowanje jenož po přeprošenju móžno."
#. TRANS: Checkbox label for configuring site as invite only.
#: actions/accessadminpanel.php:166
@@ -77,8 +77,9 @@ msgid "Save access settings"
msgstr "Přistupne nastajenja składować"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -88,13 +89,13 @@ msgstr "Přistupne nastajenja składować"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Składować"
@@ -102,7 +103,7 @@ msgstr "Składować"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Strona njeeksistuje."
@@ -112,6 +113,8 @@ msgstr "Strona njeeksistuje."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -127,13 +130,23 @@ msgstr "Strona njeeksistuje."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -141,15 +154,15 @@ msgstr "Strona njeeksistuje."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Wužiwar njeeksistuje"
@@ -163,9 +176,10 @@ msgstr "%1$s a přećeljo, strona %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s a přećeljo"
@@ -272,7 +286,7 @@ msgstr "Aktualizacije wot %1$s a přećelow na %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -302,9 +316,25 @@ msgid ""
"You must specify a parameter named 'device' with a value of one of: sms, im, "
"none."
msgstr ""
+"Dyrbiš parameter z mjenom \"device\" z jednej ze slědowacych hódnotow podać: "
+"sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Wužiwar njeje so dał aktualizować."
@@ -314,18 +344,23 @@ msgstr "Wužiwar njeje so dał aktualizować."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Wužiwar nima profil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Profil njeje so składować dał."
@@ -335,8 +370,8 @@ msgstr "Profil njeje so składować dał."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -354,13 +389,14 @@ msgstr[3] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Njeje móžno, designowe nastajenja składować."
@@ -368,48 +404,59 @@ msgstr "Njeje móžno, designowe nastajenja składować."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Design njeda so aktualizować."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "Hłowny"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr ""
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s abonementow"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Fawority"
+msgstr "%s faworitow"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "%s skupinskich čłonow"
+msgstr "%s čłonstwow"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Njemóžeš so samoho blokować."
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Blokowanje wužiwarja je so njeporadźiło."
@@ -467,7 +514,7 @@ msgstr "Přijimowar njenamakany."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Njeje móžno, direktne powěsće wužiwarjam pósłać, kotřiž twoji přećeljo "
"njejsu."
@@ -492,8 +539,9 @@ msgid "This status is already a favorite."
msgstr "Tutón status je hižo faworit."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Faworit njeda so wutworić."
@@ -503,7 +551,8 @@ msgid "That status is not a favorite."
msgstr "Tón status faworit njeje."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Faworit njeda so zhašeć."
@@ -548,9 +597,9 @@ msgstr "Cilowy wužiwar njeda so namakać."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Přimjeno so hižo wužiwa. Spytaj druhe."
@@ -558,21 +607,22 @@ msgstr "Přimjeno so hižo wužiwa. Spytaj druhe."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Žane płaćiwe přimjeno."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Startowa strona njeje płaćiwy URL."
@@ -580,23 +630,24 @@ msgstr "Startowa strona njeje płaćiwy URL."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -609,9 +660,9 @@ msgstr[3] "Wopisanje je předołho (maks. %d znamješkow)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Městno je předołho (maks. 255 znamješkow)."
@@ -621,8 +672,8 @@ msgstr "Městno je předołho (maks. 255 znamješkow)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -641,18 +692,16 @@ msgstr "Njepłaćiwy alias: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Alias \"%s\" so hižo wužiwa. Spytaj druhi."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Alias njemóže samsny kaž přimjeno być."
@@ -663,28 +712,32 @@ msgstr "Alias njemóže samsny kaž přimjeno być."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Skupina njenamakana."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Sy hižo čłon teje skupiny."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Administratora tuteje skupiny je će zablokował."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Njebě móžno wužiwarja %1$s skupinje %2%s přidać."
@@ -696,9 +749,11 @@ msgstr "Njejsy čłon tuteje skupiny."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -735,7 +790,7 @@ msgid "Upload failed."
msgstr "Nahraće je so njeporadźiło."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Njepłaćiwe přizjewjenske znamješka."
@@ -755,20 +810,25 @@ msgid "Request token already authorized."
msgstr "Naprašowanski token hižo awtorizowany."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -785,18 +845,22 @@ msgstr "Zmylk datoweje banki při zasunjenju oauth_token_association."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Njewočakowane wotpósłanje formulara."
@@ -840,29 +904,31 @@ msgstr "Konto"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Přimjeno"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Hesło"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -932,6 +998,7 @@ msgstr "Njemóžeš status druheho wužiwarja zničić."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -951,38 +1018,50 @@ msgstr "Njemóžno twoju zdźělenku wospjetować."
msgid "Already repeated that notice."
msgstr "Tuta zdźělenka bu hižo wospjetowana."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "HTTP-metoda so njepodpěruje."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, php-format
-msgid "Unsupported format: %s"
-msgstr "Njepodpěrany format: %s"
+msgid "Unsupported format: %s."
+msgstr "Njepodpěrany format: %s."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Status zničeny."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Žadyn status z tym ID namakany."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
-msgstr ""
+msgstr "Zhašenje je jenož z Atomowym formatom móžno."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
-msgstr "Tuta zdźělenka njeda so zničić."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
+msgstr "Tuta zdźělenka njeda so zhašeć."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "Zhašana zdźělenka %d"
@@ -1043,7 +1122,7 @@ msgstr "Aktualizacije z %1$s wot %2$s / %3$s faworizowane"
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Njebě móžno kanal za skupinu wutworić - %s"
@@ -1064,13 +1143,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr ""
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s aktualizacijow wote wšěch!"
@@ -1091,14 +1171,14 @@ msgstr "Do %s wospjetowany"
#: actions/apitimelineretweetsofme.php:112
#, php-format
msgid "Repeats of %s"
-msgstr ""
+msgstr "Wospjetowanja wot %s"
#. TRANS: Title for timeline with lastest notices with a given tag.
#. TRANS: %s is the tag.
#: actions/apitimelinetag.php:101 actions/tag.php:67
#, php-format
msgid "Notices tagged with %s"
-msgstr ""
+msgstr "Zdźělenki woznamjenjene z %s"
#. TRANS: Subtitle for timeline with lastest notices with a given tag.
#. TRANS: %1$s is the tag, $2$s is the StatusNet sitename.
@@ -1114,205 +1194,257 @@ msgstr "Jenož wužiwar móže swojsku časowu lajstu přidać."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
msgstr "Jenož AtomPub za Atom-kanale akceptować."
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr ""
+msgstr "Póst z Atoma njesmě prózdny być."
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr ""
+msgstr "Póst za Atom dyrbi derje sformowany XML być."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
-msgstr ""
+msgstr "Póst za Atom dyrbi zapisk z Atoma być."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Wobsah zdźělenkow přepytać"
+msgstr "Žadyn wobsah za zdźělenku %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Zdźělenka z URI \"%s\" hižo eksistuje."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API-metoda njeskónčena."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Wužiwar njenamakany."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Profil njeeksistuje."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Nowy abonement njeda so zasunyć."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Wobsah zdźělenkow přepytać"
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Njeznaty"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "K faworitam přidać"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "Profil njeeksistuje."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Faworizowane zdźělenki wot %1$s na %2$s"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "Abonement druheho njeda so zhašeć"
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "Jenož faworitowe aktiwity hodźa so wobdźěłać."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Jenož zdźělenki dadźa so jako fawority składować."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Njeznata notica."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Je hižo faworit."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
+#, php-format
msgid "%s group memberships"
-msgstr "%s skupinskich čłonow"
+msgstr "%s skupisnkich čłonstwow"
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "Skupiny, w kotrychž %s je čłon"
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "Skupiny, w kotrychž %1$s je čłon na %2$s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "Čłonstwo druheho njeda so přidać."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr "Jenož aktiwity zastupjenja hodźa so wobdźěłać."
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Njeznaty"
+msgstr "Njeznata skupina"
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Wšitcy čłonojo"
+msgstr "Je hižo čłon."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Wot administratora zablokowany."
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "Dataja njeeksistuje."
+msgstr "Faworit njeeksistuje."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "Faworit njeda so zhašeć."
+msgid "Cannot delete someone else's favorite."
+msgstr "Faworit druheho njeda so zhašeć."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Skupina njeeksistuje."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "Wšitcy čłonojo"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "HTTP-metoda so njepodpěruje."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "Njeje čłon."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+msgid "Cannot delete someone else's membership."
+msgstr "Čłonstwo druheho njeda so zhašeć."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Profil njeeksistuje."
+#, php-format
+msgid "No such profile id: %d."
+msgstr "Profilowy ID njeeksistuje: %d."
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Njejsy tón profil abonował."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Profil %1$d njeje profil %2$d abonował."
-#: actions/atompubshowsubscription.php:154
-#, fuzzy
-msgid "Can't delete someone else's subscription"
-msgstr "Sebjeabonement njeda so zhašeć."
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr "Abonement druheho njeda so zhašeć."
-#: actions/atompubsubscriptionfeed.php:150
-#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "Ludźo, kotřiž su %s abonowali"
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "Ludźi, kotryž %1$s je na %2$s abonował"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Móžeš jenož wosobam slědować."
-#: actions/atompubsubscriptionfeed.php:262
-#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Njeznaty datajowy typ"
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "Njeznaty profil %s."
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "%s hižo abonowany."
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1322,11 +1454,15 @@ msgstr "Přiwěšk njeeksistuje."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Žane přimjeno."
@@ -1343,7 +1479,7 @@ msgstr "Njepłaćiwa wulkosć."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Awatar"
@@ -1357,41 +1493,51 @@ msgstr ""
"Móžeš swój wosobinski awatar nahrać. Maksimalna datajowa wulkosć je %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Wužiwar bjez hodźaceho so profila."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Nastajenja awatara"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Original"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Přehlad"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Zhašeć"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Nahrać"
@@ -1407,31 +1553,69 @@ msgstr "Přirězać"
msgid "No file uploaded."
msgstr "Žana dataja nahrata."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
msgstr ""
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Naše datajowe daty su so zhubili."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Awatar zaktualizowany."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Aktualizowanje awatara je so njeporadźiło."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Awatar zničeny."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Konto zawěsćić"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr "Jenož přizjewjeni wužiwarjo móža swoje konto zawěsćić."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "Njesměš swoje konto zawěsćić."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Zawěsćenje"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr "Twoje konto zawěsćić."
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1439,7 +1623,8 @@ msgstr "Sy tutoho wužiwarja hižo zablokował."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Wužiwarja blokować"
@@ -1459,16 +1644,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Ně"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
-msgstr "Tutoho wužiwarja njeblokować"
+#: actions/block.php:158
+msgid "Do not block this user."
+msgstr "Tutoho wužiwarja njeblokować."
#. TRANS: Button label on the user block form.
#. TRANS: Button label on the delete application form.
@@ -1478,47 +1662,21 @@ msgstr "Tutoho wužiwarja njeblokować"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Haj"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
-msgstr "Tutoho wužiwarja blokować"
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "Tutoho wužiwarja blokować."
#. TRANS: Server error displayed when blocking a user fails.
#: actions/block.php:189
msgid "Failed to save block information."
msgstr "Njebě móžno blokěrowanske informacije składować."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Skupina njeeksistuje."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1588,23 +1746,6 @@ msgstr "Njespóznaty adresowy typ %s."
msgid "That address has already been confirmed."
msgstr "Tuta adresa bu hižo wobkrućena."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Wužiwar njeda aktualizować."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1629,11 +1770,82 @@ msgid "Conversation"
msgstr "Konwersacija"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Zdźělenki"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr "Jenož přizjewjeni wužiwarjo móža swoje konto zhašeć."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "Njemóžeš swoje konto zhašeć."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Sym sej wěsty."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "Dyrbiš \"%s\" eksaktnje do pola zapisać."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "Konto zhašene."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Konto zhašeć"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"To budźe twoje kontowe daty na přecoz tutoho serwera "
+"zhašeć."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Wobkrućić"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Zapodaj \"%s\", zo by wobkrućił, zo chceš swoje konto zhašeć."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Twoje konto na přeco zhašeć"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1647,14 +1859,14 @@ msgstr "Aplikaciska njenamakana."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Njejsy wobsedźer tuteje aplikacije."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr ""
@@ -1674,13 +1886,13 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
-msgstr "Tutu aplikaciju njezničić"
+msgid "Do not delete this application."
+msgstr "Tutu aplikaciju njezhašeć."
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
-msgstr "Tutu aplikaciju zničić"
+msgid "Delete this application."
+msgstr "Tutu aplikaciju zhašeć."
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
@@ -1688,8 +1900,10 @@ msgid "You must be logged in to delete a group."
msgstr "Dyrbiš přizjewjeny być, zo by skupinu zhašał."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Žane přimjeno abo žadyn ID."
@@ -1728,24 +1942,30 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
-msgstr "Tuitu skupinu njezhašeć"
+msgid "Do not delete this group."
+msgstr "Tutu skupinu njezhašeć."
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
-msgstr "Tutu skupinu zhašeć"
+msgid "Delete this group."
+msgstr "Tutu skupinu zhašeć."
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Njepřizjewjeny."
@@ -1756,6 +1976,7 @@ msgid ""
"You are about to permanently delete a notice. Once this is done, it cannot "
"be undone."
msgstr ""
+"Chceš zdźělenku na přeco zhašeć. Hdyž sy to činił, njeje móžno to cofnyć."
#. TRANS: Page title when deleting a notice.
#. TRANS: Fieldset legend for the delete notice form.
@@ -1770,104 +1991,136 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
-msgstr "Tutu zdźělenku njewušmórnyć"
+msgid "Do not delete this notice."
+msgstr "Tutu zdźělenku njezhašeć."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
-msgstr "Tutu zdźělenku wušmórnyć"
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
+msgstr "Tutu zdźělenku zhašeć."
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Njemóžeš wužiwarjow wušmórnyć."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Móžeš jenož lokalnych wužiwarjow wušmórnyć."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
+msgid "Delete user"
+msgstr "Wužiwarja zhašeć"
+
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
msgid "Delete user"
msgstr "Wužiwarja wušmórnyć"
-#: actions/deleteuser.php:136
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr "Tutoho wužiwarja njezhašeć."
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
-msgstr "Tutoho wužiwarja wušmórnyć"
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "Tutoho wužiwarja zhašeć"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Design"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Designowe nastajenja za tute sydło StatusNet"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Njepłaćiwy logowy URL."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "Njepłaćiwy SSL-URL loga."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Šat njesteji k dispoziciji: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Logo změnić"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logo sydła"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "SSL-logo"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Šat změnić"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Šat sydła"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Šat za sydło."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Swójski šat"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Móžeš swójski šat StatusNet jako .ZIP-archiw nahrać."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Pozadkowy wobraz změnić"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Pozadk"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1876,99 +2129,104 @@ msgstr ""
"Móžeš pozadkowy wobraz za sydło nahrać. Maksimalna datajowa wulkosć je %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Zapinjeny"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Wupinjeny"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Pozadkowy wobraz zmóžnić abo znjemóžnić."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Pozadkowy wobraz kachlicować"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
msgstr "Barby změnić"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Wobsah"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Bóčnica"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Tekst"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Wotkazy"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Rozšěrjeny"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Swójski CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Standardne hódnoty wužiwać"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
-msgstr "Standardne designy wobnowić"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
+msgstr "Standardne designy wobnowić."
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
-msgstr "Na standard wróćo stajić"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr "Na standard wróćo stajić."
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Składować"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
+msgstr "Design składować."
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
-msgstr "Design składować"
-
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Tuta zdźělenka faworit njeje!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "K faworitam přidać"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
-msgstr "Dokument \"%s\" njeeksistuje"
+msgid "No such document \"%s\"."
+msgstr "Dokument \"%s\" njeeksistuje."
#. TRANS: Title for "Edit application" form.
#. TRANS: Form legend.
@@ -1982,7 +2240,7 @@ msgid "You must be logged in to edit an application."
msgstr "Dyrbiš přizjewjeny być, zo by skupinu wobdźěłał."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Aplikacija njeeksistuje."
@@ -1992,61 +2250,71 @@ msgid "Use this form to edit your application."
msgstr "Wužij tutón formular, zo by aplikaciju wobdźěłał."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Mjeno je trěbne."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "Mjeno je předołho (maks. 255 znamješkow)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Mjeno so hižo wužiwa. Spytaj druhe."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Wopisanje je trěbne."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Žórłowy URL je předołhi."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "URL žórła płaćiwy njeje."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organizacija je trěbna."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "Mjeno organizacije je předołho (maks. 255 znamješkow)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Startowa strona organizacije je trěbna."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Wróćowołanski URL je předołhi."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "Wróćowołanski URL płaćiwy njeje."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Aplikacija njeda so aktualizować."
@@ -2057,14 +2325,17 @@ msgid "Edit %s group"
msgstr "Skupinu %s wobdźěłać"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Dyrbiš přizjewjeny być, zo by skupinu wutworił."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Dyrbiš administrator być, zo by skupinu wobdźěłał."
@@ -2075,63 +2346,65 @@ msgstr "Wuž tutón formular, zo by skupinu wobdźěłał."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Njepłaćiwy alias: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Skupina njeje so dała aktualizować."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Aliasy njejsu so dali wutworić."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Opcije składowane."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "E-mejlowe nastajenja"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr ""
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "E-mejlowa adresa"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Aktualna wobkrućena e-mejlowa adresa."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Wotstronić"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2142,44 +2415,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "E-mejlowa adresa, kaž na př. \"WužiwarskeMjeno@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Přidać"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Dochadźaca e-mejl"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Chcu zdźělenki přez e-mejl pósłać."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Pósćel e-mejl na tutu adresu, zo by nowe zdźělenki pósłał."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2187,323 +2460,382 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nowy"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "E-mejlowe nastajenja"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Pósćel mi zdźělenki wo nowych abonementach přez e-mejl."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "E-mejl pósłać, hdyž něchtó moju powěsć jako faworit přidawa."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "E-mejl pósłać, hdyž něchtó priwatnu powěsć sćele."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "E-mejl pósłać, hdyž něchtó mi \"@-reply\" sćele."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Přećelam dowolić mje storkać a mi e-mejl pósłać."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "MicroID za moju e-mejlowu adresu publikować"
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "E-mejlowe nastajenja składowane."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Žana e-mejlowa adresa."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
-msgstr "Tuta e-mejlowa adresa njehodźi so normalizować"
+#: actions/emailsettings.php:388
+msgid "Cannot normalize that email address."
+msgstr "Tuta e-mejlowa adresa njehodźi so normalizować."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Njepłaćiwa e-mejlowa adresa."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "To je hižo twoja e-mejlowa adresa."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Ta e-mejlowa adresa hižo słuša k druhemu wužiwarjej."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
msgstr "Wobkrućenski kod njehodźi so zasunyć."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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 ""
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Njeje žane njesćinjene wobkrućenje, kotrež da so přetorhnyć,"
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "To je wopačna e-mejlowa adresa."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
msgstr "E-mejlowe wobkrućenje njeda so zhašeć."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "E-mejlowe wobkrućenje přetorhnjene."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "To njeje twoja e-mejlowa adresa."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "E-mejlowa adresa bu wotstronjena."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Žana adresa za dochadźace e-mejle."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr "Datowa sadźba wužiwarja njeda so aktualizować."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Adresa za dochadźaće e-mejle wotstronjena."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Nowa adresa za dochadźace e-mejle přidata."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Tuta zdźělenka je hižo faworit!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
-msgstr "Z faworitow wotstronić"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
+msgstr "Z faworitow wotstronić."
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Woblubowane zdźělenki"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Woblubowane zdźělenki, strona %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr ""
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Fawority wužiwarja %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Aktualizacije preferowane wot %1$s na %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Nazhonići wužiwarjo"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Nazhonići wužiwarjo, strona %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
-msgstr "Wuběr wulkotnych wužiwarjow na %s"
+msgid "A selection of some great users on %s."
+msgstr "Wuběr wulkotnych wužiwarjow na %s."
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Žadyn ID zdźělenki."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Žana zdźělenka."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Žane přiwěški."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Žane nahrate přiwěški."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Njewočakowana wotmołwa!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr ""
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Móžeš lokalny abonement wužiwać!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Tutón wužiwar ći abonowanje njedowoli."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Njejsy awtorizowany."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Zmylk při aktualizaciji zdaleneho profila."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Dataja njeeksistuje."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Dataja njeda so čitać."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Njepłaćiwa róla."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Tuta róla je wuměnjena a njeda so stajić."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Njemóžeš wužiwarske róle na tutym sydle garantować."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Wužiwar hižo ma tutu rólu."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Žadyn profil podaty."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Žadyn profil z tym ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Žana skupina podata."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Jenož administrator móže skupinskich čłonow blokować."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Wužiwar je hižo za skupinu zablokowany."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Wužiwar njeje čłon skupiny."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Wužiwarja za skupinu blokować"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2512,53 +2844,62 @@ msgid ""
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
-msgstr "Tutoho wužiwarja za tutu skupinu blokować"
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
+msgstr "Tutoho wužiwarja za tutu skupinu njeblokować."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
-msgstr "Tutoho wužiwarja za tutu skupinu blokować"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "Tutoho wužiwarja za tutu skupinu blokować."
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Zmylk datoweje banki blokuje wužiwarja za skupinu."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Žadyn ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Dyrbiš přizjewjeny być, zo by skupinu wobdźěłał."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Skupinski design"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Twój design njeda so aktualizować."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
+msgstr "Njeje móžno, twoje designowe nastajenja aktualizować."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Designowe nastajenja składowane."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Skupinske logo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2566,132 +2907,157 @@ msgstr ""
"Móžeš logowy wobraz za swoju skupinu nahrać. Maksimalna datajowa wulkosć je %"
"s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Nahrać"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Přirězać"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr ""
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo zaktualizowane."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Aktualizowanje loga je so njeporadźiło."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s skupinskich čłonow"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s skupinskich čłonow, strona %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Lisćina wužiwarjow w tutej skupinje."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Administrator"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Blokować"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Tutoho wužiwarja blokować"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Wužiwarja k administratorej skupiny činić"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "K administratorej činić"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Tutoho wužiwarja k administratorej činić"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Aktualizacije wot %1$s na %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr "Skupiny"
-#: actions/groups.php:64
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
#, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Skupiny, strona %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Nowu skupinu wutworić"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, 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
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Skupinske pytanje"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Žane wuslědki."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Jeli njemóžeš skupinu namakać, kotruž pytaš, móžeš [ju wutworić](%%action."
"newgroup%%)."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2699,184 +3065,194 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Jenož administrator móže skupinskich čłonow wotblokować."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Wužiwar njeje zablokowany za skupinu."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Zmylk při wotstronjenju blokowanja."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM-nastajenja"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM k dispoziciji njesteji."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM-adresa"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Aktualna wobkrućena adresa Jabber/GTalk."
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
+msgstr "Aktualna wobkrućena adresa Jabber/Google Talk."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "IM-nastajenja"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Pósćel mi zdźělenki přez Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
+msgstr "Pósćel mi zdźělenki přez Jabber/Google Talk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
+msgstr "Powěsć pósłac, hdyž so mój status Jabber/Google Talk změni."
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
+"Pósćel mi wotmołwy přez Jabber/Google Talk wot ludźi, kotrychž njejsym "
+"abonował."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
-msgstr ""
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr "MicroID za moju adresu Jabber/Google Talk publikować."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "MicroID za moju adresu Jabber/GTalk publikować."
-
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Nastajenja składowane."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Žadyn ID Jabber."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+msgid "Cannot normalize that Jabber ID."
msgstr "Tutón Jabber-ID njehodźi so normalizować"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
-msgstr "Njepłaćiwy ID Jabber"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+msgid "Not a valid Jabber ID."
+msgstr "Njepłaćiwy Jabber-ID."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "To je hižo twój ID Jabber."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber-ID hižo druhemu wužiwarjej słuša."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
"s for sending messages to you."
msgstr ""
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "to je wopačna IM-adresa."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
msgstr "IM-wobkrućenje njeda so zhašeć."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "IM-wobkrućenje přetorhnjene."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "To njeje twój ID Jabber."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "IM-adresa bu wotstronjena."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Dochadny póst za %1$s - strona %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Dochadny póst za %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"To je twój dochadny póst, kotryž twoje priwatne dochadne powěsće nalistuje."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Přeprošenja buchu znjemóžnjene."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2885,18 +3261,18 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Njepłaćiwa e-mejlowa adresa: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Přeprošenja pósłane"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Nowych wužiwarjow přeprosyć"
@@ -2904,7 +3280,7 @@ msgstr "Nowych wužiwarjow přeprosyć"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Sy tutoho wužiwarja hižo abonował:"
@@ -2914,7 +3290,7 @@ msgstr[3] "Sy tutych wužiwarjow hižo abonował:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2923,7 +3299,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -2936,7 +3312,7 @@ msgstr[3] "Tući ludźo su hižo wužiwarjo a ty sy jich awtomatisce abonował:"
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Přeprošenje, kotrež bu na slědowacu wosobu pósłane:"
@@ -2946,14 +3322,14 @@ msgstr[3] "Přeprošenja, kotrež buchu na slědowacych ludźi pósłane:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
msgstr ""
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -2961,27 +3337,27 @@ msgstr ""
"tutu słužbu wužiwali."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "E-mejlowe adresy"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
msgstr "Adresy přećelow, kotřiž maja so přeprosyć (jedna na linku)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Wosobinska powěsć"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Wosobinsku powěsć po dobrozdaću přeprošenju přidać."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Pósłać"
@@ -2989,7 +3365,7 @@ msgstr "Pósłać"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s je će přeprosył, na %2$s sobu činić"
@@ -2999,7 +3375,7 @@ msgstr "%1$s je će přeprosył, na %2$s sobu činić"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3030,166 +3406,182 @@ msgid ""
"Sincerely, %2$s\n"
msgstr ""
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Dyrbiš přizjewjeny być, zo by do skupiny zastupił."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
-msgstr "%1$s je do %2$s zastupił"
+msgstr "%1$s je do skupiny %2$s zastupił"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Dyrbiš přizjewjeny być, zo by skupinu wopušćił."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Njejsy čłon teje skupiny."
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s je skupinu %2$s wopušćił"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Licenca"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Licenca za tute sydło StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Njepłaćiwy wuběr licency."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Njepłaćiwy titul licency. Maksimalna dołhosć je 255 znamješkow."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Njepłaćiwy URL licency."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Njepłaćiwy URL wobraza licency."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "Licencowy URL dyrbi prózdny abo płaćiwy URL być."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "Licencowy wobraz dyrbi prózdny abo płaćiwy URL być."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Wuběr licency"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Priwatny"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Wšě prawa wuměnjene."
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Cresative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Typ"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Licencu wubrać"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Podrobnosće licency"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Wobsedźer"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
-msgstr ""
+msgstr "Mjeno wobsedźerja wobsaha tutoho sydła (jeli trěbne)"
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Titul licency"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Titul licency."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL licency"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL za dalše informacije wo licency."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL wobraza licency"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL za wobraz, kotryž ma so z licencu zwobraznić."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Składować"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Licencne nastajenja składować"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Hižo přizjewjeny."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Wopačne wužiwarske mjeno abo hesło."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Zmylk při nastajenju wužiwarja. Snano njejsy awtorizowany."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Přizjewić"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Při sydle přizjewić"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Składować"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Hesło zhubjene abo zabyte?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3197,11 +3589,11 @@ msgstr ""
"Prošu zapodaj z přičinow wěstoty swoje wužiwarske mjeno znowa, prjedy hač "
"změniš swoje nastajenja."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Přizjewjenje z twojim wužiwarskim mjenom a hesłom."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3237,19 +3629,22 @@ msgid "New application"
msgstr "Nowa aplikacija"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Dyrbiš přizjewjeny być, zo by aplikaciju registrował."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Wužij tutón formular, zo by nowu aplikaciju registrował."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Žórłowy URL je trěbny."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Aplikacija njeda so wutworić."
@@ -3258,11 +3653,21 @@ msgstr "Aplikacija njeda so wutworić."
msgid "New group"
msgstr "Nowa skupina"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr "Njesměš skupiny na tutym sydle zhašeć."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Wužij tutón formular, zo by nowu skupinu wutworił."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr "Alias njemóže samsne kaž přimjeno być."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nowa powěsć"
@@ -3312,44 +3717,56 @@ msgstr "Nowa zdźělenka"
msgid "Notice posted"
msgstr "Zdźělenka wotpósłana"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, 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
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Tekstowe pytanje"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Pytanske wuslědki za \"%1$s\" na %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, 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:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Aktualizacije z \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Aktualizacije, kotrež pytanskemu zapřijeću %1$s na %2$s wotpowěduja!"
#: actions/nudge.php:85
@@ -3388,30 +3805,30 @@ msgid "You have not registered any applications yet."
msgstr "Hišće njejsy aplikacije zregistrował."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Zwjazane aplikacije"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "Slědowace zwiski za twoje konto eksistuja."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Njejsy wužiwar tuteje aplikacije."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Njemóžno přistup za aplikaciju cofnyć: %s-"
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3419,20 +3836,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Njejsy aplikacije za wužiwanje wašeho konta awtorizował."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, php-format
+msgid "\"%s\" not found."
+msgstr "\"%s\" njenamakany."
+
+#: actions/oembed.php:76
+#, php-format
+msgid "Notice %s not found."
+msgstr "Zdźělenka %s njenamakana."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Zdźělenka nima profil."
@@ -3442,6 +3869,16 @@ msgstr "Zdźělenka nima profil."
msgid "%1$s's status on %2$s"
msgstr "Status %1$s na %2$s"
+#: actions/oembed.php:95
+#, php-format
+msgid "Attachment %s not found."
+msgstr "Přiwěšk %s njenamakany."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3455,16 +3892,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Njeje podpěrany datowy format."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Ludźi pytać"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Zdźělenku pytać"
@@ -3478,68 +3916,79 @@ msgid "Manage various other options."
msgstr "Wšelake druhe opcije zrjadować."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (swobodna słužba)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "URL skrótšić z"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr ""
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Profilowe designy sej wobhladać"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Profilowe designy pokazać abo schować."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Krótšenska słužba za URL je předołha (maks. 50 znamješkow)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Žadyn wužiwarski ID podaty."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Žane přizjewjenske znamješko podate."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Žadyn přizjewjenski token trěbny."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Njepłaćiwe přizjewjenske znamješko podate."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Přizjewjenske znamješko spadnjene."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Wuchadny póst za %1$s - strona %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Wuchadny póst za %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"To je twój wuchadny póst, kotryž twoje priwatne powěsće nalistuje, kotrež sy "
@@ -3553,7 +4002,8 @@ msgstr "Hesło změnić"
msgid "Change your password."
msgstr "Změń swoje hesło."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Hesło změnjene"
@@ -3561,48 +4011,47 @@ msgstr "Hesło změnjene"
msgid "Old password"
msgstr "Stare hesło"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nowe hesło"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
-msgstr "6 abo wjace znamješkow"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
+msgstr "6 abo wjace znamješkow."
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Wobkrućić"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Samsne hesło kaž horjeka"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
+msgstr "Samsne hesło kaž horjeka."
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Změnić"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Hesło dyrbi 6 abo wjace znamješkow měć."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Hesle so njekryjetej."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Wopačne stare hesło"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Zmylk při składowanju wužiwarja; njepłaćiwy."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
msgstr "Nowe hesło njeda so składować."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Hesło składowane."
@@ -3664,7 +4113,7 @@ msgstr "Serwer"
#: actions/pathsadminpanel.php:242
msgid "Site's server hostname."
-msgstr ""
+msgstr "Serwerowe mjeno sydła"
#. TRANS: Field label in Paths admin panel.
#: actions/pathsadminpanel.php:248 actions/pathsadminpanel.php:288
@@ -3688,7 +4137,7 @@ msgstr "Zapisowa šćežka k lokalam."
#. TRANS: Checkbox label in Paths admin panel.
#: actions/pathsadminpanel.php:263
msgid "Fancy URLs"
-msgstr ""
+msgstr "Šikwane URL"
#: actions/pathsadminpanel.php:265
msgid "Use fancy (more readable and memorable) URLs?"
@@ -3808,7 +4257,7 @@ msgstr "Zapis, hdźež pozadki su."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Přiwěški"
@@ -3876,14 +4325,17 @@ msgstr ""
msgid "Save paths"
msgstr "Šćežki składować"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, 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
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Za ludźimi pytać"
@@ -3907,12 +4359,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profilowe nastajenja"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -3920,12 +4372,12 @@ msgstr ""
"wjace wo tebi zhonili."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profilowe informacije"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
"1-64 małopisanych pismikow abo ličbow, žane interpunkciske znamješka abo "
@@ -3933,28 +4385,29 @@ msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Dospołne mjeno"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Startowa strona"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL twojeje startoweje strony, bloga abo profila na druhim sydle."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -3964,78 +4417,83 @@ msgstr[2] "Wopisaj sebje a swoje zajimy z %d znamješkami"
msgstr[3] "Wopisaj sebje a swoje zajimy z %d znamješkami"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Wopisaj sebje a swoje zajimy"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Biografija"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Městno"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr ""
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Rěč"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
-msgstr "Preferowana rěč"
+#: actions/profilesettings.php:171
+msgid "Preferred language."
+msgstr "Preferowana rěč."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Časowe pasmo"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "W kotrym časowym pasmje sy zwjetša?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
+"Awtomatisce kóždeho abonować, kotryž mje abonuje (najlěpše za \"njeludźi\")."
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4045,49 +4503,50 @@ msgstr[2] "Biografija je předołha (maks. %d znamješka)."
msgstr[3] "Biografija je předołha (maks. %d znamješkow)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Časowe pasmo njeje wubrane."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "Mjeno rěče je předołhe (maks. 50 znamješkow)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
+#: actions/profilesettings.php:291
#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "Njepłaćiwa taflička: \"%s\""
+msgid "Invalid tag: \"%s\"."
+msgstr "Njepłaćiwa taflička: \"%s\"."
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
msgstr "Wužiwar njeda so za awtomatiske abonowanje aktualizować."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
msgstr "Nastajenja městna njedachu so składować."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Profil njeda so składować."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Taflički njedadźa so składować."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Nastajenja składowane."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr "Konto wobnowić"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4108,15 +4567,15 @@ msgstr ""
#: actions/public.php:160
msgid "Public Stream Feed (RSS 1.0)"
-msgstr ""
+msgstr "Kanal zjawneho pruda (RSS 1.0)"
#: actions/public.php:164
msgid "Public Stream Feed (RSS 2.0)"
-msgstr ""
+msgstr "Kanal zjawneho pruda (RSS 2.0)"
#: actions/public.php:168
msgid "Public Stream Feed (Atom)"
-msgstr ""
+msgstr "Kanal zjawneho pruda (Atom)"
#: actions/public.php:188
#, php-format
@@ -4127,7 +4586,7 @@ msgstr ""
#: actions/public.php:191
msgid "Be the first to post!"
-msgstr ""
+msgstr "Budź prěni, kiž něšto pisa!"
#: actions/public.php:195
#, php-format
@@ -4152,6 +4611,12 @@ msgid ""
"tool."
msgstr ""
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s aktualizacijow wote wšěch!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4176,7 +4641,7 @@ msgstr ""
#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
#: actions/publictagcloud.php:79
msgid "Be the first to post one!"
-msgstr ""
+msgstr "Budź prěni, kiž tajki pisa!"
#. TRANS: Message shown to a anonymous user for the public tag cloud
#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
@@ -4194,228 +4659,256 @@ msgstr ""
msgid "Tag cloud"
msgstr "Mróčel tafličkow"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Sy hižo přizjewjeny!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Njeznaty wobnowjenski kod."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Žadyn wobnowjenski kod."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr ""
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Zmylk z wobkrućenskim kodom."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Tutón wobkrućenski kod je přestary. Prošu započń hišće raz."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Wužiwar njeda so z wobkrućenej e-mejlowej adresu aktualizować."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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 "Sy so identifikował. Zapodaj deleka nowe hesło. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Sy so identifikował. Zapodaj deleka nowe hesło."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Wobnowjenje hesła"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Přimjeno abo e-mejlowa adresa"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"Twoje přimjeno na tutym serwerje abo twoje zregistrowana e-mejlowa adresa."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Wobnowić"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Wobnowić"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Hesło wróćo stajić"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Hesło wobnowić"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Wobnowjenje hesła požadane"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+msgid "Password saved"
+msgstr "Hesło składowane"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Njeznata akcija"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
msgstr "6 abo wjace znamješkow, a njezabudź jo!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Wróćo stajić"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Zapodaj přimjeno abo e-mejlowu adresu."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr ""
"Wužiwar z tej e-mejlowej adresu abo tym wužiwarskim mjenom njeeksistuje."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Wužiwar nima žanu zregistrowanu e-mejlowu adresu."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Zmylk při składowanju adresoweho wobkrućenja."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
msgstr ""
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Njewočakowane hesło wróćo stajene."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Hesło dyrbi 6 znamješkow abo wjace měć."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Hesło a jeho wobkrućenje so njekryjetej."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Zmylk při nastajenju wužiwarja."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Nowe hesło bu wuspěšnje składowane. Sy nětko přizjewjeny."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Wodaj, jenož přeprošeni ludźo móžeja so registrować."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Wodaj, njepłaćiwy přeprošenski kod."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registrowanje wuspěšne"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registrować"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registracija njedowolena."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+msgid "You cannot register if you don't agree to the license."
msgstr "Njemóžeš so registrować, jeli njepřizwoleš do licency."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "E-mejlowa adresa hižo eksistuje."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Njepłaćiwe wužiwarske mjeno abo hesło."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 małopisanych pismikow abo ličbow, žane interpunkciske znamješka abo "
-"mjezery. Trěbne."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 abo wjace znamješkow. Trěbne."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Jenake kaž hesło horjeka. Trěbne."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-mejl"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
-msgstr "Dlěše mjeno, wosebje twoje \"woprawdźite\" mjeno"
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
+msgstr "Dlěše mjeno, wosebje twoje \"woprawdźite\" mjeno."
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr ""
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Hdźež sy, na př. \"město, zwjazkowy kraj (abo region) , kraj\"."
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
-msgstr ""
+msgstr "Rozumju, zo wobsah a daty wot %1$s su priwatne a dowěrliwe."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Wšě prawa wuměnjenjene."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr ""
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4434,13 +4927,13 @@ msgid ""
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
msgstr ""
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4448,77 +4941,81 @@ msgid ""
"microblogging site](%%doc.openmublog%%), enter your profile URL below."
msgstr ""
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Zdaleny abonement"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Zdaleneho wužiwarja abonować"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Wužiwarske přimjeno"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr ""
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
+msgstr "Přimjeno wužiwarja, kotremuž chceš slědować."
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL profila"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
+"URL twojeho profila při druhej kompatibelnej mikroblogowanskej słužbje."
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Abonować"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "Njepłaćiwy profilowy URL (wopačny format)"
+#: actions/remotesubscribe.php:158
+msgid "Invalid profile URL (bad format)."
+msgstr "Njepłaćiwy profilowy URL (wopačny format)."
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
msgstr "To je lokalny profil! Přizjew so, zo by abonował."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
-msgstr ""
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
+msgstr "Přistupny token njeda so wobstarać."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Jeno6 přizjewjeni wužiwarjo móža zdźělenki wospjetować."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Žana zdźělenka podata."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
msgstr "Njemóžeš swójsku zdźělenku wospjetować."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Sy tutu zdźělenku hižo wospjetował."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Wospjetowany"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Wospjetowany!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Wotmołwy na %s"
@@ -4564,11 +5061,97 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Wotmołwy na %1$s na %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr "Jenož přizjewjeni wužiwarjo móža swoje konto wobnowić."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr "NJemóžeš swoje konto wobnowić."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr "Žana nahrata dataja."
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Nahrata dataja bu jenož zdźěla nahrata."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Temporerny rjadowka faluje."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Dataju njeda so na tačel pisać."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Datajowe nahraće přez rozšěrjenje zastajene."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Systemowy zmylk při nahrawanju dataje."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr "To Atomowy kanal njeje."
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr "Kanal so wobnowi. Prošu počakaj něšto mjeńšin za wuslědki."
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "Dataju nahrać"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Njemóžeš wužiwarske róle na tutym sydle wotwołać."
@@ -4577,7 +5160,7 @@ msgstr "Njemóžeš wužiwarske róle na tutym sydle wotwołać."
msgid "User doesn't have this role."
msgstr "Wužiwar nima tutu rólu."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4597,7 +5180,7 @@ msgstr "Posedźenja"
#: actions/sessionsadminpanel.php:65
msgid "Session settings for this StatusNet site"
-msgstr ""
+msgstr "Nastajenja posedźenja za tute sydło StatusNet."
#: actions/sessionsadminpanel.php:175
msgid "Handle sessions"
@@ -4619,132 +5202,146 @@ msgstr ""
msgid "Save site settings"
msgstr "Sydłowe nastajenja składować"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Dyrbiš přizjewjeny być, zo by sej aplikaciju wobhladał."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Aplikaciski profil"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Symbol"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Mjeno"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organizacija"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Wopisanje"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistika"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Aplikaciske akcije"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Zničić"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Aplikaciske informacije"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
-msgstr ""
+msgstr "Kluč přetrjebowarja"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
-msgstr ""
+msgstr "Potajnstwo přetrjebowarja"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "URL awtorizować"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Chceš woprawdźe swój přetrjebowarski kluč a potajny kod wróćo stajić?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Preferowane zdźělenki wot %1$s, strona %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Preferowane zdźělenki njedadźa so wobstarać."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Kanal za fawority wužiwarja %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Kanal za fawority wužiwarja %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Kanal za fawority wužiwarja %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4752,7 +5349,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr ""
@@ -4770,81 +5368,88 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s skupina, strona %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Skupinski profil"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Přispomnjenka"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Aliasy"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Skupinske akcije"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Zdźělenski kanal za skupinu %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Zdźělenski kanal za skupinu %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Zdźělenski kanal za skupinu %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF za skupinu %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Čłonojo"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Žadyn)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Wšitcy čłonojo"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Wutworjeny"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Čłonojo"
@@ -4853,7 +5458,7 @@ msgstr "Čłonojo"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4866,7 +5471,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4876,30 +5481,30 @@ msgid ""
msgstr ""
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administratorojo"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Powěsć njeeksistuje."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Jenož wotpósłar a přijimowar móžetaj tutu powěsć čitać."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Powěsć do %1$s na %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Powěsć wot %1$s na %2$s"
@@ -4915,7 +5520,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s z %2$s woznamjenjeny"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5024,7 +5629,7 @@ msgstr "Zakładne nastajenja za tute sydło StatusNet."
#: actions/siteadminpanel.php:133
msgid "Site name must have non-zero length."
-msgstr ""
+msgstr "Sydłowe mjeno njesmě prózdne być."
#: actions/siteadminpanel.php:141
msgid "You must have a valid contact email address."
@@ -5094,6 +5699,8 @@ msgstr "Standardna rěč"
#: actions/siteadminpanel.php:263
msgid "Site language when autodetection from browser settings is not available"
msgstr ""
+"Rěč sydła, jeli awtomatiske spóznawanje po nastajenjach wobhladowaka k "
+"dispoziciji njesteji"
#: actions/siteadminpanel.php:271
msgid "Limits"
@@ -5147,145 +5754,145 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
-msgstr "Sydłowu zdźělenku składować"
+msgid "Save site notice."
+msgstr "Sydłowu zdźělenku składować."
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS-nastajenja"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS k dispoziciji njesteji."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS-adresa"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Aktualne wobkrućene telefonowe čisło z SMS-funkciju."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Wobkrućenje za tute telefonowe čisło so wočakuje."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Wobkrućenski kod"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
-msgstr ""
+msgstr "Zapodaj kod, kotryž sy přez telefon dóstał."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Wobkrućić"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMS telefonowe čisło"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr ""
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
+msgstr "Telefonowe čisło, bjez interpunkcije abo mjezerow, z předwolenjom."
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMS-nastajenja"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
msgstr ""
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "SMS-nastajenja składowane."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Žane telefonowe čisło."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Žadyn poskićowar wubrany."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "To je hižo twoje telefonowe čisło."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Te telefonowe čisło hižo druhemu wužiwarjej słuša."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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 ""
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "To je wopačne wobkrućenske čisło."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS-wobkrućenje přetorhnjene."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "To twoje telefonowe čisło njeje."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Telefonowe čisło za SMS bu wotstronjene."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr ""
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr ""
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5293,9 +5900,9 @@ msgid ""
msgstr ""
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
-msgstr "Žadyn kod zapodaty"
+#: actions/smssettings.php:535
+msgid "No code entered."
+msgstr "Žadyn kod zapodaty."
#. TRANS: Menu item for site administration
#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
@@ -5313,7 +5920,7 @@ msgstr "Njepłaćiwa hódnota za wuwjedźenje njejapkeho fota."
#: actions/snapshotadminpanel.php:133
msgid "Snapshot frequency must be a number."
-msgstr ""
+msgstr "Frekwenca njejapkich fotkow dyrbi ličba być."
#: actions/snapshotadminpanel.php:144
msgid "Invalid snapshot report URL."
@@ -5349,7 +5956,7 @@ msgstr "URL rozprawy"
#: actions/snapshotadminpanel.php:227
msgid "Snapshots will be sent to this URL"
-msgstr ""
+msgstr "Njejapke fotki budu so do tutoho URL słać."
#: actions/snapshotadminpanel.php:248
msgid "Save snapshot settings"
@@ -5366,15 +5973,19 @@ msgstr "Njejsy tón profil abonował."
msgid "Could not save subscription."
msgstr "Abonement njeda so składować."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Njemóžeš zdaleny profil OMB 0.1 z tutej akciju abonować."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Abonowany"
@@ -5406,7 +6017,7 @@ msgid "These are the people who listen to %s's notices."
msgstr ""
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5414,7 +6025,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s abonentow nima. Chceš prěni być?"
@@ -5424,7 +6035,7 @@ msgstr "%s abonentow nima. Chceš prěni być?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5457,7 +6068,7 @@ msgstr ""
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5471,23 +6082,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s na nikoho njesłucha."
-#: actions/subscriptions.php:178
-#, fuzzy, php-format
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
msgid "Subscription feed for %s (Atom)"
-msgstr "Zdźělenski kanal za %s (Atom)"
+msgstr "Abonowanski kanal za %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5520,12 +6132,15 @@ msgstr "Žadyn argument ID."
msgid "Tag %s"
msgstr ""
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Wužiwarski profil"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Foto"
@@ -5539,15 +6154,16 @@ msgid ""
"separated"
msgstr ""
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Njepłaćiwa taflička: \"%s\""
+
#: 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 "Taflički njedadźa so składować."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5557,6 +6173,7 @@ msgstr ""
msgid "No such tag."
msgstr "Taflička njeeksistuje."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Njejsy toho wužiwarja zablokował."
@@ -5577,7 +6194,7 @@ msgstr "Žadyn profilowy ID w naprašowanju."
msgid "Unsubscribed"
msgstr "Wotskazany"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5602,18 +6219,17 @@ msgstr ""
#. TRANS: Form validation error in user admin panel when welcome text is too long.
#: actions/useradminpanel.php:154
msgid "Invalid welcome text. Maximum length is 255 characters."
-msgstr ""
+msgstr "Njepłaćiwy powitanski tekst. Maksimalna dołhosć je 255 znamješkow."
#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
-msgstr "Njepłaćiwy standardny abonement: '%1$s' wužiwar njeje."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
+msgstr "Njepłaćiwy standardny abonement: \"%1$s\" wužiwar njeje."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5669,119 +6285,153 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr "Wužiwarske nastajenja składować"
+msgid "Save user settings."
+msgstr "Wužiwarske nastajenja składować."
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Abonement awtorizować"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licenca"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Akceptować"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
-msgstr "Tutoho wužiwarja abonować"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
+msgstr "Tutoho wužiwarja abonować."
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Wotpokazać"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
-msgstr "Tutón abonement wotpokazać"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
+msgstr "Tutón abonement wotpokazać."
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Žane awtorizaciske naprašowanje!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Abonement awtorizowany"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Abonement wotpokazany"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
-msgstr "URI posłucharja'%s' njebu tu namakany"
+msgid "Listener URI \"%s\" not found here."
+msgstr "URI posłucharja \"%s\" njebu tu namakany."
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr "URI posłucharki '%s' je předołhi."
+msgid "Listenee URI \"%s\" is too long."
+msgstr "URI posłucharki \"%s\" je předołhi."
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+msgid "Listenee URI \"%s\" is a local user."
+msgstr "URI posłucharki \"%s\" je lokalny wužiwar.."
+
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, php-format
+msgid "Profile URL \"%s\" is for a local user."
+msgstr "Profilowy URL \"%s\" je za lokalneho wužiwarja."
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
msgstr ""
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr "Profilowy URL '%s' je za lokalneho wužiwarja."
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "URL awatara \"%s\" njeje płaćiwy."
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr "URL awatara '%s' njeje płaćiwy"
+msgid "Cannot read avatar URL \"%s\"."
+msgstr "Awatarowy URL \"%s\" njeda so čitać."
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr "Awatarowy URL '%s' njeda so čitać."
-
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr "Wopačny wobrazowy typ za awatarowy URL '%s'."
+msgid "Wrong image type for avatar URL \"%s\"."
+msgstr "Wopačny wobrazowy typ za awatarowy URL \"%s\"."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Profilowy design"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
-msgstr ""
+msgstr "Wjele wjesela!"
#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number.
#: actions/usergroups.php:66
@@ -5809,7 +6459,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Aktualizacije wot %1$s na %2$s!"
@@ -5858,7 +6508,7 @@ msgid "Plugins"
msgstr "Tykače"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Wersija"
@@ -5867,32 +6517,32 @@ msgid "Author(s)"
msgstr "Awtorojo"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Faworit"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s je zdźělenku %2$s jako faworit markěrował."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "URL '%s' njeda so předźěłać"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin měni, zo něšto je njemóžno."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -5907,7 +6557,7 @@ msgstr[3] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -5918,7 +6568,7 @@ msgstr[3] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -5928,7 +6578,7 @@ msgstr[2] ""
msgstr[3] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Njepłaćiwe datajowe mjeno."
@@ -5971,7 +6621,7 @@ msgstr "Zastupić"
#: classes/Group_member.php:151
#, php-format
msgid "%1$s has joined group %2$s."
-msgstr ""
+msgstr "%1$s je do skupiny %2$s zastupił."
#. TRANS: Server exception thrown when updating a local group fails.
#: classes/Local_group.php:42
@@ -5986,9 +6636,9 @@ msgid "Could not create login token for %s"
msgstr "Njeje móžno było, přizjewjenske znamješko za %s wutworić"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
-msgstr ""
+msgstr "Žane mjeno datoweje banki namakane abo žadyn DSN namakany."
#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them.
#: classes/Message.php:45
@@ -6013,71 +6663,71 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Žadyn profil (%1$d) za zdźělenku (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Zmylk datoweje banki při zasunjenju hašeje taflički: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Zmylk při składowanju powěsće. Wona je předołha."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Zmylk při składowanju powěsće. Njeznaty wužiwar."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Słanje zdźělenkow na tutym sydle je ći zakazane."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Zmylk při składowanju powěsće."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr ""
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Wotmołwa za %1$d, %2$d njeda so składować."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6085,14 +6735,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6152,7 +6802,7 @@ msgstr "Slědować"
#: classes/Subscription.php:268
#, php-format
msgid "%1$s is now following %2$s."
-msgstr ""
+msgstr "%1$s nětko %2$s slěduje."
#. TRANS: Notice given on user registration.
#. TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
@@ -6162,35 +6812,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Witaj do %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Žadyn jednotliwy wužiwar za modus jednotliweho wužiwarja definowany."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Skupina njeda so wutowrić."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "URI skupiny njeda so nastajić."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Skupinske čłonstwo njeda so stajić."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Informacije wo lokalnej skupinje njedachu so składować."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr "Konto %s njeda so zhašeć."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr "XRD za %s njeda so namakać."
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr "Žana słužba AtomPub API za %s."
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6227,211 +6898,214 @@ msgid "Other"
msgstr "Druhe"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Strona bjez titula"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Wjace pokazać"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Primarna sydłowa nawigacija"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr ""
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Wosobinski"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Wašu e-mejl, waš awatar, waše hesło, waš profil změnić"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Konto"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Ze słužbami zwjazać"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Zwjazać"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Sydłowu konfiguraciju změnić"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Administrator"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Přećelow a kolegow přeprosyć, so tebi na %s přidružić"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Přeprosyć"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Ze sydła wotzjewić"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Wotzjewić"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Konto załožić"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registrować"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Při sydle přizjewić"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Přizjewjenje"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Pomhaj!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Pomoc"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Za ludźimi abo tekstom pytać"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Pytać"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Sydłowa zdźělenka"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Lokalne napohlady"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Zdźělenka strony"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Sekundarna sydłowa nawigacija"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Pomoc"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Wo"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "Huste prašenja"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Wužiwarske wuměnjenja"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Priwatnosć"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Žórło"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Kontakt"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
-msgstr ""
+msgstr "Plaketa"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Softwarowa licenca StatusNet"
@@ -6439,7 +7113,7 @@ msgstr "Softwarowa licenca StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6447,16 +7121,16 @@ msgid ""
msgstr ""
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
-msgstr ""
+msgstr "**%%site.name%%** je mikroblogowanska słužba."
#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6465,50 +7139,50 @@ msgid ""
msgstr ""
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licenca sydłoweho wobsaha"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
-msgstr ""
+msgstr "Wobsah a daty wot %1$s su priwatne a dowěrliwe."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
-msgstr ""
+msgstr "Wobsah a daty wot %1$s su pod licencu %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paginowanje"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Po"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Před"
@@ -6517,10 +7191,77 @@ msgstr "Před"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
-#, fuzzy
-msgid "Post"
-msgstr "Foto"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Njeznaty werb: \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr "Abonement za dowěry njehódneho wužiwarja njeda so wunuzować"
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr "Zdaleny wužiwar njehodźi so nuzować něšto abonować."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr "Njeznaty profil."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr "Zda so, zo tuta aktiwita z našim wužiwarjom njezwisuje."
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr "Zdaleny profil skupina njeje!"
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr "Wužiwar je hižo čłon tuteje skupiny."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr "Zdźělenka %1$s je hižo znata a ma druheho awtora %2$s."
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr "!Žadyn wobsah za powěsć %s."
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "Wužiwar %s njeeksistuje."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s %2$s %3$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6592,7 +7333,7 @@ msgid "User configuration"
msgstr "Wužiwarska konfiguracija"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Wužiwar"
@@ -6624,7 +7365,7 @@ msgstr "Konfiguracija wobrazowkowych fotow"
#. TRANS: Menu item title/tooltip
#: lib/adminpanelaction.php:401
msgid "Set site license"
-msgstr ""
+msgstr "Licencu sydła nastajić"
#. TRANS: Client error 401.
#: lib/apiauth.php:111
@@ -6634,23 +7375,27 @@ msgstr ""
#. TRANS: OAuth exception thrown when no application is found for a given consumer key.
#: lib/apiauth.php:177
msgid "No application for that consumer key."
+msgstr "Žana aplikacija za tón kluč přetrjebowarja."
+
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
msgstr ""
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
-msgstr ""
+msgstr "Njebě móžno će awtentifikować."
#. TRANS: Server error displayed when trying to create an anynymous OAuth consumer.
#: lib/apioauthstore.php:45
@@ -6669,27 +7414,30 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "Přistupny token njeda so wudać."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Zmylk datoweje banki při zasunjenju wužiwarja OAuth-aplikacije."
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr "Zmylk datoweje banki při aktualizowanju wužiwarja OAuth-aplikacije."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Symbol za tutu aplikaciju"
@@ -6747,7 +7495,7 @@ msgstr "Desktop"
#. TRANS: Form guide.
#: lib/applicationeditform.php:290
msgid "Type of application, browser or desktop"
-msgstr ""
+msgstr "Typ aplikacije, wobhladowaka abo dźěłanskeho powjercha"
#. TRANS: Radio button label for access type.
#: lib/applicationeditform.php:314
@@ -6771,7 +7519,7 @@ msgstr "Přetorhnyć"
#: lib/applicationlist.php:247
msgid " by "
-msgstr ""
+msgstr "wot "
#. TRANS: Application access type
#: lib/applicationlist.php:260
@@ -6787,7 +7535,7 @@ msgstr "jenož čitajomny"
#: lib/applicationlist.php:268
#, php-format
msgid "Approved %1$s - \"%2$s\" access."
-msgstr ""
+msgstr "%1$s schwalene - přistup \"%2$s\""
#. TRANS: Access token in the application list.
#. TRANS: %s are the first 7 characters of the access token.
@@ -6802,24 +7550,29 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Wotwołać"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
-msgstr ""
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr "Element \"author\" dyrbi element \"name\" wobsahować."
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr "Njewužij tutu metodu!"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Awtor"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Poskićowar"
#. TRANS: Title.
#: lib/attachmentnoticesection.php:67
msgid "Notices where this attachment appears"
-msgstr ""
+msgstr "Zdźělenki, hdźež so tutón přiwěšk jewi"
#. TRANS: Title.
#: lib/attachmenttagcloudsection.php:48
@@ -6841,6 +7594,11 @@ msgstr "Změnjenje hesła njeje dowolene."
msgid "Block"
msgstr "Blokować"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Tutoho wužiwarja blokować"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -6877,14 +7635,14 @@ msgstr "Wužiwar nima poslednju powěsć."
#: lib/command.php:128
#, php-format
msgid "Could not find a user with nickname %s."
-msgstr ""
+msgstr "Wužiwar z přimjenom %s njeda so namakać."
#. TRANS: Message given getting a non-existing user.
#. TRANS: %s is the nickname of the user that could not be found.
#: lib/command.php:148
#, php-format
msgid "Could not find a local user with nickname %s."
-msgstr ""
+msgstr "Lokalny wužiwar z přimjenom %s njeda so namakać."
#. TRANS: Error text shown when an unimplemented command is given.
#: lib/command.php:183
@@ -6901,7 +7659,7 @@ msgstr ""
#: lib/command.php:238
#, php-format
msgid "Nudge sent to %s."
-msgstr ""
+msgstr "Stork do %s pósłany."
#. TRANS: User statistics text.
#. TRANS: %1$s is the number of other user the user is subscribed to.
@@ -6928,14 +7686,14 @@ msgstr "Zdźělenka je jako faworit markěrowana."
#: lib/command.php:357
#, php-format
msgid "%1$s joined group %2$s."
-msgstr ""
+msgstr "%1$s je do skupiny %2$s zastupił."
#. TRANS: Message given having removed a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
#: lib/command.php:405
#, php-format
msgid "%1$s left group %2$s."
-msgstr ""
+msgstr "%1$s je skupinu %2$s wopušćił."
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -6954,7 +7712,7 @@ msgstr "Dospołne mjeno: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Městno: %s"
@@ -6962,7 +7720,7 @@ msgstr "Městno: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Startowa strona: %s"
@@ -7067,7 +7825,7 @@ msgstr "%s abonowany."
#. TRANS: Error text shown when no username was provided when issuing the command.
#: lib/command.php:692 lib/command.php:803
msgid "Specify the name of the user to unsubscribe from."
-msgstr ""
+msgstr "Podaj mjeno wužiwarja, kotrehož chceš wotskazać."
#. TRANS: Text shown after having unsubscribed from another user successfully.
#. TRANS: %s is the name of the user the unsubscription was requested for.
@@ -7113,6 +7871,7 @@ msgstr "Přizjewjenski přikaz je znjemóžnjeny."
#, php-format
msgid "This link is useable only once and is valid for only 2 minutes: %s."
msgstr ""
+"Tutón wotkaz je jenož jedyn raz wužiwajomny a za 2 mjeńšinje płaćiwy: %s"
#. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user).
#. TRANS: %s is the name of the user the unsubscription was requested for.
@@ -7215,24 +7974,24 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "Žana konfiguraciska dataja namakana."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "Sym na slědowacych městnach konfiguraciske dataje pytał:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Móže być, zo chceš instalaciski program startować, zo by to porjedźił."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "K instalaciji"
@@ -7273,14 +8032,19 @@ msgstr "Awtorizowane zwjazane aplikacije"
msgid "Database error"
msgstr "Zmylk w datowej bance"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Tutoho wužiwarja wušmórnyć"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Dataju nahrać"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7299,25 +8063,72 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Wupinjeny"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Wróćo stajić"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Barby změnić"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Standardne hódnoty wužiwać"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Standardne designy wobnowić"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Na standard wróćo stajić"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Design składować"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Twój design njeda so aktualizować."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Designowe standardne nastajenja wobnowjene."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr "Njemóžno słužby za %s namakać."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Tutu zdźělenku z faworitow wotstronić"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Z faworitow wotstronić"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Tutu zdźělenku faworitam přidać"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Faworit"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7334,6 +8145,18 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr "To Atomowy kanal njeje."
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr "Žadyn awtor w kanalu njeje."
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr "Import bjez wužiwarja njemóžno."
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7366,23 +8189,23 @@ msgstr "Start"
#: lib/grantroleform.php:91
#, php-format
msgid "Grant this user the \"%s\" role"
-msgstr ""
+msgstr "Tutomu wužiwarjej rólu \"%s\" dać"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
"1-64 małopisanych pismikow abo ličbow, žane interpunkciske znamješka abo "
"mjezery."
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL startoweje strony abo bloga skupiny abo temy."
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Skupinu abo temu wopisać"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
@@ -7391,14 +8214,14 @@ msgstr[1] "Skupinu abo temu w %d znamješkomaj wopisać"
msgstr[2] "Skupinu abo temu w %d znamješkach wopisać"
msgstr[3] "Skupinu abo temu w %d znamješkach wopisać"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Městno za skupinu, jeli eksistuje, na př. \"město, zwjazkowy kraj (abo "
"region), kraj\"."
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7507,40 +8330,41 @@ msgstr ""
"Tuta strona we wot tebje akceptowanym medijowym typje k dispoziciji "
"njesteji."
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Njepodpěrowany wobrazowy format."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Tuta dataja je přewulka. Maksimalna datajowa wulkosć je %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Dźělne nahraće."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Systemowy zmylk při nahrawanju dataje."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Žady wobraz abo žana wobškodźena dataja."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Naša dataja je so zhubiła."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Njeznaty datajowy typ"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7550,7 +8374,7 @@ msgstr[2] "%d MB"
msgstr[3] "%d MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7560,7 +8384,7 @@ msgstr[2] "%d KB"
msgstr[3] "%d KB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7583,23 +8407,25 @@ msgstr "Njeznate žórło postoweho kašćika %d."
msgid "Leave"
msgstr "Wopušćić"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Přizjewjenje z wužiwarskim mjenom a hesłom"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Nowe konto registrować"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Wobkrućenje e-mejloweje adresy"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7618,14 +8444,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
-msgstr ""
+msgstr "%1$s slěduje twoje zdźělenki na %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7637,7 +8463,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7654,14 +8480,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Biografija: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nowa e-mejlowa adresa za słanje do %s"
@@ -7669,7 +8495,7 @@ msgstr "Nowa e-mejlowa adresa za słanje do %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7684,34 +8510,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Status wužiwarja %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS-wobkrućenje"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
-msgstr ""
+msgstr "%s: wobkruć, zo tute telefonowe čisło ze slědowacym kodom tebi słuša:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
-msgstr ""
+msgid "You have been nudged by %s"
+msgstr "%s je će storčił"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7729,7 +8555,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nowa priwatna powěsć wot %s"
@@ -7738,7 +8564,7 @@ msgstr "Nowa priwatna powěsć wot %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7759,7 +8585,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) je twoju zdźělenku jako faworit přidał"
@@ -7769,7 +8595,7 @@ msgstr "%1$s (@%2$s) je twoju zdźělenku jako faworit přidał"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -7791,7 +8617,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -7804,7 +8630,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) je zdźělenku k twojej kedźbnosći pósłał"
@@ -7815,7 +8641,7 @@ msgstr "%1$s (@%2$s) je zdźělenku k twojej kedźbnosći pósłał"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -7842,20 +8668,16 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Jenož wužiwar móže swoje póstowe kašćiki čitać."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr "wot"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Powěsć njeda so analyzować."
@@ -7884,42 +8706,10 @@ msgstr ""
"Při składowanju twojeje dataje je zmylk w datowej bance wustupił. Prošu "
"spytaj hišće raz."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Nahrata dataja bu jenož zdźěla nahrata."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Temporerny rjadowka faluje."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Dataju njeda so na tačel pisać."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Datajowe nahraće přez rozšěrjenje zastajene."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
-msgstr ""
+msgstr "Dataja překročuje wužiwarski limit."
#. TRANS: Client exception thrown when a file upload operation fails because the file could
#. TRANS: not be moved from the temporary folder to the permanent file location.
@@ -7936,19 +8726,21 @@ msgstr "MIME-typ dataje njeda so zwěsćić."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
"format."
msgstr ""
+"\"%1$s\" njeje podpěrany datajowy typ na tutym serwerje. Spytaj druhi format "
+"%2$s wužiwać."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
-msgstr ""
+msgstr "\"%s\" njeje podpěrany datajowy typ na tutym serwerje."
#: lib/messageform.php:120
msgid "Send a direct notice"
@@ -7977,19 +8769,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Pósłać"
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr "Powěsće"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "wot"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Přimjeno smě jenož małe pismiki a cyfry wobsahować. Mjezery njejsu dowolene."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "Přimjeno njemóže prózdne być."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8007,11 +8807,11 @@ msgstr "Zdźělenku pósłać"
msgid "What's up, %s?"
msgstr "Što je, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Připowěsnyć"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Dataju připowěsnyć"
@@ -8030,55 +8830,59 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "J"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "W"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "Z"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "w"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "Web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "w konteksće"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Wospjetowany wot"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Na tutu zdźělenku wotmołwić"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Wotmołwić"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Tutu zdźělenku wušmórnyć"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Zdźělenka wospjetowana"
@@ -8115,77 +8919,108 @@ msgstr "Dwójna zdźělenka."
msgid "Couldn't insert new subscription."
msgstr "Nowy abonement njeda so zasunyć."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Wosobinski"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+msgctxt "MENU"
msgid "Replies"
msgstr "Wotmołwy"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
msgid "Favorites"
msgstr "Fawority"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr "Dochadny póst"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Twoje dochadźace powěsće"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
msgid "Outbox"
msgstr "Wuchadny póst"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Twoje pósłane powěsće"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Taflički w zdźělenkach wot %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Njeznaty"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Abonementy"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Wšě abonementy"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Abonenća"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Wšitcy abonenća"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Wužiwarski ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Čłon wot"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Skupiny"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Dnjowy přerězk"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Wšě skupiny"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Njeimplementowana metoda."
@@ -8232,7 +9067,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Rólu \"%s\" tutoho wužiwarja wotwołać"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "Strona njenamakana."
@@ -8322,6 +9157,10 @@ msgstr "Přeprosyć"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Přećelow a kolegow přeprosyć, so tebi na %s přidružić"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Tutoho wužiwarja abonować"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8371,7 +9210,7 @@ msgstr[3] ""
#: lib/themeuploader.php:179
msgid "Invalid theme archive: missing file css/display.css"
-msgstr ""
+msgstr "Njepłaćiwy šatowy archiw: falowaca css-dataja/display.css"
#: lib/themeuploader.php:219
msgid ""
@@ -8381,12 +9220,12 @@ msgstr ""
#: lib/themeuploader.php:225
msgid "Theme contains unsafe file extension names; may be unsafe."
-msgstr ""
+msgstr "Šat wobsahuje njewěste datajowe sufiksy; to móhło njewěste być."
#: lib/themeuploader.php:242
#, php-format
msgid "Theme contains file of type '.%s', which is not allowed."
-msgstr ""
+msgstr "Šat wobsahuje dataju typa '.%s', kotryž njeje dowoleny."
#: lib/themeuploader.php:260
msgid "Error opening theme archive."
@@ -8433,130 +9272,142 @@ msgstr "Wotskazać"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Wužiwar %1$s (%2$d) nima profilowu datowu sadźbu."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Awatar wobdźěłać"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Wužiwarske akcije"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Wužiwar so haša..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Profilowe nastajenja wobdźěłać"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Wobdźěłać"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Tutomu wužiwarja direktnu powěsć pósłać"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Powěsć"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderěrować"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Wužiwarska róla"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrator"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderator"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Njepřizjewjeny."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "před něšto sekundami"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "před něhdźe jednej mjeńšinu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "před něhdźe jednej mjeńšinu"
+msgstr[1] "před něhdźe %d mjeńšinomaj"
+msgstr[2] "před něhdźe %d mjeńšinami"
+msgstr[3] "před něhdźe %d mjeńšinami"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "před něhdźe jednej hodźinu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "před něhdźe jednej hodźinu"
+msgstr[1] "před něhdźe %d hodźinomaj"
+msgstr[2] "před něhdźe %d hodźinami"
+msgstr[3] "před něhdźe %d hodźinami"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "před něhdźe jednym dnjom"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "před něhdźe jednym dnjom"
+msgstr[1] "před něhdźe %d dnjomaj"
+msgstr[2] "před něhdźe %d dnjemi"
+msgstr[3] "před něhdźe %d dnjemi"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "před něhdźe jednym měsacom"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "před něhdźe jednym měsacom"
+msgstr[1] "před něhdźe %d měsacomaj"
+msgstr[2] "před něhdźe %d měsacami"
+msgstr[3] "před něhdźe %d měacami"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "před něhdźe jednym lětom"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s płaćiwa barba njeje!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr ""
@@ -8567,7 +9418,7 @@ msgstr ""
#: lib/xmppmanager.php:287
#, php-format
msgid "Unknown user. Go to %s to add your address to your account"
-msgstr ""
+msgstr "Njeznaty wužiwar. Dźi k %s, zo by swoju adresu swojemu kontu přidał."
#. TRANS: Response to XMPP source when it sent too long a message.
#. TRANS: %1$d the maximum number of allowed characters (used for plural), %2$d is the sent number.
@@ -8585,32 +9436,17 @@ msgstr[3] ""
"Powěsć je předołho. Maksimalna dołhosć je %1$d znamješkow, ty sy %2$d pósłał."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "Njepłaćiwy XML."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
-msgstr ""
+msgstr "Njepłaćiwy XML, korjeń XRD faluje."
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
-msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Žadyn wužiwarsk podaty; wužiwa so wužiwar ze zawěsćenja."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-"
diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po
index 9d60a8c20f..52e1be1f26 100644
--- a/locale/hu/LC_MESSAGES/statusnet.po
+++ b/locale/hu/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Hungarian (Magyar)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Bdamokos
# Author: Dani
@@ -12,13 +12,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:54+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:50+0000\n"
"Language-Team: Hungarian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: hu\n"
"X-Message-Group: #out-statusnet-core\n"
@@ -79,8 +79,9 @@ msgid "Save access settings"
msgstr "Hozzáférések beállításainak mentése"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -90,13 +91,13 @@ msgstr "Hozzáférések beállításainak mentése"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Mentés"
@@ -104,7 +105,7 @@ msgstr "Mentés"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Nincs ilyen lap."
@@ -114,6 +115,8 @@ msgstr "Nincs ilyen lap."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -129,13 +132,23 @@ msgstr "Nincs ilyen lap."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -143,15 +156,15 @@ msgstr "Nincs ilyen lap."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Nincs ilyen felhasználó."
@@ -165,9 +178,10 @@ msgstr "%1$s és barátai, %2$d oldal"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s és barátai"
@@ -278,7 +292,7 @@ msgstr "Frissítések %1$s felhasználótól, és barátok a következő oldalon
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -310,7 +324,21 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Nem sikerült frissíteni a felhasználót."
@@ -320,18 +348,23 @@ msgstr "Nem sikerült frissíteni a felhasználót."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "A felhasználónak nincs profilja."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Nem sikerült menteni a profilt."
@@ -341,8 +374,8 @@ msgstr "Nem sikerült menteni a profilt."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -362,13 +395,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Nem sikerült elmenteni a megjelenítési beállításaid."
@@ -376,48 +410,59 @@ msgstr "Nem sikerült elmenteni a megjelenítési beállításaid."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Nem sikerült frissíteni a megjelenítést."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s története"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr ""
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "Kedvencek"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "%s csoport tagjai"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Nem blokkolhatod saját magad!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Nem sikerült a felhasználó blokkolása."
@@ -473,7 +518,8 @@ msgstr "A címzett felhasználó nem található."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Nem küldhetsz közvetlen üzenetet olyan felhasználóknak, akik nem a barátaid."
@@ -498,8 +544,9 @@ msgid "This status is already a favorite."
msgstr "Ez az állapotjelentés már a kedvenceid között van."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Nem sikerült létrehozni a kedvencet."
@@ -509,7 +556,8 @@ msgid "That status is not a favorite."
msgstr "Az az állapotjelentés nincs a kedvenceid között."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Nem sikerült törölni a kedvencet."
@@ -554,9 +602,9 @@ msgstr "A cél felhasználó nem található."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "A becenév már foglalt. Próbálj meg egy másikat."
@@ -564,21 +612,22 @@ msgstr "A becenév már foglalt. Próbálj meg egy másikat."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Nem érvényes becenév."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "A honlap érvénytelen URL-cím."
@@ -586,9 +635,9 @@ msgstr "A honlap érvénytelen URL-cím."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "A teljes név túl hosszú (legfeljebb 255 karakter lehet)."
@@ -596,14 +645,15 @@ msgstr "A teljes név túl hosszú (legfeljebb 255 karakter lehet)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -614,9 +664,9 @@ msgstr[1] "A leírás túl hosszú (legfeljebb %d karakter lehet)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "A hely túl hosszú (legfeljebb 255 karakter lehet)."
@@ -627,8 +677,8 @@ msgstr "A hely túl hosszú (legfeljebb 255 karakter lehet)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -645,18 +695,16 @@ msgstr "Érvénytelen álnév: „%s”."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "A(z) „%s” álnév már használatban van. Próbálj meg egy másikat."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Az álnév nem egyezhet meg a becenévvel."
@@ -667,28 +715,32 @@ msgstr "Az álnév nem egyezhet meg a becenévvel."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "A csoport nem található."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Már tagja vagy ennek a csoportnak."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Az adminisztrátor blokkolt ebből a csoportból."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Nem sikerült %1$s felhasználót hozzáadni a %2$s csoporthoz."
@@ -700,9 +752,11 @@ msgstr "Nem vagy tagja ennek a csoportnak."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -739,7 +793,7 @@ msgid "Upload failed."
msgstr ""
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr ""
@@ -761,20 +815,25 @@ msgid "Request token already authorized."
msgstr "Nincs jogosultságod."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Probléma volt a munkameneted tokenjével. Kérlek, próbáld újra."
@@ -791,18 +850,22 @@ msgstr ""
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Váratlan űrlapbeküldés."
@@ -847,29 +910,31 @@ msgstr "Kontó"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Becenév"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Jelszó"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -942,6 +1007,7 @@ msgstr "Nem törölheted más felhasználók állapotait."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -961,39 +1027,52 @@ msgstr "Nem ismételheted meg a saját híredet."
msgid "Already repeated that notice."
msgstr "Már megismételted azt a hírt."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Az API-metódus nem található."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Nem támogatott formátum."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Állapot törölve."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Nem található ilyen azonosítójú állapot."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
-msgstr ""
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
+msgstr "Ne töröljük ezt a hírt"
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Hír törlése"
@@ -1053,7 +1132,7 @@ msgstr ""
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Nem sikerült a csoport frissítése."
@@ -1074,13 +1153,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s közösségi története"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s-frissítések mindenki számára!"
@@ -1128,201 +1208,270 @@ msgstr "Csak a felhasználó láthatja a saját postaládáját."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Keressünk a hírek tartalmában"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr ""
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Az API-metódus fejlesztés alatt áll."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "Az API-metódus nem található."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Nincs ilyen profil."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Frissítések %1$s felhasználótól, és barátok a következő oldalon: %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-msgid "Can't add someone else's subscription"
-msgstr ""
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+#, fuzzy
+msgid "Cannot add someone else's subscription."
+msgstr "Nem sikerült törölni a kedvencet."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Keressünk a hírek tartalmában"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Keressünk a hírek tartalmában"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Ismeretlen művelet"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Hozzáadás a kedvencekhez"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Nincs ilyen profil."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s csoport tagjai"
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "A legtöbb tagból álló csoportok"
-
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Nem sikerült törölni a kedvencet."
+
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Keressünk a hírek tartalmában"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Ismeretlen művelet"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Összes tag"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Nincs ilyen fájl."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Nem sikerült törölni a kedvencet."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Nincs ilyen csoport."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Összes tag"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Az API-metódus nem található."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+#, fuzzy
+msgid "Cannot delete someone else's membership."
+msgstr "Nem sikerült törölni a kedvencet."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "No such profile id: %d"
+msgid "No such profile id: %d."
msgstr "Nincs ilyen profil."
-#: actions/atompubshowsubscription.php:90
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
+msgid "Profile %1$d not subscribed to profile %2$d."
msgstr "Senkinek sem iratkoztál fel a híreire."
-#: actions/atompubshowsubscription.php:154
-msgid "Can't delete someone else's subscription"
-msgstr ""
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Nem sikerült törölni a kedvencet."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "Senki sem követ figyelemmel."
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "Senkinek sem iratkoztál fel a híreire."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Ismeretlen fájltípus"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Már feliratkoztál!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1331,11 +1480,15 @@ msgstr "Nincs ilyen csatolmány."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Nincs becenév."
@@ -1352,7 +1505,7 @@ msgstr "Érvénytelen méret."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1365,42 +1518,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Feltöltheted a személyes avatarodat. A fájl maximális mérete %s lehet."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr ""
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Avatarbeállítások"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Eredeti"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Előnézet"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Törlés"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1418,31 +1581,72 @@ msgstr "Levágás"
msgid "No file uploaded."
msgstr "Nincs feltöltve fájl."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Válassz ki egy négyzet alakú területet a képből, ami az avatarod lesz"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Elvesztettük az adatainkat."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Avatar frissítve."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Nem sikerült felölteni az avatart."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Avatar törölve."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Csak a felhasználó láthatja a saját postaládáját."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Háttér"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1450,7 +1654,8 @@ msgstr "Már blokkoltad azt a felhasználót."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Felhasználó blokkolása"
@@ -1470,15 +1675,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Nem"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Ne blokkoljuk ezt a felhasználót"
#. TRANS: Button label on the user block form.
@@ -1489,15 +1694,15 @@ msgstr "Ne blokkoljuk ezt a felhasználót"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Igen"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Felhasználó blokkolása"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1505,31 +1710,6 @@ msgstr "Felhasználó blokkolása"
msgid "Failed to save block information."
msgstr "Nem sikerült elmenteni a blokkolási információkat."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Nincs ilyen csoport."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1600,23 +1780,6 @@ msgstr ""
msgid "That address has already been confirmed."
msgstr "Ez a cím már meg van erősítve."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Nem sikerült frissíteni a felhasználót."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1642,11 +1805,85 @@ msgid "Conversation"
msgstr "Beszélgetés"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Hírek"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Csak a felhasználó láthatja a saját postaládáját."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Nem törölhetsz felhasználókat."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Avatar törölve."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Felhasználó törlése"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Megerősítés"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Nem törölhetsz felhasználókat."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Nem törölhetsz felhasználókat."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1660,14 +1897,14 @@ msgstr ""
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr ""
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr ""
@@ -1687,13 +1924,15 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
-msgstr ""
+#, fuzzy
+msgid "Do not delete this application."
+msgstr "Ne töröljük ezt a hírt"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
-msgstr ""
+#, fuzzy
+msgid "Delete this application."
+msgstr "Alkalmazás törlése"
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
@@ -1702,8 +1941,10 @@ msgid "You must be logged in to delete a group."
msgstr "Be kell jelentkezned hogy elhagyhass egy csoportot."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Nincs nicknév vagy azonosító."
@@ -1748,25 +1989,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "Ne töröljük ezt a hírt"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "Töröljük ezt a felhasználót"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Nem vagy bejelentkezve."
@@ -1791,27 +2038,40 @@ msgstr "Biztosan törölni szeretnéd ezt a hírt?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Ne töröljük ezt a hírt"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Töröljük ezt a hírt"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Nem törölhetsz felhasználókat."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Csak helyi felhasználókat tudsz törölni."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Felhasználó törlése"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Felhasználó törlése"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1819,80 +2079,104 @@ msgstr ""
"Biztosan törölni szeretnéd ezt a felhasználót? Ezzel minden róla szóló "
"adatot törlünk az adatbázisból, biztonsági mentés nélkül."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Ne töröljük ezt a hírt"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Töröljük ezt a felhasználót"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Megjelenés"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Érvénytelen logó URL."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "Érvénytelen logó URL."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr ""
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Logó megváltoztatása"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Oldal logója"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "Oldal logója"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Téma megváltoztatása"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Webhely-téma"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "A webhely témája."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr ""
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Háttérkép megváltoztatása"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Háttér"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1900,98 +2184,108 @@ msgid ""
msgstr ""
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Be"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Ki"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Háttérkép be- vagy kikapcsolása."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Háttérkép csempézése"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Színek megváltoztatása"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Tartalom"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Oldalsáv"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Szöveg"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Hivatkozások"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr ""
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Alapértelmezések használata"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
-msgstr ""
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
+msgstr "Alapértelmezések használata"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Visszaállítás az alapértelmezettre"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Mentés"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Design mentése"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Ez a hír nincs a kedvenceid között!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Hozzáadás a kedvencekhez"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Nincs ilyen dokumentum: „%s”"
#. TRANS: Title for "Edit application" form.
@@ -2006,7 +2300,7 @@ msgid "You must be logged in to edit an application."
msgstr ""
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Nincs ilyen alkalmazás."
@@ -2016,63 +2310,73 @@ msgid "Use this form to edit your application."
msgstr ""
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "A név szükséges."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "A név túl hosszú (max 255 karakter lehet)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "A név már foglalt. Próbálj egy másikat."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "A leírás megadása kötelező."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "A forrás URL túl hosszú."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "A forrás URL nem érvényes."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "A szervezet szükséges."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "A szervezet túl hosszú (255 karakter lehet)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Szükséges a szervezet honlapja."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr ""
@@ -2083,14 +2387,17 @@ msgid "Edit %s group"
msgstr "%s csoport szerkesztése"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Csoport létrehozásához be kell jelentkezned."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr ""
@@ -2101,63 +2408,65 @@ msgstr "Ezen űrlap segítségével szerkesztheted a csoportot."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Érvénytelen álnév: „%s”"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Nem sikerült a csoport frissítése."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Nem sikerült létrehozni az álneveket."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Beállítások elmentve."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Email beállítások"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Beállíthatod, milyen email-eket kapj a(z) %%site.name%% webhelyről."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Email-cím"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "A jelenleg megerősített e-mail cím."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Eltávolítás"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2171,44 +2480,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "E-mail cím, például „FelhasználóNév@example.org”"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Hozzáadás"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Bejövő email"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Szeretnék email segítségével közzétenni."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Erre a címre küldj emailt új hír közzétételéhez."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2216,89 +2525,91 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Új"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "E-mail beállítások"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Kapjak email-t, ha valaki feliratkozott a híreimre."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Kapjak emailt róla, ha valaki kedvenceként jelöl meg egy általam küldött "
"hírt."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Kapjak emailt róla, ha valaki privát üzenetet küld nekem."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Kapjak emailt róla, ha valaki \"@-választ\" küld nekem."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Megengedem a barátaimnak, hogy megbökjenek és emailt küldjenek nekem."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "MicroID közzététele az e-mail címemhez."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "E-mail beállítások elmentve."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Nincs e-mail cím."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Nem sikerült normalizálni az e-mail címet"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Érvénytelen email cím."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Jelenleg is ez az e-mail címed."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Ez az e-mail cím egy másik felhasználóhoz tartozik."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Nem sikerült beilleszteni a megerősítő kódot."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2308,238 +2619,300 @@ msgstr ""
"további teendőket tartalmazza."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Nincs várakozó megerősítés, amit vissza lehetne vonni."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr ""
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Nem sikerült törölni az e-mail cím megerősítését."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr ""
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Ez nem a te e-mail címed."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr ""
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Nincs bejövő e-mail cím."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Nem sikerült frissíteni a felhasználó rekordját."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "A bejövő email címet eltávolítottuk."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Új bejövő e-mail cím hozzáadva."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Ez a hír már a kedvenceid között van!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Kedvenc eltávolítása"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Népszerű hírek"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Népszerű hírek, %d oldal"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Most épp a webhely legnépszerűbb hírei"
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Ezen az oldalon kedvencnek jelölt hírek jelennek meg, de még egyet sem tett "
"senki a kedvencévé."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%s kedvenc hírei"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr ""
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Kiemelt felhasználók"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Kiemelt felhasználók, %d. oldal"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
+msgid "A selection of some great users on %s."
msgstr ""
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Nincs hír-ID."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Nincs hír."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Nincs melléklet."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Nincs feltöltött melléklet."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Nem várt válasz!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "A felhasználó akire figyelsz nem létezik."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Figyelemmel követheted helyben!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Az a felhasználó blokkolta hogy figyelemmel kövesd."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Nincs jogosultságod."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Nem sikerült frissíteni a távoli profilt."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Nincs ilyen fájl."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "A fájl nem olvasható."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Érvénytelen szerep."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr ""
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "A felhasználónak már van ilyen szerepe."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Nincs profil megadva."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Nincs ilyen azonosítóval rendelkező profil."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Nincs csoport megadva."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Csak az adminisztrátor blokkolhat csoporttagokat."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Ez a felhasználó már blokkolva van a csoportból."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Ez a felhasználó nem a csoport tagja."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Felhasználó blokkolása a csoportból"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2551,160 +2924,190 @@ msgstr ""
"híreket, és nem tudják majd figyelemmel követni a csoportot a jövőben."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Ne blokkoljuk ezt a felhasználót ebből a csoportból"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Felhasználó blokkolása a csoportból"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
"Adatbázishiba történt a felhasználó csoportból történő blokkolása során."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Nincs ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Csoport szerkesztéséhez be kell jelentkezned."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "A csoport megjelenése"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Nem sikerült frissíteni a designt."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Nem sikerült elmenteni a megjelenítési beállításaid."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Design beállítások elmentve."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Csoport logója"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr ""
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Feltöltés"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Levágás"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr ""
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logó frissítve."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Nem sikerült a logó feltöltése."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s csoport tagjai"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr ""
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "A csoportban lévő felhasználók listája."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Adminisztrátor"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "A felhasználó legyen a csoport kezelője"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr ""
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Csoportok"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Csoportok, %d. oldal"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Új csoport létrehozása"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2714,25 +3117,33 @@ msgstr ""
"alapján. Szóközökkel válaszd el a keresett kifejezéseket; legalább 3 "
"karaktert adj meg."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Csoport-keresés"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Nincs találat."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Ha nem találod a csoportot amit keresel, [létrehozhatod](%%action.newgroup%"
"%) saját magad."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2740,202 +3151,218 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr ""
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "A felhasználó nincs blokkolva a csoportból."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Hiba a blokkolás feloldása közben."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM beállítások"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM nem elérhető."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM-cím"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
-msgstr ""
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
+msgstr "A jelenleg megerősített e-mail cím."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
+"Megerősítés várása a címről. Ellenőrizd a beérkező leveleidet (és a "
+"spameket!), hogy megkaptad-e az üzenetet, ami a további teendőket "
+"tartalmazza."
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Azonnali üzenetküldő beállításai"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr ""
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr "MicroID közzététele az e-mail címemhez."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Beállítások elmentve."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Nincs Jabber-azonosító."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Nem lehet normalizálni a Jabber azonosítót"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Érvénytelen Jabber-azonosító"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Jelenleg is ez a Jabber-azonosítód."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Ez a Jabber-azonosító már egy másik felhasználóhoz tartozik."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
"s for sending messages to you."
msgstr ""
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Ez a hibás IM-cím."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
-msgstr ""
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
+msgstr "Nem sikerült törölni az e-mail cím megerősítését."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr ""
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Ez nem a te Jabber-azonosítód."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr ""
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr ""
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "%s bejövő postafiókja"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "Ez a postaládád, ahol láthatod a neked küldött privát üzeneteket."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "A meghívások tiltva vannak."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Érvénytelen e-mail cím: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Meghívó(k) elküldve"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Új felhasználó meghívása"
@@ -2943,7 +3370,7 @@ msgstr "Új felhasználó meghívása"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2952,7 +3379,7 @@ msgstr[1] "Ezen felhasználók híreire már feliratkoztál:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2961,7 +3388,7 @@ msgstr "%1$s - %2$s"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -2974,7 +3401,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -2983,14 +3410,14 @@ msgstr[1] "Meghívók elküldve a következő embereknek:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
msgstr ""
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -2998,27 +3425,28 @@ msgstr ""
"szolgáltatásra."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "E-mail címek"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "A meghívandó barátaid címei (soronként egy)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Személyes üzenet"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Megadhatsz egy személyes üzenetet a meghívóhoz."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Küldés"
@@ -3026,7 +3454,7 @@ msgstr "Küldés"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr ""
@@ -3036,7 +3464,7 @@ msgstr ""
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3067,179 +3495,195 @@ msgid ""
"Sincerely, %2$s\n"
msgstr ""
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Be kell jelentkezned, ha csatlakozni szeretnél a csoporthoz."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s csatlakozott a(z) %2$s csoporthoz"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Be kell jelentkezned hogy elhagyhass egy csoportot."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Nem vagy tagja annak a csoportnak."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
-msgstr ""
+msgstr "%1$s csatlakozott a(z) %2$s csoporthoz"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Érvénytelen SSL szerver. A maximális hossz 255 karakter."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privát"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Mentés"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Már be vagy jelentkezve."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Rossz felhasználónév vagy jelszó."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Bejelentkezés"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Bejelentkezés az oldalra"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Emlékezz rám"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"A jövőben legyen automatikus a bejelentkezés; csak ha egyedül használod a "
"számítógépet!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Elvesztetted vagy elfelejtetted a jelszavad?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
msgstr ""
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr ""
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3275,19 +3719,22 @@ msgid "New application"
msgstr "Új alkalmazás"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr ""
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr ""
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Meg kell adnod forrás URL-t."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Nem sikerült létrehozni az alkalmazást."
@@ -3296,11 +3743,23 @@ msgstr "Nem sikerült létrehozni az alkalmazást."
msgid "New group"
msgstr "Új csoport"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Nem vagy tagja ennek a csoportnak."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Ezen az űrlapon tudsz új csoportot létrehozni."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Az álnév nem egyezhet meg a becenévvel."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Új üzenet"
@@ -3350,44 +3809,56 @@ msgstr "Új hír"
msgid "Notice posted"
msgstr "Hír elküldve"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, 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
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Szöveg keresése"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr ""
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, 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:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr ""
-#: actions/noticesearchrss.php:98
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr ""
#: actions/nudge.php:85
@@ -3426,30 +3897,30 @@ msgid "You have not registered any applications yet."
msgstr ""
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr ""
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr ""
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr ""
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3457,20 +3928,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Az API-metódus nem található."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Az API-metódus nem található."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr ""
@@ -3480,6 +3961,16 @@ msgstr ""
msgid "%1$s's status on %2$s"
msgstr ""
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "A címzett felhasználó nem található."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3493,16 +3984,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Nem támogatott adatformátum."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Emberek keresése"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Hírek keresése"
@@ -3516,69 +4008,80 @@ msgid "Manage various other options."
msgstr "Számos egyéb beállítás kezelése."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (ingyenes szolgáltatás)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr ""
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr ""
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr ""
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr ""
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "A nyelv túl hosszú (legfeljebb 50 karakter lehet)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr ""
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr ""
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr ""
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr ""
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr ""
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "%1$s kimenő postafiókja - %2$d. oldal"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "%s kimenő postafiókja"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "Ez az elküldött privát üzeneteid postafiókja."
@@ -3590,7 +4093,8 @@ msgstr "Jelszó megváltoztatása"
msgid "Change your password."
msgstr "Változtasd meg a jelszavadat."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Jelszó megváltoztatása"
@@ -3598,48 +4102,50 @@ msgstr "Jelszó megváltoztatása"
msgid "Old password"
msgstr "Régi jelszó"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Új jelszó"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 vagy több karakter"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Megerősítés"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Ugyanaz mint a fenti jelszó"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Változtassunk"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "A jelszónak legalább 6 karakterből kell állnia."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "A jelszavak nem egyeznek."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Érvénytelen a régi jelszó"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Hiba a felhasználó mentésekor; érvénytelen."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Az új jelszót nem sikerült elmenteni."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Jelszó elmentve."
@@ -3857,7 +4363,7 @@ msgstr "A nyelvi fájlok elérési útvonala"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Csatolmányok"
@@ -3930,7 +4436,9 @@ msgstr ""
msgid "Save paths"
msgstr "Elérési útvonalak mentése"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3940,7 +4448,8 @@ msgstr ""
"érdeklődési körük alapján. A kifejezéseket válaszd el szóközökkel; legalább "
"3 betűből kell állniuk."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Emberkereső"
@@ -3964,12 +4473,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "A hír licence ‘%1$s’ nem kompatibilis a webhely licencével ‘%2$s’."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profilbeállítások"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -3977,33 +4486,34 @@ msgstr ""
"többet tudhassanak rólad."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Személyes profil"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Teljes név"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Honlap"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr ""
@@ -4013,7 +4523,7 @@ msgstr ""
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4021,74 +4531,81 @@ msgstr[0] "Jellemezd önmagad és az érdeklődési köröd %d karakterben"
msgstr[1] "Jellemezd önmagad és az érdeklődési köröd %d karakterben"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Jellemezd önmagad és az érdeklődési köröd"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Életrajz"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Helyszín"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Tegyük közzé az aktuális tartózkodási helyem amikor híreket küldök"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Címkék"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Címkék magadhoz (betűk, számok, -, ., és _), vesszővel vagy szóközzel "
"elválasztva"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Nyelv"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Előnyben részesített nyelv"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Időzóna"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Általában melyik időzónában vagy?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Automatikusan iratkozzunk fel mindazok híreire, aki feliratkoznak a mieinkre "
"(nem embereknek való)"
@@ -4096,7 +4613,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4104,50 +4621,53 @@ msgstr[0] "Az bemutatkozás túl hosszú (max %d karakter)."
msgstr[1] "Az bemutatkozás túl hosszú (max %d karakter)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Nem választottál időzónát."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "A nyelv túl hosszú (legfeljebb 50 karakter lehet)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Érvénytelen címke: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Nem sikerült a felhasználónak automatikus feliratkozást beállítani."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Nem sikerült a helyszín beállításait elmenteni."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Nem sikerült elmenteni a profilt."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "Nem sikerült a címkéket elmenteni."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr ""
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "A beállításokat elmentettük."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr ""
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4217,6 +4737,12 @@ msgid ""
"tool."
msgstr ""
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s-frissítések mindenki számára!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4259,230 +4785,265 @@ msgstr ""
msgid "Tag cloud"
msgstr "Címkefelhő"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Már be vagy jelentkezve!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Nincs ilyen visszaállítási kód."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Nem visszaállítási kód."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr ""
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr ""
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr ""
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Nem sikerült a felhasználó frissítése a megerősített e-mail címmel."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Jelszó visszaállítása"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Becenév vagy email cím"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Alaphelyzetbe állítás"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Alaphelyzetbe állítás"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Jelszó alaphelyzetbe állítása"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Elfelejtett jelszó"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Jelszó visszaállítás kérvényezve"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Jelszó elmentve."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Ismeretlen művelet"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 vagy több karakter, és ne felejtsd el!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Alaphelyzet"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Adj meg egy nicknevet vagy email címet."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr ""
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr ""
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr ""
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
msgstr ""
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr ""
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "A jelszónak legalább 6 karakterből kell állnia."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "A jelszó és a megerősítése nem egyeznek meg."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Hiba a felhasználó beállításakor."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr ""
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Elnézést, de csak meghívóval lehet regisztrálni."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr ""
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "A regisztráció sikeres"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Regisztráció"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "A regisztráció nem megengedett."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Nem tudsz regisztrálni ha nem fogadod el a licencet."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Az e-mail cím már létezik."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Érvénytelen felhasználónév vagy jelszó."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 kisbetű vagy számjegy, nem lehet írásjel vagy szóköz benne. Szükséges."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 vagy több karakter. Kötelező."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Ugyanaz mint a jelszó fentebb. Szükséges."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-mail"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Csak frissítéskor, fontos közlemények esetén és jelszóproblémák orvoslására "
"használjuk"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Hosszabb név, célszerűen a \"valódi\" neved"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr ""
-"A honlapodhoz, blogodhoz, vagy egy másik webhelyen lévő profilodhoz tartozó "
-"URL"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Merre vagy, mint pl. \"Város, Megye, Ország\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr ""
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4501,7 +5062,7 @@ msgid ""
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4509,7 +5070,7 @@ msgstr ""
"(Hamarosan kapnod kell egy e-mailt az e-mail címed megerősítésére vonatkozó "
"utasításokkal.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4517,77 +5078,83 @@ msgid ""
"microblogging site](%%doc.openmublog%%), enter your profile URL below."
msgstr ""
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Távoli feliratkozás"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr ""
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Felhasználó beceneve"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
msgstr ""
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profil URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Kövessük"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+msgid "Invalid profile URL (bad format)."
msgstr ""
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
-msgstr ""
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
+msgstr "Az a felhasználó blokkolta hogy figyelemmel kövesd."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
-msgstr ""
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
+msgstr "Nem sikerült az üzenetet feldolgozni."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr ""
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Nincs hír megjelölve."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
-msgstr ""
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
+msgstr "Nem ismételheted meg a saját híredet."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr ""
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr ""
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr ""
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr ""
@@ -4633,11 +5200,102 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
#, php-format
-msgid "Replies to %1$s on %2$s!"
+msgid "Replies to %1$s on %2$s."
msgstr ""
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Csak a felhasználó láthatja a saját postaládáját."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Nem törölheted más felhasználók állapotait."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Fájl feltöltése"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "A feltöltött fájl csak részben van feltöltve."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Hiányzik egy ideiglenes mappa."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Nem sikerült a fájlt lemezre írni."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "A fájl feltöltése megszakadt a kiterjedése/kiterjesztése miatt."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Összes tag"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Fájl feltöltése"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr ""
@@ -4646,7 +5304,7 @@ msgstr ""
msgid "User doesn't have this role."
msgstr ""
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4688,132 +5346,146 @@ msgstr ""
msgid "Save site settings"
msgstr "Mentsük el a webhely beállításait"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr ""
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr ""
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Ikon"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Név"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Szervezet"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Leírás"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statisztika"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr ""
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Törlés"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr ""
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr ""
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr ""
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Nem sikerült a kedvenc híreket lekérni."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "%s kedvenceinek RSS 1.0 hírcsatornája"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "%s kedvenceinek RSS 2.0 hírcsatornája"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "%s kedvenceinek Atom hírcsatornája"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4821,7 +5493,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Ez az egyik módja annak, hogy megoszd amit kedvelsz."
@@ -4839,82 +5512,89 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s csoport, %2$d. oldal"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Csoportprofil"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL-cím"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Megjegyzés"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Álnevek"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Csoport-tevékenységek"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "%s csoport RSS 1.0 hírcsatornája"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "%s csoport RSS 2.0 hírcsatornája"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "%s csoport Atom hírcsatornája"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF a %s csoportnak"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Tagok"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(nincs)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Összes tag"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Létrehoztuk"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -4924,7 +5604,7 @@ msgstr "Tagok"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4943,7 +5623,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4953,30 +5633,30 @@ msgid ""
msgstr ""
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Adminisztrátorok"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Nincs ilyen üzenet."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Csak a küldő és a címzett olvashatja ezt az üzenetet."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr ""
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr ""
@@ -4992,7 +5672,7 @@ msgid "%1$s tagged %2$s"
msgstr " %s megcímkézve"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5232,145 +5912,147 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
-msgstr ""
+#, fuzzy
+msgid "Save site notice."
+msgstr "A webhely híre"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS beállítások"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "Az SMS nem elérhető."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr ""
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr ""
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Ez a telefonszám ellenőrzésre vár."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr ""
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Add meg a kódot amit a telefonodra kaptál."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Megerősítés"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMS telefonszám"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr ""
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
+msgstr "1-64 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr ""
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
msgstr ""
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr ""
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Nincs telefonszám."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr ""
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr ""
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr ""
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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 ""
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr ""
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr ""
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr ""
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr ""
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Mobilszolgáltató"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Válassz egy szolgáltatót"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5378,8 +6060,9 @@ msgid ""
msgstr ""
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Nincs kód megadva"
#. TRANS: Menu item for site administration
@@ -5451,15 +6134,19 @@ msgstr ""
msgid "Could not save subscription."
msgstr ""
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Feliratkozott"
@@ -5491,7 +6178,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Ezek azok az emberek, akik odafigyelnek %s híreire."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5499,7 +6186,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5509,7 +6196,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5540,7 +6227,7 @@ msgstr ""
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5554,23 +6241,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s nem követ figyelemmel senkit."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "%s Atom hírcsatornája"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5603,12 +6291,15 @@ msgstr ""
msgid "Tag %s"
msgstr ""
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Felhasználói profil"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Fénykép"
@@ -5622,15 +6313,16 @@ msgid ""
"separated"
msgstr ""
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Érvénytelen címke: \"%s\""
+
#: 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 ""
@@ -5639,6 +6331,7 @@ msgstr ""
msgid "No such tag."
msgstr "Nincs ilyen címke."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr ""
@@ -5659,7 +6352,7 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5691,12 +6384,11 @@ msgstr "Érvénytelen SSL szerver. A maximális hossz 255 karakter."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5753,117 +6445,156 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Mentsük el a webhely beállításait"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Feliratkozás engedélyezése"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licenc"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Elfogadás"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
-msgstr ""
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
+msgstr "Ezen felhasználók híreire már feliratkoztál:"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Visszautasítás"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
-msgstr ""
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
+msgstr "Feliratkozás engedélyezése"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr ""
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr ""
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr ""
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
+msgstr "A forrás URL túl hosszú."
+
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+msgid "Listenee URI \"%s\" is a local user."
msgstr ""
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+msgid "Profile URL \"%s\" is for a local user."
msgstr ""
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr "A hír licence ‘%1$s’ nem kompatibilis a webhely licencével ‘%2$s’."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "A forrás URL nem érvényes."
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+msgid "Cannot read avatar URL \"%s\"."
msgstr ""
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr ""
-
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr ""
-
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr ""
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr ""
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -5893,7 +6624,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr ""
@@ -5942,7 +6673,7 @@ msgid "Plugins"
msgstr ""
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr ""
@@ -5951,32 +6682,32 @@ msgid "Author(s)"
msgstr "Szerző(k)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Kedvelem"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -5989,7 +6720,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -5998,7 +6729,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6006,7 +6737,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr ""
@@ -6064,7 +6795,7 @@ msgid "Could not create login token for %s"
msgstr ""
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6091,71 +6822,71 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr ""
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr ""
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr ""
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Probléma merült fel a hír mentése közben."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr ""
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Nem sikerült menteni a profilt."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6163,14 +6894,14 @@ msgstr "%1$s - %2$s"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6240,35 +6971,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Nem sikerült létrehozni a csoportot."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr ""
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Nem sikerült beállítani a csoporttagságot."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr ""
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Nem törölhetsz felhasználókat."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6305,211 +7057,214 @@ msgid "Other"
msgstr "Más egyéb"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Név nélküli oldal"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Elsődleges navigáció"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr ""
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr ""
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr ""
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Kontó"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr ""
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Kapcsolódás"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr ""
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr ""
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr ""
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr ""
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr ""
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr ""
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr ""
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr ""
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr ""
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr ""
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr ""
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr ""
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr ""
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr ""
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "A webhely híre"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr ""
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr ""
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Másodlagos navigáció"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Súgó"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Névjegy"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "GyIK"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Felhasználási feltételek"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr ""
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Forrás"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Kapcsolat"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr ""
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "A StatusNet szoftver licence"
@@ -6517,7 +7272,7 @@ msgstr "A StatusNet szoftver licence"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6525,7 +7280,7 @@ msgid ""
msgstr ""
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr ""
@@ -6534,7 +7289,7 @@ msgstr ""
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6543,50 +7298,50 @@ msgid ""
msgstr ""
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "A webhely tartalmára vonatkozó licenc"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr ""
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Utána"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Előtte"
@@ -6595,10 +7350,80 @@ msgstr "Előtte"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Ismeretlen nyelv: \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Fénykép"
+msgid "Cannot force remote user to subscribe."
+msgstr "Nem sikerült a felhasználónak automatikus feliratkozást beállítani."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Ismeretlen fájltípus"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Már tagja vagy ennek a csoportnak."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Keressünk a hírek tartalmában"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Nincs ilyen felhasználó."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6670,7 +7495,7 @@ msgid "User configuration"
msgstr "A felhasználók beállításai"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Felhasználó"
@@ -6714,19 +7539,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6749,28 +7578,31 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Nem sikerült az üzenetet feldolgozni."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr ""
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr ""
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr ""
@@ -6881,17 +7713,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr ""
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Ne töröljük ezt a hírt"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Szerző"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Szolgáltató"
@@ -6922,6 +7760,11 @@ msgstr "A jelszó megváltoztatása nem engedélyezett"
msgid "Block"
msgstr "Blokkolás"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Felhasználó blokkolása"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7036,7 +7879,7 @@ msgstr "Teljes név: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Helyszín: %s"
@@ -7044,7 +7887,7 @@ msgstr "Helyszín: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Honlap: %s"
@@ -7274,26 +8117,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Nem találtunk konfigurációs fájlt. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "A következő helyeken kerestem konfigurációs fájlokat: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "A telepítő futtatása kijavíthatja ezt."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Menj a telepítőhöz."
@@ -7336,14 +8179,19 @@ msgstr ""
msgid "Database error"
msgstr "Adatbázishiba"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Töröljük ezt a felhasználót"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Fájl feltöltése"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7362,26 +8210,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Ki"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Alaphelyzet"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Színek megváltoztatása"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Alapértelmezések használata"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Visszaállítás az alapértelmezettre"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Design mentése"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Nem sikerült frissíteni a designt."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr ""
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr ""
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Nem kedvelem ezt a hírt"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Kedvenc eltávolítása"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Kedvelem ezt a hírt"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Kedvelem"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr ""
@@ -7398,6 +8294,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Összes tag"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7432,27 +8341,27 @@ msgstr "Menjünk"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "A csoporthoz vagy témához tartozó honlap illetve blog URL-je"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Jellemezd a csoportot vagy a témát"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Jellemezd a csoportot vagy a témát %d karakterben"
msgstr[1] "Jellemezd a csoportot vagy a témát %d karakterben"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
@@ -7460,7 +8369,7 @@ msgstr ""
"A csoport földrajzi elhelyezkedése, ha van ilyen, pl. \"Város, Megye, Ország"
"\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7569,40 +8478,41 @@ msgstr "Címkék a(z) %s csoport híreiben"
msgid "This page is not available in a media type you accept"
msgstr ""
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Nem támogatott képformátum."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Az a fájl túl nagy. A maximális fájlméret %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Részleges feltöltés."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr ""
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr ""
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Elvesztettük a fájlt."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Ismeretlen fájltípus"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7610,7 +8520,7 @@ msgstr[0] "MB"
msgstr[1] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7618,7 +8528,7 @@ msgstr[0] "kB"
msgstr[1] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7639,23 +8549,25 @@ msgstr ""
msgid "Leave"
msgstr "Távozzunk"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Bejelentkezés felhasználónévvel és jelszóval"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Új kontó igénylése"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "E-mail cím megerősítése"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7687,14 +8599,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7706,7 +8618,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7734,14 +8646,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Bemutatkozás: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr ""
@@ -7749,7 +8661,7 @@ msgstr ""
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7764,34 +8676,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s állapota"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS megerősítés"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "%s megbökött téged."
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7820,7 +8732,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Új privát üzenetet küldött neked %s"
@@ -7829,7 +8741,7 @@ msgstr "Új privát üzenetet küldött neked %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7864,7 +8776,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez"
@@ -7874,7 +8786,7 @@ msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -7912,7 +8824,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -7922,7 +8834,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) figyelmedbe ajánlott egy hírt"
@@ -7933,7 +8845,7 @@ msgstr "%s (@%s) figyelmedbe ajánlott egy hírt"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -7960,11 +8872,11 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Csak a felhasználó láthatja a saját postaládáját."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -7973,10 +8885,6 @@ msgstr ""
"keveredj más felhasználókkal. Olyan üzenetet küldhetnek neked emberek, amit "
"csak te láthatsz."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "írta"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Nem sikerült az üzenetet feldolgozni."
@@ -8003,38 +8911,6 @@ msgstr "Nem támogatott üzenet-típus: %s"
msgid "There was a database error while saving your file. Please try again."
msgstr "Adatbázis-hiba történt a fájlod elmentése közben. Kérlek próbáld újra."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "A feltöltött fájl csak részben van feltöltve."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Hiányzik egy ideiglenes mappa."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Nem sikerült a fájlt lemezre írni."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "A fájl feltöltése megszakadt a kiterjedése/kiterjesztése miatt."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8055,7 +8931,7 @@ msgstr "Nem sikerült a fájl MIME-típusát megállapítani."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8064,7 +8940,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8098,18 +8974,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr ""
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Üzenet"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "írta"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "A becenév csak kisbetűket és számokat tartalmazhat, szóközök nélkül."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8125,11 +9010,11 @@ msgstr "Küldjünk egy hírt"
msgid "What's up, %s?"
msgstr "Mi hír, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Csatolás"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Csatoljunk egy állományt"
@@ -8148,55 +9033,59 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "É"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "D"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "K"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "Ny"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "előzmény"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Megismételte:"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Válaszoljunk erre a hírre"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Válasz"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Töröljük ezt a hírt"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "A hírt megismételtük"
@@ -8233,77 +9122,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr ""
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Személyes"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Válaszok"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Kedvencek"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
-msgstr ""
+msgstr "Homokozó"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "A bejövő üzeneteid"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
-msgstr ""
+msgstr "%s kimenő postafiókja"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "A küldött üzeneteid"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Címkék %s híreiben"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr ""
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Feliratkozások"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Összes feliratkozás"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Feliratkozók"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Minden feliratkozott"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Felhasználói azonosító"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Tagság kezdete:"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Csoportok"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Összes csoport"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8350,7 +9275,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr ""
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Az API-metódus nem található."
@@ -8441,6 +9366,10 @@ msgstr "Meghívás"
msgid "Invite friends and colleagues to join you on %s"
msgstr ""
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr ""
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8552,64 +9481,81 @@ msgstr ""
msgid "User %1$s (%2$d) has no profile record."
msgstr "A felhasználónak nincs profilja."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr ""
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Felhasználói műveletek"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr ""
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Szerkesztés"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr ""
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Üzenet"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderálás"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Felhasználói szerepkör"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Adminisztrátor"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderátor"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Nem vagy bejelentkezve."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "pár másodperce"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "körülbelül egy perce"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8617,12 +9563,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "körülbelül egy órája"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8630,12 +9576,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "körülbelül egy napja"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8643,12 +9589,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "körülbelül egy hónapja"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8656,18 +9602,13 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "körülbelül egy éve"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr ""
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr ""
@@ -8688,31 +9629,18 @@ msgstr[0] "Az túl hosszú. Egy hír legfeljebb %d karakterből állhat."
msgstr[1] "Az túl hosszú. Egy hír legfeljebb %d karakterből állhat."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Érvénytelen méret."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr ""
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po
index e21225d63a..5c718d489c 100644
--- a/locale/ia/LC_MESSAGES/statusnet.po
+++ b/locale/ia/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Interlingua (Interlingua)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: McDutchie
# --
@@ -9,17 +9,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:56+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:53+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -74,8 +74,9 @@ msgid "Save access settings"
msgstr "Salveguardar configurationes de accesso"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -85,13 +86,13 @@ msgstr "Salveguardar configurationes de accesso"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Salveguardar"
@@ -99,7 +100,7 @@ msgstr "Salveguardar"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Pagina non existe."
@@ -109,6 +110,8 @@ msgstr "Pagina non existe."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -124,13 +127,23 @@ msgstr "Pagina non existe."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -138,15 +151,15 @@ msgstr "Pagina non existe."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Iste usator non existe."
@@ -160,9 +173,10 @@ msgstr "%1$s e amicos, pagina %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s e amicos"
@@ -277,7 +291,7 @@ msgstr "Actualisationes de %1$s e su amicos in %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -311,7 +325,21 @@ msgstr ""
"im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Non poteva actualisar le usator."
@@ -321,18 +349,23 @@ msgstr "Non poteva actualisar le usator."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Le usator non ha un profilo."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Non poteva salveguardar le profilo."
@@ -342,8 +375,8 @@ msgstr "Non poteva salveguardar le profilo."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -363,13 +396,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Impossibile salveguardar le configurationes del apparentia."
@@ -377,48 +411,59 @@ msgstr "Impossibile salveguardar le configurationes del apparentia."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Non poteva actualisar le apparentia."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "Principal"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Chronologia de %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Subscriptiones de %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Favorites"
+msgstr "%s favorites"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "Membros del gruppo %s"
+msgstr "%s membratos"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Tu non pote blocar te mesme!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Le blocada del usator ha fallite."
@@ -476,7 +521,7 @@ msgstr "Usator destinatario non trovate."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Non pote inviar messages directe a usatores que non es tu amicos."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -499,8 +544,9 @@ msgid "This status is already a favorite."
msgstr "Iste stato es ja favorite."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Non poteva crear le favorite."
@@ -510,7 +556,8 @@ msgid "That status is not a favorite."
msgstr "Iste stato non es favorite."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Non poteva deler le favorite."
@@ -555,9 +602,9 @@ msgstr "Non poteva trovar le usator de destination."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Pseudonymo ja in uso. Proba un altere."
@@ -565,21 +612,22 @@ msgstr "Pseudonymo ja in uso. Proba un altere."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Non un pseudonymo valide."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Le pagina personal non es un URL valide."
@@ -587,23 +635,24 @@ msgstr "Le pagina personal non es un URL valide."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Le nomine complete es troppo longe (maximo 255 characteres)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -614,9 +663,9 @@ msgstr[1] "Description es troppo longe (maximo %d characteres)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Loco es troppo longe (maximo 255 characteres)."
@@ -626,8 +675,8 @@ msgstr "Loco es troppo longe (maximo 255 characteres)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -644,18 +693,16 @@ msgstr "Alias invalide: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Le alias \"%s\" es ja in uso. Proba un altere."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Le alias non pote esser identic al pseudonymo."
@@ -666,28 +713,32 @@ msgstr "Le alias non pote esser identic al pseudonymo."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Gruppo non trovate."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Tu es ja membro de iste gruppo."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Le administrator te ha blocate de iste gruppo."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Non poteva inscriber le usator %1$s in le gruppo %2$s."
@@ -699,9 +750,11 @@ msgstr "Tu non es membro de iste gruppo."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -738,7 +791,7 @@ msgid "Upload failed."
msgstr "Le incargamento ha fallite."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Indicio de requesta o verificator invalide."
@@ -758,20 +811,25 @@ msgid "Request token already authorized."
msgstr "Indicio de requesta jam autorisate."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Occurreva un problema con le indicio de tu session. Per favor reproba."
@@ -789,18 +847,22 @@ msgstr ""
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Submission de formulario inexpectate."
@@ -850,29 +912,31 @@ msgstr "Conto"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Pseudonymo"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Contrasigno"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -946,6 +1010,7 @@ msgstr "Tu non pote deler le stato de un altere usator."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -965,38 +1030,50 @@ msgstr "Non pote repeter tu proprie nota."
msgid "Already repeated that notice."
msgstr "Iste nota ha ja essite repetite."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "Methodo HTTP non supportate."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, php-format
-msgid "Unsupported format: %s"
-msgstr "Formato non supportate: %s"
+msgid "Unsupported format: %s."
+msgstr "Formato non supportate: %s."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Stato delite."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Nulle stato trovate con iste ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Le deletion es solmente possibile con le formato Atom."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "Non pote deler iste nota."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "Nota %d delite"
@@ -1057,7 +1134,7 @@ msgstr "%1$s actualisationes favoritisate per %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Non poteva generar un syndication pro le gruppo %s."
@@ -1079,13 +1156,14 @@ msgstr ""
"Actualisationes de %1$s que responde al actualisationes de %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Chronologia public de %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "Actualisationes de totes in %s!"
@@ -1129,211 +1207,257 @@ msgstr "Solmente le usator pote adder cosas a su proprie chronologia."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
-msgstr "Solmente acceptar AtomPub pro syndicationes in Atom."
+msgstr "Solmente acceptar AtomPub pro syndicationes Atom."
-#: actions/apitimelineuser.php:310
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr "Message Atom debe esser un entrata Atom."
+msgstr "Le message Atom non pote esser vacue."
-#: actions/apitimelineuser.php:315
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr "Message Atom debe esser un entrata Atom."
+msgstr "Le message Atom debe esser in XML ben formate."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr "Message Atom debe esser un entrata Atom."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
-#, fuzzy
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr "Solmente le activitates POST es possibile."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
-#, fuzzy, php-format
+#: actions/apitimelineuser.php:345
+#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr "Impossibile manear le typo de objecto de activitate \"%s\""
+msgstr "Impossibile manear le typo de objecto de activitate \"%s\"."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Cercar in contento de notas"
+msgstr "Nulle contento pro nota %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Un nota con le URI \"%s\" jam existe."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr "Message AtomPub con URI de attention incognite %s"
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Methodo API in construction."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Usator non trovate."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Profilo non existe."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Non poteva inserer nove subscription."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-#, fuzzy
-msgid "Can only handle Favorite activities."
-msgstr "Solmente le activitates POST es possibile."
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Solmente le activitates POST es possibile."
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Incognite"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Adder al favorites"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "Profilo non existe."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Notas que %1$s ha favorite in %2$s"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "Non es possibile adder le subscription de un altere persona."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "Solmente le activitates favorite es possibile."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Solmente notas pote esser addite al favorites."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Nota incognite."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Es ja favorite."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
+#, php-format
msgid "%s group memberships"
-msgstr "Membros del gruppo %s"
+msgstr "Membratos del gruppo %s"
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "Gruppos del quales %s es membro"
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "Gruppos del quales %1$s es membro in %2$s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "Non es possibile adder le membrato de un altere persona."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-#, fuzzy
-msgid "Can only handle Join activities."
-msgstr "Solmente le activitates POST es possibile."
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr "Solmente le activitates de adhesion es possibile."
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Incognite"
+msgstr "Gruppo incognite."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Tote le membros"
+msgstr "Ja membro."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Blocate per un administrator."
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "File non existe."
+msgstr "Iste favorite non existe."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "Non poteva deler le favorite."
+msgid "Cannot delete someone else's favorite."
+msgstr "Non pote deler le favorite de un altere persona."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Gruppo non existe."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "Tote le membros"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Methodo HTTP non supportate."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "Non es membro."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+msgid "Cannot delete someone else's membership."
+msgstr "Non pote deler le membrato de un altere persona."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Profilo non existe."
+#, php-format
+msgid "No such profile id: %d."
+msgstr "Iste ID de profilo non existe: %d"
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Tu non es subscribite a iste profilo."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Le profilo %1$d non es subscribite al profilo %2$d."
-#: actions/atompubshowsubscription.php:154
-#, fuzzy
-msgid "Can't delete someone else's subscription"
-msgstr "Non poteva deler auto-subscription."
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr "Non pote deler le subscription de un altere persona."
-#: actions/atompubsubscriptionfeed.php:150
-#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "Personas qui seque %s"
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "Personas a qui %1$s ha subscribite in %2$s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
-#, fuzzy
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
-msgstr "Solmente le activitates POST es possibile."
+msgstr "Solmente le activitates \"Follow\" es possibile."
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Pote solmente sequer personas."
-#: actions/atompubsubscriptionfeed.php:262
-#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Typo de file incognite"
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "Profilo %s incognite."
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "Ja subscribite a %s."
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1343,11 +1467,15 @@ msgstr "Annexo non existe."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Nulle pseudonymo."
@@ -1364,7 +1492,7 @@ msgstr "Dimension invalide."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1378,41 +1506,51 @@ msgstr ""
"Tu pote incargar tu avatar personal. Le dimension maximal del file es %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Usator sin profilo correspondente"
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Configuration del avatar"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Original"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Previsualisation"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Deler"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Incargar"
@@ -1428,31 +1566,75 @@ msgstr "Taliar"
msgid "No file uploaded."
msgstr "Nulle file incargate."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
-msgstr "Selige un area quadrate del imagine pro facer lo tu avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
+msgstr "Selige un area quadrate del imagine pro facer lo tu avatar."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Datos del file perdite."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Avatar actualisate."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Actualisation del avatar fallite."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Avatar delite."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Facer un copia de reserva del conto"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr ""
+"Solmente usatores authenticate pote facer un copia de reserva de lor conto."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "Tu non pote facer un copia de reserva de tu conto."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+"Tu pote facer un copia de reserva de tu conto in le formato Activity Streams. Isto es un function experimental "
+"que forni un copia de reserva incomplete; le informationes private del conto "
+"como adresses de e-mail e de messageria instantanee non es copiate. In "
+"addition, le files incargate e le messages directe non es copiate."
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Copia de reserva"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr "Facer un copia de reserva de tu conto."
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1460,7 +1642,8 @@ msgstr "Tu ha ja blocate iste usator."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Blocar usator"
@@ -1483,16 +1666,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "No"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
-msgstr "Non blocar iste usator"
+#: actions/block.php:158
+msgid "Do not block this user."
+msgstr "Non blocar iste usator."
#. TRANS: Button label on the user block form.
#. TRANS: Button label on the delete application form.
@@ -1502,47 +1684,21 @@ msgstr "Non blocar iste usator"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Si"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
-msgstr "Blocar iste usator"
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "Blocar iste usator."
#. TRANS: Server error displayed when blocking a user fails.
#: actions/block.php:189
msgid "Failed to save block information."
msgstr "Falleva de salveguardar le information del blocada."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Gruppo non existe."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1612,23 +1768,6 @@ msgstr "Le typo de adresse %s non es recognoscite."
msgid "That address has already been confirmed."
msgstr "Iste adresse ha ja essite confirmate."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Non poteva actualisar usator."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1653,11 +1792,84 @@ msgid "Conversation"
msgstr "Conversation"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Notas"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr "Solmente usatores authenticate pote deler lor conto."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "Tu non pote deler tu conto."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Io es secur."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "Tu debe scriber \"%s\" exactemente in le quadro."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "Conto delite."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Deler conto"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"Isto resulta in le deletion permanente del datos de tu "
+"conto ab iste servitor."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+"Es fortemente consiliate facer un copia de reserva de tu "
+"datos ante le deletion."
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Confirmar"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Entra \"%s\" pro confirmar que tu vole deler tu conto."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Deler permanentemente tu conto"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1671,14 +1883,14 @@ msgstr "Application non trovate."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Tu non es le proprietario de iste application."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Il habeva un problema con tu indicio de session."
@@ -1701,13 +1913,13 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
-msgstr "Non deler iste application"
+msgid "Do not delete this application."
+msgstr "Non deler iste application."
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
-msgstr "Deler iste application"
+msgid "Delete this application."
+msgstr "Deler iste application."
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
@@ -1715,8 +1927,10 @@ msgid "You must be logged in to delete a group."
msgstr "Tu debe aperir un session pro deler un gruppo."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Nulle pseudonymo o ID."
@@ -1758,24 +1972,30 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
-msgstr "Non deler iste gruppo"
+msgid "Do not delete this group."
+msgstr "Non deler iste gruppo."
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
-msgstr "Deler iste gruppo"
+msgid "Delete this group."
+msgstr "Deler iste gruppo."
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Tu non ha aperite un session."
@@ -1802,27 +2022,37 @@ msgstr "Es tu secur de voler deler iste nota?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
-msgstr "Non deler iste nota"
+msgid "Do not delete this notice."
+msgstr "Non deler iste nota."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
-msgstr "Deler iste nota"
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
+msgstr "Deler iste nota."
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Tu non pote deler usatores."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Tu pote solmente deler usatores local."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Deler usator"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Deler usator"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1830,80 +2060,102 @@ msgstr ""
"Es tu secur de voler deler iste usator? Isto radera tote le datos super le "
"usator del base de datos, sin copia de reserva."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr "Non deler iste usator."
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
-msgstr "Deler iste usator"
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "Deler iste usator."
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Apparentia"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Configuration del apparentia de iste sito StatusNet"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "URL de logotypo invalide."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "URL de logotypo SSL invalide."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Thema non disponibile: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Cambiar logotypo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logotypo del sito"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "Logotypo SSL"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Cambiar thema"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Thema del sito"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Le thema de apparentia pro le sito."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Apparentia personalisate"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
"Es possibile incargar un apparentia personalisate de StatusNet in un "
"archivo .ZIP."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Cambiar imagine de fundo"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Fundo"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1913,98 +2165,103 @@ msgstr ""
"file es %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Active"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Non active"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Activar o disactivar le imagine de fundo."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Tegular le imagine de fundo"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
msgstr "Cambiar colores"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Contento"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Barra lateral"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Texto"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Ligamines"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avantiate"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS personalisate"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Usar predefinitiones"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
-msgstr "Restaurar apparentias predefinite"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
+msgstr "Restaurar apparentias predefinite."
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
-msgstr "Revenir al predefinitiones"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr "Revenir al predefinitiones."
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Salveguardar"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
+msgstr "Salveguardar apparentia."
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
-msgstr "Salveguardar apparentia"
-
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Iste nota non es favorite!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Adder al favorites"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
+msgid "No such document \"%s\"."
msgstr "Le documento \"%s\" non existe."
#. TRANS: Title for "Edit application" form.
@@ -2019,7 +2276,7 @@ msgid "You must be logged in to edit an application."
msgstr "Tu debe aperir un session pro modificar un application."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Application non trovate."
@@ -2029,61 +2286,71 @@ msgid "Use this form to edit your application."
msgstr "Usa iste formulario pro modificar le application."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Le nomine es requirite."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "Le nomine es troppo longe (maximo 255 characteres)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Nomine ja in uso. Proba un altere."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Le description es requirite."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Le URL de origine es troppo longe."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "Le URL de origine non es valide."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Le organisation es requirite."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "Le organisation es troppo longe (maximo 255 characteres)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Le sito web del organisation es requirite."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Le appello de retorno es troppo longe."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "Le URL de retorno non es valide."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Non poteva actualisar application."
@@ -2094,14 +2361,17 @@ msgid "Edit %s group"
msgstr "Modificar gruppo %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Tu debe aperir un session pro crear un gruppo."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Tu debe esser administrator pro modificar le gruppo."
@@ -2112,63 +2382,65 @@ msgstr "Usa iste formulario pro modificar le gruppo."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Alias invalide: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Non poteva actualisar gruppo."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Non poteva crear aliases."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Optiones salveguardate."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Configuration de e-mail"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Configurar como reciper e-mail de %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Adresse de e-mail"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Adresse de e-mail actualmente confirmate."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Remover"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2181,133 +2453,135 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Le adresse de e-mail, como \"nomine@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Adder"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "E-mail entrante"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Io vole publicar notas per e-mail."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Invia e-mail a iste adresse pro publicar nove notas."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
"Face un nove adresse de e-mail per le qual publicar; cancella le vetule."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
+"Pro inviar notas via e-mail, es necessari crear te un adresse de e-mail unic "
+"in iste servitor:"
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nove"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Preferentias de e-mail"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Inviar me notificationes de nove subscriptiones per e-mail."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Inviar me e-mail quando alcuno adde mi nota al favorites."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Inviar me e-mail quando alcuno me invia un message private."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Inviar me e-mail quando alcuno me invia un \"responsa @\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Permitte que amicos me pulsa e me invia e-mail."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publicar un MicroID pro mi adresse de e-mail."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Preferentias de e-mail salveguardate."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Nulle adresse de e-mail."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
-msgstr "Non pote normalisar iste adresse de e-mail"
+#: actions/emailsettings.php:388
+msgid "Cannot normalize that email address."
+msgstr "Non pote normalisar iste adresse de e-mail."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Adresse de e-mail invalide."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Isto es ja tu adresse de e-mail."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Iste adresse de e-mail pertine ja a un altere usator."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
msgstr "Non poteva inserer le codice de confirmation."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2317,88 +2591,101 @@ msgstr ""
"instructiones pro usar lo."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Nulle confirmation pendente a cancellar."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Iste adresse de e-mail es erronee."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
msgstr "Non poteva deler confirmation de e-mail."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Confirmation de e-mail cancellate."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Isto non es tu adresse de e-mail."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Le adresse de e-mail ha essite removite."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Nulle adresse de e-mail entrante."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr "Non poteva actualisar le datos del usator."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Adresse de e-mail entrante removite."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Nove adresse de e-mail entrante addite."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Iste nota es ja favorite!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
-msgstr "Disfavorir favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
+msgstr "Disfavorir favorite."
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Notas popular"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Notas popular, pagina %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Le notas le plus popular del sito in iste momento."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Le notas favorite appare in iste pagina, ma necuno ha ancora favoritisate un."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2407,7 +2694,9 @@ msgstr ""
"Sia le prime a adder un nota a tu favorites per cliccar le button Favorite "
"juxta un nota que te place."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2416,142 +2705,186 @@ msgstr ""
"Proque non [crear un conto](%%action.register%%) e esser le prime a adder un "
"nota a tu favorites!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Notas favorite de %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Actualisationes favorite per %1$s in %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Usatores in evidentia"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Usatores in evidentia, pagina %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
-msgstr "Un selection de usatores eminente in %s"
+msgid "A selection of some great users on %s."
+msgstr "Un selection de usatores eminente in %s."
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Nulle ID de nota."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Nulle nota."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Nulle annexo."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Nulle annexo incargate."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Non expectava iste responsa!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Le usator sequite non existe."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Tu pote usar le subscription local!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Iste usator te ha blocate de subscriber."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Tu non es autorisate."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Non poteva converter le indicio de requesta in un indicio de accesso."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Le servicio remote usa un version incognite del protocollo OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Error durante le actualisation del profilo remote."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "File non existe."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Non pote leger file."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Rolo invalide."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Iste rolo es reservate e non pote esser apponite."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Tu non pote conceder rolos a usatores in iste sito."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Le usator ha ja iste rolo."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Nulle profilo specificate."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Non existe un profilo con iste ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Nulle gruppo specificate."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Solmente un administrator pote blocar membros de un gruppo."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Le usator es ja blocate del gruppo."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Le usator non es membro del gruppo."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Blocar usator del gruppo"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2563,32 +2896,38 @@ msgstr ""
"subscriber se al gruppo in le futuro."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
-msgstr "Non blocar iste usator de iste gruppo"
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
+msgstr "Non blocar iste usator de iste gruppo."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
-msgstr "Blocar iste usator de iste gruppo"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "Blocar iste usator de iste gruppo."
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Error del base de datos al blocar le usator del gruppo."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Nulle ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Tu debe aperir un session pro modificar un gruppo."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Apparentia del gruppo"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2596,22 +2935,25 @@ msgstr ""
"Personalisa le apparentia de tu gruppo con un imagine de fundo e un paletta "
"de colores de tu preferentia."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Non poteva actualisar tu apparentia."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
+msgstr "Impossibile actualisar le configurationes del apparentia."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Preferentias de apparentia salveguardate."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logotypo del gruppo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2619,112 +2961,129 @@ msgstr ""
"Tu pote incargar un imagine pro le logotypo de tu gruppo. Le dimension "
"maximal del file es %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Incargar"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Taliar"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Selige un area quadrate del imagine que devenira le logotypo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logotypo actualisate."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Falleva de actualisar le logotypo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Membros del gruppo %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Membros del gruppo %1$s, pagina %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Un lista de usatores in iste gruppo."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Administrator"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Blocar"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Blocar iste usator"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Facer le usator administrator del gruppo"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Facer admin"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Facer iste usator un administrator"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Actualisationes de membros de %1$s in %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr "Gruppos"
-#: actions/groups.php:64
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
#, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Gruppos, pagina %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Le gruppos de %%%%site.name%%%% permitte trovar e parlar con personas que ha "
-"interesses similar al tues. Post haber unite se a un gruppo, tu pote inviar "
-"messages a tote le altere membros usante le syntaxe \"!groupname\". Tu non "
-"vide un gruppo que te place? Tenta [cercar un](%%%%action.groupsearch%%%%) o "
-"[crear le tue!](%%%%action.newgroup%%%%)"
+"interesses similar al tues. Post unir te a un gruppo, tu pote inviar "
+"messages a tote le altere membros usante le syntaxe \"!nominedelgruppo\". Tu "
+"non vide un gruppo que te place? Tenta [cercar un](%%%%action.groupsearch%%%"
+"%) o [crear le tue](%%%%action.newgroup%%%%)!"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Crear un nove gruppo"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2733,25 +3092,33 @@ msgstr ""
"Cercar gruppos in %%site.name%% per nomine, loco o description. Separa le "
"terminos con spatios; illos debe haber al minus 3 characteres."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Recerca de gruppos"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Nulle resultato."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Si tu non trova le gruppo que tu cerca, tu pote [crear lo](%%action.newgroup%"
"%) tu mesme."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2761,138 +3128,141 @@ msgstr ""
"action.newgroup%%) tu mesme?"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Solmente un administrator pote disblocar membros de un gruppo."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Le usator non es blocate del gruppo."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Error de remover le blocada."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Configuration de messageria instantanee"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Tu pote inviar e reciper notas per [messages instantanee](%%doc.im%%) de "
-"Jabber/GTalk. Configura tu adresse e parametros hic infra."
+"Jabber/Google Talk. Configura tu adresse e parametros hic infra."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "Messageria instantanee non disponibile."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Adresse de messageria instantanee"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Adresse Jabber/GTalk actualmente confirmate."
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
+msgstr "Adresse Jabber/Google Talk actualmente confirmate."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
-"Attende confirmation de iste adresse. Verifica tu conto Jabber/GTalk pro un "
+"Iste adresse attende confirmation. Lege in tu conto Jabber/Google Talk un "
"message con ulterior instructiones. (Ha tu addite %s a tu lista de amicos?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-"Un adresse Jabber o GTalk, como \"nomine@example.org\". Primo, assecura te "
-"de adder %s a tu lista de amicos in tu cliente de messageria instantanee o "
-"in GTalk."
+"Un adresse Jabber o Google Talk, como \"nomine@example.org\". Primo, "
+"assecura te de adder %s a tu lista de amicos in tu cliente de messageria "
+"instantanee o in Google Talk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Preferentias de messageria instantanee"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Inviar me notas per Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
+msgstr "Inviar me notas per Jabber/Google Talk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Publicar un nota quando mi stato de Jabber/GTalk cambia."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
+msgstr "Publicar un nota quando mi stato de Jabber/Google Talk cambia."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
-"Inviar me responsas per Jabber/GTalk de personas al quales io non es "
+"Inviar me responsas per Jabber/Google Talk de personas al quales io non es "
"subscribite."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "Publicar un MicroID pro mi adresse Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr "Publicar un MicroID pro mi adresse Jabber/Google Talk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Preferentias confirmate."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Nulle ID de Jabber."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
-msgstr "Non pote normalisar iste ID de Jabber"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+msgid "Cannot normalize that Jabber ID."
+msgstr "Impossibile normalisar iste ID de Jabber."
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
-msgstr "ID de Jabber non valide"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+msgid "Not a valid Jabber ID."
+msgstr "ID de Jabber non valide."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Isto es ja tu ID de Jabber."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Le ID de Jabber pertine ja a un altere usator."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2901,74 +3271,79 @@ msgstr ""
"Un codice de confirmation ha essite inviate al adresse de messageria "
"instantanee specificate. Tu debe approbar que %s invia messages a te."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Iste adresse de messageria instantanee es erronee."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
msgstr "Non poteva deler confirmation de messageria instantanee."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Confirmation de messageria instantanee cancellate."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Isto non es tu ID de Jabber."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Le adresse de messageria instantanee ha essite removite."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Cassa de entrata de %1$s - pagina %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Cassa de entrata de %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Isto es tu cassa de entrata, que lista le messages private que tu ha "
"recipite."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Le invitationes ha essite disactivate."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Tu debe aperir un session pro invitar altere usatores a usar %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Adresse de e-mail invalide: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Invitationes inviate"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Invitar nove usatores"
@@ -2976,7 +3351,7 @@ msgstr "Invitar nove usatores"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Tu es ja subscribite a iste usator:"
@@ -2984,7 +3359,7 @@ msgstr[1] "Tu es ja subscribite a iste usatores:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2993,7 +3368,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3006,7 +3381,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Invitation inviate al sequente persona:"
@@ -3014,7 +3389,7 @@ msgstr[1] "Invitationes inviate al sequente personas:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3023,34 +3398,34 @@ msgstr ""
"registra in le sito. Gratias pro facer crescer le communitate!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
"Usa iste formulario pro invitar tu amicos e collegas a usar iste servicio."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Adresses de e-mail"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
-msgstr "Adresses de amicos a invitar (un per linea)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
+msgstr "Adresses de amicos a invitar (un per linea)."
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Message personal"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Si tu vole, adde un message personal al invitation."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Inviar"
@@ -3058,7 +3433,7 @@ msgstr "Inviar"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s te ha invitate a accompaniar le/la in %2$s"
@@ -3068,7 +3443,7 @@ msgstr "%1$s te ha invitate a accompaniar le/la in %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3125,44 +3500,51 @@ msgstr ""
"\n"
"Sincermente, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Tu debe aperir un session pro facer te membro de un gruppo."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s se jungeva al gruppo %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Tu debe aperir un session pro quitar un gruppo."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Tu non es membro de iste gruppo."
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s quitava le gruppo %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Licentia"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Licentia pro iste sito StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Selection de licentia invalide."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3170,126 +3552,135 @@ msgstr ""
"Tu debe specificar le proprietario del contento si tu usa le licentia \"Tote "
"derectos reservate\"."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Titulo de licentia invalide. Longitude maximal es 255 characteres."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "URL de licentia invalide."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "URL de imagine de licentia invalide."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "Le URL de licentia debe esser vacue o un URL valide."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "Le imagine de licentia debe esser vacue o un URL valide."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Selection de licentia"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Private"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Tote le derectos reservate"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Typo"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Selige licentia"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Detalios de licentia"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Proprietario"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Nomine del proprietario del contento del sito (si applicabile)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Titulo de licentia"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Le titulo del licentia."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL del licentia"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL pro ulterior informationes super le licentia."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL del imagine del licentia"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "Le URL de un imagine a monstrar con le licentia."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Salveguardar"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Salveguardar configurationes de licentia"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Tu es jam authenticate."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Nomine de usator o contrasigno incorrecte."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
"Error de acceder al conto de usator. Tu probabilemente non es autorisate."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Aperir session"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Authenticar te a iste sito"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Memorar me"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Aperir session automaticamente in le futuro; non pro computatores usate in "
"commun!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Contrasigno perdite o oblidate?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3297,11 +3688,11 @@ msgstr ""
"Pro motivos de securitate, per favor re-entra tu nomine de usator e "
"contrasigno ante de cambiar tu configurationes."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Aperi un session con tu nomine de usator e contrasigno."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3337,19 +3728,22 @@ msgid "New application"
msgstr "Nove application"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Tu debe aperir un session pro registrar un application."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Usa iste formulario pro registrar un nove application."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Le URL de origine es requirite."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Non poteva crear application."
@@ -3358,11 +3752,21 @@ msgstr "Non poteva crear application."
msgid "New group"
msgstr "Nove gruppo"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr "Tu non ha le permission de crear gruppos in iste sito."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Usa iste formulario pro crear un nove gruppo."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr "Le alias non pote esser identic al pseudonymo."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nove message"
@@ -3412,7 +3816,9 @@ msgstr "Nove nota"
msgid "Notice posted"
msgstr "Nota publicate"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3421,16 +3827,21 @@ msgstr ""
"Cerca notas in %%site.name%% per contento. Separa terminos de recerca per "
"spatios; illos debe haber al minus 3 characteres."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Recerca de texto"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Resultatos del recerca de \"%1$s\" in %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3439,7 +3850,9 @@ msgstr ""
"Sia le prime a [publicar un nota super iste topico](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3449,14 +3862,17 @@ msgstr ""
"a [publicar un nota super iste topico](%%%%action.newnotice%%%%?"
"status_textarea=%s)?"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Actualisationes con \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Actualisationes correspondente al termino de recerca \"%1$s\" in %2$s!"
#: actions/nudge.php:85
@@ -3497,30 +3913,30 @@ msgid "You have not registered any applications yet."
msgstr "Tu non ha ancora registrate alcun application."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Applicationes connectite"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "Le sequente connexiones existe pro tu conto."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Tu non es usator de iste application."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Impossibile revocar le accesso del application: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3530,14 +3946,14 @@ msgstr ""
"comenciante con %2$s."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Tu non ha autorisate alcun application a usar tu conto."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3546,6 +3962,16 @@ msgstr ""
"Es tu un programmator? [Registra un application cliente OAuth](%s) a usar "
"con iste installation de StatusNet."
+#: actions/oembed.php:64
+#, php-format
+msgid "\"%s\" not found."
+msgstr "\"%s\" non trovate."
+
+#: actions/oembed.php:76
+#, php-format
+msgid "Notice %s not found."
+msgstr "Nota %s non trovate."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Le nota ha nulle profilo."
@@ -3555,6 +3981,16 @@ msgstr "Le nota ha nulle profilo."
msgid "%1$s's status on %2$s"
msgstr "Le stato de %1$s in %2$s"
+#: actions/oembed.php:95
+#, php-format
+msgid "Attachment %s not found."
+msgstr "Annexo %s non trovate."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr "\"%s\" non es supportate pro le requestas \"oembed\"."
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3568,16 +4004,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Solmente le URLs %s es permittite super HTTP simple."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Formato de datos non supportate."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Recerca de personas"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Rercerca de notas"
@@ -3591,69 +4028,80 @@ msgid "Manage various other options."
msgstr "Gestion de varie altere optiones."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
-msgstr " (servicio gratuite)"
+msgstr " (servicio libere)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Accurtar URLs con"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Le servicio de accurtamento automatic a usar."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Vider apparentias de profilo"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Monstrar o celar apparentias de profilo."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr ""
"Le servicio de accurtamento de URL es troppo longe (maximo 50 characteres)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Nulle identificator de usator specificate."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Nulle indicio de identification specificate."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Nulle indicio de identification requestate."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Indicio de identification invalide specificate."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Le indicio de identification ha expirate."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Cassa de exito de %1$s - pagina %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Cassa de exito pro %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Isto es tu cassa de exito, que lista le messages private que tu ha inviate."
@@ -3666,7 +4114,8 @@ msgstr "Cambiar contrasigno"
msgid "Change your password."
msgstr "Cambiar tu contrasigno."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Cambio del contrasigno"
@@ -3674,48 +4123,47 @@ msgstr "Cambio del contrasigno"
msgid "Old password"
msgstr "Ancian contrasigno"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nove contrasigno"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
-msgstr "6 o plus characteres"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
+msgstr "6 o plus characteres."
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Confirmar"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Identic al contrasigno hic supra"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
+msgstr "Identic al contrasigno hic supra."
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Cambiar"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Le contrasigno debe haber al minus 6 characteres."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Le contrasignos non corresponde."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Ancian contrasigno incorrecte"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Error de salveguardar le usator; invalide."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
msgstr "Non pote salveguardar le nove contrasigno."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Contrasigno salveguardate."
@@ -3921,7 +4369,7 @@ msgstr "Cammino a ubi se trova le fundos de schermo."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Annexos"
@@ -3989,7 +4437,9 @@ msgstr "Servitor verso le qual diriger le requestas SSL."
msgid "Save paths"
msgstr "Salveguardar camminos"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3998,7 +4448,8 @@ msgstr ""
"Cerca personas in %%site.name%% per nomine, loco o interesses. Separa le "
"terminos per spatios; illos debe haber 3 characteres o plus."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Recerca de personas"
@@ -4024,12 +4475,12 @@ msgstr ""
"$s’."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Configurationes del profilo"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4037,39 +4488,40 @@ msgstr ""
"gente pote facer plus de te."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
-msgstr "Information de profilo"
+msgstr "Informationes del profilo"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 minusculas o numeros, sin punctuation o spatios."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Nomine complete"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Pagina personal"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL de tu pagina personal, blog o profilo in un altere sito."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4077,81 +4529,86 @@ msgstr[0] "Describe te e tu interesses in %d character"
msgstr[1] "Describe te e tu interesses in %d characteres"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Describe te e tu interesses"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Bio"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Loco"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Divulgar mi loco actual quando io publica notas"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Etiquettas"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Etiquettas pro te (litteras, numeros, -, ., e _), separate per commas o "
-"spatios"
+"spatios."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Lingua"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
-msgstr "Lingua preferite"
+#: actions/profilesettings.php:171
+msgid "Preferred language."
+msgstr "Lingua preferite."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Fuso horari"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "In que fuso horari es tu normalmente?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
-"Subscriber me automaticamente a qui se subscribe a me (utile pro non-humanos)"
+"Subscriber me automaticamente a qui se subscribe a me (utile pro non-"
+"humanos)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4159,49 +4616,50 @@ msgstr[0] "Bio es troppo longe (maximo %d character)."
msgstr[1] "Bio es troppo longe (maximo %d characteres)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Fuso horari non seligite."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "Lingua es troppo longe (maximo 50 characteres)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
+#: actions/profilesettings.php:291
#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "Etiquetta invalide: \"%s\""
+msgid "Invalid tag: \"%s\"."
+msgstr "Etiquetta invalide: \"%s\"."
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
-msgstr "Non poteva actualisar usator pro autosubscription."
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
+msgstr "Non poteva actualisar le usator pro autosubscription."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
msgstr "Non poteva salveguardar le preferentias de loco."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Non poteva salveguardar profilo."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Non poteva salveguardar etiquettas."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Preferentias confirmate."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr "Restaurar conto"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4276,6 +4734,12 @@ msgstr ""
"Isto es %%site.name%%, un servicio de [micro-blog](http://ia.wikipedia.org/"
"wiki/Microblog) a base del software libere [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "Actualisationes de totes in %s!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4321,35 +4785,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Etiquettario"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Tu es jam authenticate!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Iste codice de recuperation non existe."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Non es un codice de recuperation."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Codice de recuperation pro un usator incognite."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Error con le codice de confirmation."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Iste codice de confirmation ha expirate. Per favor recomencia."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Non poteva actualisar le usator con le adresse de e-mail confirmate."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4357,67 +4829,96 @@ msgstr ""
"Si tu ha oblidate o perdite tu contrasigno, tu pote facer inviar un nove al "
"adresse de e-mail specificate in tu conto."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Tu ha essite identificate. Entra un nove contrasigno hic infra. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Tu ha essite identificate. Entra un nove contrasigno hic infra."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Recuperation de contrasigno"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Pseudonymo o adresse de e-mail"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Tu pseudonymo in iste servitor, o tu adresse de e-mail registrate."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Recuperar"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Recuperar"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Reinitialisar contrasigno"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Recuperar contrasigno"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Recuperation de contrasigno requestate"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+msgid "Password saved"
+msgstr "Contrasigno salveguardate"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Action incognite"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
msgstr "6 o plus characteres, e non oblida lo!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Reinitialisar"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Entra un pseudonymo o adresse de e-mail."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Nulle usator existe con iste adresse de e-mail o nomine de usator."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Nulle adresse de e-mail registrate pro iste usator."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Error al salveguardar le confirmation del adresse."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4425,122 +4926,115 @@ msgstr ""
"Instructiones pro recuperar tu contrasigno ha essite inviate al adresse de e-"
"mail registrate in tu conto."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Reinitialisation inexpectate del contrasigno."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Le contrasigno debe haber 6 characteres o plus."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Contrasigno e confirmation non corresponde."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Error durante le configuration del usator."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Nove contrasigno salveguardate con successo. Tu session es ora aperte."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Pardono, solmente le personas invitate pote registrar se."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Pardono, le codice de invitation es invalide."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registration succedite"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Crear conto"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Creation de conto non permittite."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+msgid "You cannot register if you don't agree to the license."
msgstr "Tu non pote crear un conto si tu non accepta le licentia."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Le adresse de e-mail existe ja."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Nomine de usator o contrasigno invalide."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Con iste formulario tu pote crear un nove conto. Postea, tu pote publicar "
-"notas e mitter te in contacto con amicos e collegas. "
-
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1-64 minusculas o numeros, sin punctuation o spatios. Requirite."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 o plus characteres. Requirite."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Identic al contrasigno hic supra. Requirite."
+"notas e mitter te in contacto con amicos e collegas."
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-mail"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Usate solmente pro actualisationes, notificationes e recuperation de "
-"contrasigno"
+"contrasigno."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
-msgstr "Nomine plus longe, preferibilemente tu nomine \"real\""
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
+msgstr "Nomine plus longe, preferibilemente tu nomine \"real\"."
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL de tu pagina personal, blog o profilo in un altere sito"
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"."
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
"io comprende que le contento e datos de %1$s es private e confidential."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Le derecto de autor pro mi texto e files es in possession de %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Le derecto de autor pro mi texto e files resta in mi possession."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Tote le derectos reservate."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4550,7 +5044,7 @@ msgstr ""
"contrasigno, adresse de e-mail, adresse de messageria instantanee, numero de "
"telephono."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4582,7 +5076,7 @@ msgstr ""
"\n"
"Gratias pro inscriber te, e nos spera que iste servicio te place."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4590,7 +5084,7 @@ msgstr ""
"(Tu recipera tosto un message de e-mail con instructiones pro confirmar tu "
"adresse de e-mail.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4602,79 +5096,82 @@ msgstr ""
"[sito de microblogging compatibile](%%doc.openmublog%%), entra hic infra le "
"URL de tu profilo."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Subscription remote"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Subscriber te a un usator remote"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Pseudonymo del usator"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr "Le pseudonymo del usator que tu vole sequer"
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
+msgstr "Le pseudonymo del usator que tu vole sequer."
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL del profilo"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "URL de tu profilo in un altere servicio de microblogging compatibile"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
+msgstr "URL de tu profilo in un altere servicio de microblogging compatibile."
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Subscriber"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "URL de profilo invalide (mal formato)"
+#: actions/remotesubscribe.php:158
+msgid "Invalid profile URL (bad format)."
+msgstr "URL de profilo invalide (mal formato)."
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"URL de profilo invalide (non es un documento YADIS o esseva definite un XRDS "
"invalide)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
-msgstr "Isto es un profilo local! Aperi un session pro subscriber."
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
+msgstr "Isto es un profilo local! Aperi session pro subscriber."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
msgstr "Non poteva obtener un indicio de requesta."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Solmente usatores authenticate pote repeter notas."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Nulle nota specificate."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
msgstr "Tu non pote repeter tu proprie nota."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Tu ha ja repetite iste nota."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Repetite"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Repetite!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Responsas a %s"
@@ -4726,11 +5223,103 @@ msgstr ""
"Tu pote tentar [pulsar %1$s](../%2$s) o [publicar alique a su attention](%%%%"
"action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Responsas a %1$s in %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr "Solmente usatores authenticate pote restaurar lor conto."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr "Tu non pote restaurar tu conto."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr "Nulle file incargate."
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Le file incargate excede le directiva upload_max_filesize in php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Le file incargate excede le directiva MAX_FILE_SIZE specificate in le "
+"formulario HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Le file incargate ha solmente essite incargate partialmente."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Manca un dossier temporari."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Falleva de scriber le file in disco."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Incargamento de file stoppate per un extension."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Error de systema durante le incargamento del file."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr "Non es un syndication Atom."
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+"Le syndication ha essite restaurate. Tu vetule messages debe ora apparer in "
+"le recerca e in tu pagina de profilo."
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr "Le syndication essera restaurate. Per favor attende qualque minutas."
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+"Tu pote incargar un copia de reserva de un fluxo in formato Activity Streams."
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "Incargar le file"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Tu non pote revocar rolos de usatores in iste sito."
@@ -4739,7 +5328,7 @@ msgstr "Tu non pote revocar rolos de usatores in iste sito."
msgid "User doesn't have this role."
msgstr "Le usator non ha iste rolo."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4781,85 +5370,87 @@ msgstr "Producer informationes technic pro cercar defectos in sessiones."
msgid "Save site settings"
msgstr "Salveguardar configurationes del sito"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Tu debe aperir un session pro vider un application."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Profilo del application"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Icone"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nomine"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organisation"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Description"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statisticas"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Create per %1$s - accesso %2$s per predefinition - %3$d usatores"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Actiones de application"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Reinitialisar clave e secreto"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Deler"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Info del application"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Clave de consumitor"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Secreto de consumitor"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL del indicio de requesta"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL del indicio de accesso"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "URL de autorisation"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4867,35 +5458,42 @@ msgstr ""
"Nota: Nos supporta le signaturas HMAC-SHA1. Nos non accepta signaturas in "
"texto simple."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Es tu secur de voler reinitialisar tu clave e secreto de consumitor?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Notas favorite de %1$s, pagina %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Non poteva recuperar notas favorite."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Syndication del favorites de %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Syndication del favorites de %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Syndication del favorites de %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4904,7 +5502,9 @@ msgstr ""
"Favorite sub notas que te place pro memorisar los pro plus tarde o pro "
"mitter los in evidentia."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4913,7 +5513,10 @@ msgstr ""
"%s non ha ancora addite un nota favorite. Publica alique interessante que "
"ille adderea a su favorites :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4924,7 +5527,8 @@ msgstr ""
"action.register%%%%) e postea publicar alique interessante que ille adderea "
"a su favorites :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Isto es un modo de condivider lo que te place."
@@ -4942,81 +5546,88 @@ msgid "%1$s group, page %2$d"
msgstr "Gruppo %1$s, pagina %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Profilo del gruppo"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Nota"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Aliases"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Actiones del gruppo"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Syndication de notas pro le gruppo %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Syndication de notas pro le gruppo %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Syndication de notas pro le gruppo %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Amico de un amico pro le gruppo %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Membros"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Nulle)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Tote le membros"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Create"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Membros"
@@ -5025,7 +5636,7 @@ msgstr "Membros"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5043,7 +5654,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5057,30 +5668,30 @@ msgstr ""
"lor vita e interesses. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administratores"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Message non existe."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Solmente le expeditor e destinatario pote leger iste message."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Message a %1$s in %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Message de %1$s in %2$s"
@@ -5096,7 +5707,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s etiquettate con %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5346,74 +5957,74 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
-msgstr "Salveguardar aviso del sito"
+msgid "Save site notice."
+msgstr "Salveguardar aviso del sito."
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Parametros de SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Tu pote reciper messages SMS per e-mail ab %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS non es disponibile."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Adresse SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Numero de telephono actual e confirmate con servicio SMS."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Iste numero de telephono attende confirmation."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Codice de confirmation"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Entra le codice que tu ha recipite in tu telephono."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Confirmar"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Numero de telephono pro SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr "Numero de telephono, sin punctuation o spatios, con indicativo"
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
+msgstr "Numero de telephono, sin punctuation o spatios, con indicativo."
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Preferentias de SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5422,32 +6033,32 @@ msgstr ""
"de mi operator."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Preferentias de SMS confirmate."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Nulle numero de telephono."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Nulle operator seligite."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Isto es ja tu numero de telephono."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Iste numero de telephono pertine ja a un altere usator."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5456,39 +6067,39 @@ msgstr ""
"addite. Vide in tu telephono le codice e le instructiones super como usar lo."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Iste codice de confirmation es incorrecte."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Confirmation de SMS cancellate."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Isto non es tu numero de telephono."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Le numero de telephono pro SMS ha essite removite."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Operator de telephonia mobile"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Selige un operator"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5499,9 +6110,9 @@ msgstr ""
"nos a %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
-msgstr "Nulle codice entrate"
+#: actions/smssettings.php:535
+msgid "No code entered."
+msgstr "Nulle codice entrate."
#. TRANS: Menu item for site administration
#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
@@ -5572,15 +6183,19 @@ msgstr "Tu non es subscribite a iste profilo."
msgid "Could not save subscription."
msgstr "Non poteva salveguardar le subscription."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Iste action accepta solmente le requestas de typo POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Tu non pote subscriber te a un profilo remote OMB 0.1 con iste action."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Subscribite"
@@ -5612,7 +6227,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Iste personas seque le notas de %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5622,7 +6237,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s non ha subscriptores. Vole esser le prime?"
@@ -5632,7 +6247,7 @@ msgstr "%s non ha subscriptores. Vole esser le prime?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5665,7 +6280,7 @@ msgstr "%s seque le notas de iste personas."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5685,23 +6300,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s non seque alcuno."
-#: actions/subscriptions.php:178
-#, fuzzy, php-format
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
msgid "Subscription feed for %s (Atom)"
-msgstr "Syndication de notas pro %s (Atom)"
+msgstr "Syndication de subscription pro %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5734,12 +6350,15 @@ msgstr "Nulle parametro de ID."
msgid "Tag %s"
msgstr "Etiquetta %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Profilo del usator"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Photo"
@@ -5755,6 +6374,11 @@ msgstr ""
"Etiquettas pro iste usator (litteras, numeros, -, . e _), separate per "
"commas o spatios"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Etiquetta invalide: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5762,10 +6386,6 @@ msgstr ""
"Tu pote solmente etiquettar personas a qui tu es subscribite o qui es "
"subscribite a te."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Non poteva salveguardar etiquettas."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5775,6 +6395,7 @@ msgstr ""
msgid "No such tag."
msgstr "Etiquetta non existe."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Tu non ha blocate iste usator."
@@ -5795,7 +6416,7 @@ msgstr "Nulle ID de profilo in requesta."
msgid "Unsubscribed"
msgstr "Subscription cancellate"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5828,12 +6449,11 @@ msgstr "Texto de benvenita invalide. Longitude maxime es 255 characteres."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
-msgstr "Subscription predefinite invalide: '%1$s' non es usator."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
+msgstr "Subscription predefinite invalide: \"%1$s\" non es usator."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profilo"
@@ -5889,54 +6509,65 @@ msgstr "Si le usatores pote invitar nove usatores."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr "Salveguardar configurationes de usator"
+msgid "Save user settings."
+msgstr "Salveguardar configurationes de usator."
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autorisar subscription"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
-"Per favor verifica iste detalios pro assecurar te que tu vole subscriber te "
-"al notas de iste usator. Si tu non ha requestate isto, clicca \"Rejectar\"."
+"Per favor verifica iste detalios pro assecurar que tu vole subscriber al "
+"notas de iste usator. Si tu non ha justo requestate de subscriber al notas "
+"de alcuno, clicca \"Rejectar\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licentia"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Acceptar"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
-msgstr "Subscriber a iste usator"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
+msgstr "Subscriber a iste usator."
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Rejectar"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
-msgstr "Rejectar iste subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
+msgstr "Rejectar iste subscription."
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Nulle requesta de autorisation!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Subscription autorisate"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5946,11 +6577,12 @@ msgstr ""
"recipite. Lege in le instructiones del sito in question como autorisar le "
"subscription. Tu indicio de subscription es:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Subscription rejectate"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5960,48 +6592,73 @@ msgstr ""
"recipite. Lege in le instructiones del sito in question como rejectar "
"completemente le subscription."
-#: actions/userauthorization.php:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
-msgstr "URI de ascoltator ‘%s’ non trovate hic."
+msgid "Listener URI \"%s\" not found here."
+msgstr "URI de ascoltator \"%s\" non trovate hic."
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr "URI de ascoltato ‘%s’ es troppo longe."
+msgid "Listenee URI \"%s\" is too long."
+msgstr "URI de ascoltato \"%s\" es troppo longe."
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr "URI de ascoltato ‘%s’ es un usator local."
+msgid "Listenee URI \"%s\" is a local user."
+msgstr "URI de ascoltato \"%s\" es un usator local."
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr "URL de profilo ‘%s’ es de un usator local."
+msgid "Profile URL \"%s\" is for a local user."
+msgstr "URL de profilo \"%s\" es de un usator local."
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr "URL de avatar ‘%s’ non es valide."
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Le licentia del fluxo que tu ascolta, \"%1$s\", non es compatibile con le "
+"licentia del sito \"%2$s\"."
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
#, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr "Non pote leger URL de avatar ‘%s’."
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "URL de avatar \"%s\" non es valide."
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr "Typo de imagine incorrecte pro URL de avatar ‘%s’."
+msgid "Cannot read avatar URL \"%s\"."
+msgstr "Non pote leger URL de avatar \"%s\"."
+
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
+msgstr "Typo de imagine incorrecte pro URL de avatar \"%s\"."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Apparentia del profilo"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6009,7 +6666,7 @@ msgstr ""
"Personalisa le apparentia de tu profilo con un imagine de fundo e un paletta "
"de colores de tu preferentia."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Bon appetito!"
@@ -6040,7 +6697,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Actualisationes de %1$s in %2$s!"
@@ -6101,7 +6758,7 @@ msgid "Plugins"
msgstr "Plug-ins"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Version"
@@ -6110,32 +6767,32 @@ msgid "Author(s)"
msgstr "Autor(es)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Favorir"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s marcava le nota %2$s como favorite."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Impossibile processar le URL '%s'"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin pensa que alique es impossibile."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6152,7 +6809,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6161,7 +6818,7 @@ msgstr[1] "Un file de iste dimension excederea tu quota de usator de %d bytes."
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6169,7 +6826,7 @@ msgstr[0] "Un file de iste dimension excederea tu quota mensual de %d byte."
msgstr[1] "Un file de iste dimension excederea tu quota mensual de %d bytes."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Nomine de file invalide."
@@ -6227,7 +6884,7 @@ msgid "Could not create login token for %s"
msgstr "Non poteva crear indicio de identification pro %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Nulle nomine de base de datos o DSN trovate."
@@ -6254,23 +6911,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Nulle profilo (%1$d) trovate pro le nota (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Error in base de datos durante insertion del marca (hashtag): %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problema salveguardar nota. Troppo longe."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problema salveguardar nota. Usator incognite."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6278,7 +6935,7 @@ msgstr ""
"alcun minutas."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6287,42 +6944,42 @@ msgstr ""
"novo post alcun minutas."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Il te es prohibite publicar notas in iste sito."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problema salveguardar nota."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr "Mal typo fornite a saveKnownGroups."
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problema salveguardar le cassa de entrata del gruppo."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Non poteva salveguardar le responsa pro %1$d, %2$d."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6330,14 +6987,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "Non pote revocar le rolo \"%1$s\" del usator #%2$d; non existe."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6409,35 +7066,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Benvenite a %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Nulle signule usator definite pro le modo de singule usator."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr "Codice in modo de usator singule appellate sin esser activate."
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Non poteva crear gruppo."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Non poteva definir le URL del gruppo."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Non poteva configurar le membrato del gruppo."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Non poteva salveguardar le informationes del gruppo local."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr "Non pote localisar le conto %s."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr "Non pote trovar XRD pro %s."
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr "Il non ha un servicio API AtomPub pro %s."
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6474,211 +7152,214 @@ msgid "Other"
msgstr "Altere"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Pagina sin titulo"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Monstrar plus"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Navigation primari del sito"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Profilo personal e chronologia de amicos"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Personal"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Cambiar tu e-mail, avatar, contrasigno, profilo"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Conto"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Connecter a servicios"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Connecter"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Modificar le configuration del sito"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Admin"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Invitar amicos e collegas a accompaniar te in %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Invitar"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Terminar le session del sito"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Clauder session"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Crear un conto"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Crear conto"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Authenticar te a iste sito"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Aperir session"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Adjuta me!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Adjuta"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Cercar personas o texto"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Cercar"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Aviso del sito"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Vistas local"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Aviso de pagina"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Navigation secundari del sito"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Adjuta"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "A proposito"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "CdS"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Confidentialitate"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Fonte"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Contacto"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Insignia"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licentia del software StatusNet"
@@ -6686,7 +7367,7 @@ msgstr "Licentia del software StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6696,7 +7377,7 @@ msgstr ""
"%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** es un servicio de microblog."
@@ -6705,7 +7386,7 @@ msgstr "**%%site.name%%** es un servicio de microblog."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6717,51 +7398,51 @@ msgstr ""
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licentia del contento del sito"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Le contento e datos de %1$s es private e confidential."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr "Contento e datos sub copyright de %1$s. Tote le derectos reservate."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Contento e datos sub copyright del contributores. Tote le derectos reservate."
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "Tote le contento e datos de %1$s es disponibile sub le licentia %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Pagination"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Post"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Ante"
@@ -6772,10 +7453,79 @@ msgstr ""
"Expectava le elemento-radice de un syndication, ma recipeva un documento XML "
"integre."
-#: lib/activity.php:360
-#, fuzzy
-msgid "Post"
-msgstr "Photo"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Verbo incognite: \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr "Non pote fortiar un subscription pro un usator non de confidentia."
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr "Non pote fortiar un usator remote a cancellar le subscription."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr "Profilo incognite."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr "Iste activitate pare inconnexe a nostre usator."
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr "Le profilo remote non es un gruppo!"
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr "Le usator es ja membro de iste gruppo."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr "Le nota %1$s es ja cognoscite e ha un altere autor %2$s."
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+"Non es superscribite le information de autor pro un usator non de "
+"confidentia."
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr "Nulle contento pro nota %s."
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "Le usator %s non existe."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s %2$s %3$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6847,7 +7597,7 @@ msgid "User configuration"
msgstr "Configuration del usator"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Usator"
@@ -6893,19 +7643,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Nulle application pro iste clave de consumitor."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Mal indicio de accesso."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Nulle usator pro iste indicio."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Non poteva authenticar te."
@@ -6928,29 +7682,34 @@ msgstr ""
"requesta."
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "Non poteva emitter le indicio de accesso."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr ""
"Error del base de datos durante le insertion del usator del application "
"OAuth."
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr ""
+"Error del base de datos durante le actualisation del usator del application "
+"OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Tentava revocar un indicio non cognoscite."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Falleva de deler le indicio revocate."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Icone pro iste application"
@@ -7063,17 +7822,22 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Revocar"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr "Le elemento \"author\" debe continer un elemento \"name\"."
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr "Non usa iste methodo!"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autor"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Providitor"
@@ -7102,6 +7866,11 @@ msgstr "Cambio del contrasigno non permittite."
msgid "Block"
msgstr "Blocar"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Blocar iste usator"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7215,7 +7984,7 @@ msgstr "Nomine complete: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Loco: %s"
@@ -7223,7 +7992,7 @@ msgstr "Loco: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Pagina personal: %s"
@@ -7495,24 +8264,24 @@ msgstr ""
"tracking - non ancora implementate.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "Nulle file de configuration trovate."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "Io cercava files de configuration in le sequente locos:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Considera executar le installator pro reparar isto."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Ir al installator."
@@ -7553,14 +8322,19 @@ msgstr "Applicationes autorisate connectite"
msgid "Database error"
msgstr "Error de base de datos"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Deler iste usator"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Incargar file"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7579,25 +8353,72 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Non active"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Reinitialisar"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Cambiar colores"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Usar predefinitiones"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Restaurar apparentias predefinite"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Revenir al predefinitiones"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Salveguardar apparentia"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Non poteva actualisar tu apparentia."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Apparentia predefinite restaurate."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr "Incapace de trovar servicios pro %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Disfavorir iste nota"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Disfavorir favorite"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Favorir iste nota"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Favorir"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7614,6 +8435,18 @@ msgstr "Atom"
msgid "FOAF"
msgstr "Amico de un amico"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr "Non es un syndication Atom."
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr "Il non ha un autor in le syndication."
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr "Non pote importar sin usator."
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7648,32 +8481,32 @@ msgstr "Ir"
msgid "Grant this user the \"%s\" role"
msgstr "Conceder le rolo \"%s\" a iste usator"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 minusculas o numeros, sin punctuation o spatios"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL del pagina initial o blog del gruppo o topico."
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Describe le gruppo o topico"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Describe le gruppo o topico in %d character o minus"
msgstr[1] "Describe le gruppo o topico in %d characteres o minus"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Loco del gruppo, si existe, como \"Citate, Provincia (o Region), Pais\"."
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7781,40 +8614,41 @@ msgstr "Etiquettas in le notas del gruppo %s"
msgid "This page is not available in a media type you accept"
msgstr "Iste pagina non es disponibile in un formato que tu accepta"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Formato de file de imagine non supportate."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Iste file es troppo grande. Le dimension maximal es %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Incargamento partial."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Error de systema durante le incargamento del file."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Le file non es un imagine o es defectuose."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "File perdite."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Typo de file incognite"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7822,7 +8656,7 @@ msgstr[0] "%dMB"
msgstr[1] "%dMB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7830,7 +8664,7 @@ msgstr[0] "%dKB"
msgstr[1] "%dKB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7851,23 +8685,25 @@ msgstr "Fonte de cassa de entrata \"%s\" incognite"
msgid "Leave"
msgstr "Quitar"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Aperir session con nomine de usator e contrasigno"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Crear un nove conto"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Confirmation del adresse de e-mail"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7898,14 +8734,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s seque ora tu notas in %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7920,7 +8756,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7947,14 +8783,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Bio: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nove adresse de e-mail pro publicar in %s"
@@ -7962,7 +8798,7 @@ msgstr "Nove adresse de e-mail pro publicar in %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7985,34 +8821,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Stato de %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Confirmation SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: confirma que tu possede iste numero de telephono con iste codice:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
+msgid "You have been nudged by %s"
msgstr "%s te ha pulsate"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8041,7 +8877,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nove message private de %s"
@@ -8050,7 +8886,7 @@ msgstr "Nove message private de %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8085,7 +8921,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) ha addite tu nota como favorite"
@@ -8095,7 +8931,7 @@ msgstr "%1$s (@%2$s) ha addite tu nota como favorite"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8134,7 +8970,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8147,7 +8983,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) ha inviate un nota a tu attention"
@@ -8158,7 +8994,7 @@ msgstr "%1$s (@%2$s) ha inviate un nota a tu attention"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8207,11 +9043,11 @@ msgstr ""
"\n"
"P.S. Tu pote disactivar iste notificationes electronic hic: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Solmente le usator pote leger su proprie cassas postal."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8220,10 +9056,6 @@ msgstr ""
"altere usatores in conversation. Altere personas pote inviar te messages que "
"solmente tu pote leger."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "via"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Non comprendeva le syntaxe del message."
@@ -8252,40 +9084,6 @@ msgstr ""
"Un error de base de datos occurreva durante le salveguarda de tu file. Per "
"favor reproba."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Le file incargate excede le directiva upload_max_filesize in php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Le file incargate excede le directiva MAX_FILE_SIZE specificate in le "
-"formulario HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Le file incargate ha solmente essite incargate partialmente."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Manca un dossier temporari."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Falleva de scriber le file in disco."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Incargamento de file stoppate per un extension."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8306,7 +9104,7 @@ msgstr "Non poteva determinar le typo MIME del file."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8317,7 +9115,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "\"%s\" non es un typo de file supportate in iste servitor."
@@ -8349,18 +9147,26 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Inviar"
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr "Messages"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "via"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "Le pseudonymo non pote esser vacue."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8376,11 +9182,11 @@ msgstr "Inviar un nota"
msgid "What's up, %s?"
msgstr "Como sta, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Annexar"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Annexar un file"
@@ -8401,55 +9207,59 @@ msgstr ""
"previste. Per favor reproba plus tarde."
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "E"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "W"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "in"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "in contexto"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Repetite per"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Responder a iste nota"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Responder"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Deler iste nota"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Nota repetite"
@@ -8486,77 +9296,108 @@ msgstr "Nota duplicate."
msgid "Couldn't insert new subscription."
msgstr "Non poteva inserer nove subscription."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Personal"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+msgctxt "MENU"
msgid "Replies"
msgstr "Responsas"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profilo"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favorites"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr "Cassa de entrata"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Tu messages recipite"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
msgid "Outbox"
msgstr "Cassa de exito"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Tu messages inviate"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Etiquettas in le notas de %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Incognite"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Subscriptiones"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Tote le subscriptiones"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Subscriptores"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Tote le subscriptores"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID del usator"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Membro depost"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Gruppos"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Media de cata die"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Tote le gruppos"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Methodo non implementate."
@@ -8603,7 +9444,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Revocar le rolo \"%s\" de iste usator"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "Pagina non trovate."
@@ -8693,15 +9534,19 @@ msgstr "Invitar"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Invitar amicos e collegas a accompaniar te in %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Subscriber a iste usator"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
-msgstr "Nube de etiquettas de personas como auto-etiquettate"
+msgstr "Etiquettario de personas como auto-etiquettate"
#: lib/subscriberspeopletagcloudsection.php:48
#: lib/subscriptionspeopletagcloudsection.php:48
msgid "People Tagcloud as tagged"
-msgstr "Nube de etiquetta de personas como etiquettate"
+msgstr "Etiquettario de personas como etiquettate"
#: lib/tagcloudsection.php:56
msgid "None"
@@ -8812,64 +9657,81 @@ msgstr "Cancellar subscription"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Le usator %1$s (%2$d) non ha un registro de profilo."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Modificar avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Actiones de usator"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Deletion del usator in curso…"
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Modificar configuration de profilo"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Modificar"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Inviar un message directe a iste usator"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Message"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderar"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Rolo de usator"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrator"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderator"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Tu non ha aperite un session."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "alcun secundas retro"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "circa un minuta retro"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8877,12 +9739,12 @@ msgstr[0] "circa un minuta retro"
msgstr[1] "circa %d minutas retro"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "circa un hora retro"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8890,12 +9752,12 @@ msgstr[0] "circa un hora retro"
msgstr[1] "circa %d horas retro"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "circa un die retro"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8903,12 +9765,12 @@ msgstr[0] "circa un die retro"
msgstr[1] "circa %d dies retro"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "circa un mense retro"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8916,18 +9778,13 @@ msgstr[0] "circa un mense retro"
msgstr[1] "circa %d menses retro"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "circa un anno retro"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s non es un color valide!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s non es un color valide! Usa 3 o 6 characteres hexadecimal."
@@ -8948,30 +9805,17 @@ msgstr[0] "Message troppo longe. Maximo es %1$d character, tu inviava %2$d."
msgstr[1] "Message troppo longe. Maximo es %1$d characteres, tu inviava %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "XML invalide."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr "XML invalide, radice XRD mancante."
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Obtene copia de reserva ex file '%s'."
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Nulle usator specificate; le usator de reserva es usate."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "%d entrata in copia de reserva."
-msgstr[1] "%d entratas in copia de reserva."
diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po
index b1b012969b..417792f498 100644
--- a/locale/is/LC_MESSAGES/statusnet.po
+++ b/locale/is/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Icelandic (Íslenska)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: McDutchie
# --
@@ -9,17 +9,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:57+0000\n"
+"POT-Creation-Date: 2011-02-02 23:29+0000\n"
+"PO-Revision-Date: 2011-02-02 23:34:40+0000\n"
"Language-Team: Icelandic \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r81409); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: is\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-01-30 23:06:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -80,8 +80,9 @@ msgid "Save access settings"
msgstr "Stillingar fyrir mynd"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -91,13 +92,13 @@ msgstr "Stillingar fyrir mynd"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:134 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:198
#, fuzzy
msgctxt "BUTTON"
msgid "Save"
@@ -106,7 +107,7 @@ msgstr "Vista"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
#, fuzzy
msgid "No such page."
msgstr "Ekkert þannig merki."
@@ -117,6 +118,8 @@ msgstr "Ekkert þannig merki."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -132,13 +135,19 @@ msgstr "Ekkert þannig merki."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -146,12 +155,12 @@ msgstr "Ekkert þannig merki."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/showfavorites.php:106 actions/userbyid.php:74
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
#: lib/mailbox.php:82 lib/profileaction.php:77
@@ -168,9 +177,10 @@ msgstr "%s og vinirnir"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s og vinirnir"
@@ -278,7 +288,7 @@ msgstr "Færslur frá %1$s og vinum á %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -311,7 +321,21 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:184
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
#, fuzzy
msgid "Could not update user."
msgstr "Gat ekki uppfært notanda."
@@ -322,18 +346,23 @@ msgstr "Gat ekki uppfært notanda."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Notandi hefur enga persónulega síðu."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
#, fuzzy
msgid "Could not save profile."
msgstr "Gat ekki vistað persónulega síðu."
@@ -344,8 +373,8 @@ msgstr "Gat ekki vistað persónulega síðu."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -361,13 +390,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr ""
@@ -375,50 +405,61 @@ msgstr ""
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
#, fuzzy
msgid "Could not update your design."
msgstr "Gat ekki uppfært hóp."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
#: lib/atomusernoticefeed.php:68
#, php-format
msgid "%s timeline"
msgstr "Rás %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s áskriftir"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "Uppáhald"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "Hópmeðlimir %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Gat ekki uppfært notanda."
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Mistókst að loka á notanda."
@@ -501,8 +542,9 @@ msgid "This status is already a favorite."
msgstr "Þetta babl er nú þegar í uppáhaldi!"
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Gat ekki búið til uppáhald."
@@ -513,7 +555,8 @@ msgid "That status is not a favorite."
msgstr "Þetta babl er ekki í uppáhaldi!"
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Gat ekki eytt uppáhaldi."
@@ -566,7 +609,7 @@ msgstr "Gat ekki uppfært notanda."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
+#: actions/newgroup.php:136 actions/profilesettings.php:273
#: actions/register.php:214
msgid "Nickname already in use. Try another one."
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
@@ -576,7 +619,7 @@ msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
+#: actions/newgroup.php:140 actions/profilesettings.php:243
#: actions/register.php:216
msgid "Not a valid nickname."
msgstr "Ekki tækt stuttnefni."
@@ -584,11 +627,12 @@ msgstr "Ekki tækt stuttnefni."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:200 actions/newapplication.php:221
+#: actions/newgroup.php:147 actions/profilesettings.php:248
#: actions/register.php:223
msgid "Homepage is not a valid URL."
msgstr "Heimasíða er ekki gild vefslóð."
@@ -598,7 +642,7 @@ msgstr "Heimasíða er ekki gild vefslóð."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
+#: actions/newgroup.php:151 actions/profilesettings.php:252
#: actions/register.php:226
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
@@ -607,14 +651,15 @@ msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:209 actions/newapplication.php:182
+#: actions/newgroup.php:156
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -626,7 +671,7 @@ msgstr[1] "Staðsetning er of löng (í mesta lagi %d stafir)."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
+#: actions/newgroup.php:163 actions/profilesettings.php:265
#: actions/register.php:235
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
@@ -639,7 +684,7 @@ msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)."
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/newgroup.php:176
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -656,18 +701,16 @@ msgstr "Ógilt merki: \"%s\""
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
+#. TRANS: Group create form validation error. %s is the already used alias.
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#: actions/newgroup.php:192
#, fuzzy, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -678,29 +721,33 @@ msgstr ""
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Fannst ekki."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
#, fuzzy
msgid "You are already a member of that group."
msgstr "Þú ert nú þegar meðlimur í þessum hópi"
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr ""
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Gat ekki skráð hópmeðlimi."
@@ -713,9 +760,11 @@ msgstr "Þú ert ekki meðlimur í þessum hópi."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -753,7 +802,7 @@ msgid "Upload failed."
msgstr "Misheppnuð skipun"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "Ótækt bablinnihald"
@@ -776,18 +825,22 @@ msgid "Request token already authorized."
msgstr "Þú ert ekki áskrifandi."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:137 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:172 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
#: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:310
@@ -808,18 +861,22 @@ msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s"
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Bjóst ekki við innsendingu eyðublaðs."
@@ -864,29 +921,30 @@ msgstr "Aðgangur"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
+#. TRANS: DT for nick name in a profile.
#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
+#: actions/profilesettings.php:106 actions/register.php:432
#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#: actions/userauthorization.php:145 lib/groupeditform.php:144
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Stuttnefni"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/register.php:436 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Lykilorð"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
#, fuzzy
msgctxt "BUTTON"
@@ -960,6 +1018,7 @@ msgstr "Þú getur ekki eytt stöðu annars notanda."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -980,39 +1039,52 @@ msgstr "Get ekki kveikt á tilkynningum."
msgid "Already repeated that notice."
msgstr "Get ekki eytt þessu babli."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Aðferð í forritsskilum fannst ekki!"
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
msgid "Unsupported format: %s"
msgstr "Skráarsnið myndar ekki stutt."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr ""
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Engin staða með þessu kenni fannst."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Get ekki eytt þessu babli."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Eyða babli"
@@ -1071,7 +1143,7 @@ msgstr "%1$s færslur sem svara færslum frá %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Gat ekki uppfært hóp."
@@ -1147,203 +1219,268 @@ msgstr "Aðeins notandinn getur lesið hans eigin pósthólf."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:335
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:346
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:380
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Finna innihald babls"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Enginn persónuleg síða með þessu einkenni."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Aðferð í forritsskilum er í þróun."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Aðferð í forritsskilum fannst ekki!"
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Ekkert svoleiðis babl."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Gat ekki sett inn nýja áskrift."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Finna innihald babls"
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Óþekkt aðgerð"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Bæta við sem uppáhaldsbabli"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Ekkert svoleiðis babl."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Færslur frá %1$s og vinum á %2$s!"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+#, fuzzy
+msgid "Cannot add someone else's subscription."
+msgstr "Gat ekki sett inn nýja áskrift."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Finna innihald babls"
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+#, fuzzy
+msgid "Can only fave notices."
+msgstr "Finna innihald babls"
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+#, fuzzy
+msgid "Unknown note."
+msgstr "Óþekkt aðgerð"
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+#, fuzzy
+msgid "Already a favorite."
+msgstr "Bæta við sem uppáhaldsbabli"
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "Hópmeðlimir %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Hópar sem %s er meðlimur í"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Gat ekki sett inn nýja áskrift."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Finna innihald babls"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Óþekkt aðgerð"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Allir meðlimir"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Ekkert svoleiðis babl."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Gat ekki eytt uppáhaldi."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Enginn þannig hópur."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Allir meðlimir"
-#: actions/atompubshowmembership.php:115
+#. TRANS: Client exception thrown when deleting someone else's membership.
+#: actions/atompubshowmembership.php:151
#, fuzzy
-msgid "Method not supported"
-msgstr "Aðferð í forritsskilum fannst ekki!"
-
-#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Ekkert svoleiðis babl."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Þú ert ekki áskrifandi."
-
-#: actions/atompubshowsubscription.php:154
-#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Gat ekki vistað áskrift."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Ekkert svoleiðis babl."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Þú ert ekki áskrifandi."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Gat ekki vistað áskrift."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Fólk sem eru áskrifendur að %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Óþekkt skráargerð"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Ekki í áskrift!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
#, fuzzy
@@ -1353,11 +1490,15 @@ msgstr "Ekkert þannig merki."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Ekkert stuttnefni."
@@ -1387,42 +1528,50 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
#: actions/userauthorization.php:72 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Notandi hefur enga persónulega síðu."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Stillingar fyrir mynd"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Upphafleg mynd"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Forsýn"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Eyða"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1442,32 +1591,71 @@ msgid "No file uploaded."
msgstr "Engin persónuleg síða tilgreind"
#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
+#: actions/avatarsettings.php:345
msgid "Pick a square area of the image to be your avatar"
msgstr ""
"Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Týndum skráargögnunum okkar"
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Mynd hefur verið uppfærð."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Mistókst að uppfæra mynd"
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
#, fuzzy
msgid "Avatar deleted."
msgstr "Mynd hefur verið uppfærð."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Aðeins notandinn getur lesið hans eigin pósthólf."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr ""
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account"
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1475,7 +1663,8 @@ msgstr "Þú ert nú þegar í áskrift að þessum notendum:"
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Loka á notanda"
@@ -1495,14 +1684,13 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Athugasemd"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
+#: actions/block.php:158
#, fuzzy
msgid "Do not block this user"
msgstr "Opna á þennan notanda"
@@ -1515,7 +1703,7 @@ msgstr "Opna á þennan notanda"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
#, fuzzy
msgctxt "BUTTON"
msgid "Yes"
@@ -1532,31 +1720,6 @@ msgstr "Loka á þennan notanda"
msgid "Failed to save block information."
msgstr "Mistókst að vista upplýsingar um notendalokun"
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Enginn þannig hópur."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1629,23 +1792,6 @@ msgstr "Óþekkt gerð tölvupóstfangs %s"
msgid "That address has already been confirmed."
msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Gat ekki uppfært notanda."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1673,11 +1819,85 @@ msgid "Conversation"
msgstr "Staðfestingarlykill"
#. TRANS: Header on conversation page. Hidden by default (h2).
+#. TRANS: Label for user statistics.
#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Babl"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Aðeins notandinn getur lesið hans eigin pósthólf."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Gat ekki uppfært notanda."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Mynd hefur verið uppfærð."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Búa til nýjan hóp"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:440
+msgid "Confirm"
+msgstr "Staðfesta"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Gat ekki uppfært notanda."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Gat ekki uppfært notanda."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1698,8 +1918,8 @@ msgstr "Þú ert ekki meðlimur í þessum hópi."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:118
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Það komu upp vandamál varðandi setutókann þinn."
@@ -1736,8 +1956,10 @@ msgid "You must be logged in to delete a group."
msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
#, fuzzy
msgid "No nickname or ID."
msgstr "Ekkert stuttnefni."
@@ -1790,15 +2012,19 @@ msgid "Delete this group"
msgstr "Eyða þessu babli"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:69
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Ekki innskráð(ur)."
@@ -1828,112 +2054,147 @@ msgid "Do not delete this notice"
msgstr "Get ekki eytt þessu babli."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
+#: actions/deletenotice.php:166 lib/noticelist.php:673
msgid "Delete this notice"
msgstr "Eyða þessu babli"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
#, fuzzy
msgid "You cannot delete users."
msgstr "Gat ekki uppfært notanda."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
#, fuzzy
msgid "You can only delete local users."
msgstr "Þú getur ekki eytt stöðu annars notanda."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
+msgid "Delete user"
+msgstr "Eyða"
+
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
#, fuzzy
msgid "Delete user"
msgstr "Eyða"
-#: actions/deleteuser.php:136
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user"
+msgstr "Get ekki eytt þessu babli."
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
+#. TRANS: Description of form for deleting a user.
+#: actions/deleteuser.php:165 lib/deleteuserform.php:75
#, fuzzy
msgid "Delete this user"
msgstr "Eyða þessu babli"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr ""
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
#, fuzzy
msgid "Invalid logo URL."
msgstr "Ótæk stærð."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "Ótæk stærð."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, fuzzy, php-format
msgid "Theme not available: %s."
msgstr "Þessi síða er ekki aðgengileg í "
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
#, fuzzy
msgid "Change logo"
msgstr "Breyta"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Babl vefsíðunnar"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "Babl vefsíðunnar"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
#, fuzzy
msgid "Change theme"
msgstr "Breyta"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
#, fuzzy
msgid "Site theme"
msgstr "Babl vefsíðunnar"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
#, fuzzy
msgid "Theme for the site."
msgstr "Skrá þig út af síðunni"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
#, fuzzy
msgid "Custom theme"
msgstr "Babl vefsíðunnar"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr ""
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr ""
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1941,102 +2202,110 @@ msgid ""
msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr ""
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr ""
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr ""
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr ""
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
#, fuzzy
-msgid "Change colours"
+msgid "Change colors"
msgstr "Breyta lykilorðinu þínu"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
#, fuzzy
msgid "Content"
msgstr "Tengjast"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
#, fuzzy
msgid "Sidebar"
msgstr "Leita"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Texti"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
#, fuzzy
msgid "Links"
msgstr "Innskráning"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr ""
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr ""
+#. TRANS: Title for button for resetting theme settings.
#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
+#: actions/designadminpanel.php:720 lib/designsettings.php:259
msgid "Restore default designs"
msgstr ""
+#. TRANS: Title for button for resetting theme settings.
#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
+#: actions/designadminpanel.php:728 lib/designsettings.php:267
msgid "Reset back to default"
msgstr ""
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Vista"
-
+#. TRANS: Title for button for saving theme settings.
#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
+#: actions/designadminpanel.php:736 lib/designsettings.php:272
msgid "Save design"
msgstr ""
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Þetta babl er ekki í uppáhaldi!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Bæta við sem uppáhaldsbabli"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Ekkert svoleiðis babl."
#. TRANS: Title for "Edit application" form.
@@ -2064,67 +2333,77 @@ msgid "Use this form to edit your application."
msgstr "Notaðu þetta eyðublað til að breyta hópnum."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
#, fuzzy
msgid "Name is required."
msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
#, fuzzy
msgid "Name already in use. Try another one."
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
#, fuzzy
msgid "Description is required."
msgstr "Lýsing"
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
#, fuzzy
msgid "Source URL is not valid."
msgstr "Heimasíða er ekki gild vefslóð."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr ""
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr ""
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
#, fuzzy
msgid "Could not update application."
msgstr "Gat ekki uppfært hóp."
@@ -2136,14 +2415,17 @@ msgid "Edit %s group"
msgstr "Breyta hópnum %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Þú verður að hafa skráð þig inn til að búa til hóp."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Þú verður að hafa skráð þig inn til að búa til hóp."
@@ -2154,7 +2436,8 @@ msgstr "Notaðu þetta eyðublað til að breyta hópnum."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:239 actions/newgroup.php:187
#, fuzzy, php-format
msgid "Invalid alias: \"%s\""
msgstr "Ógilt merki: \"%s\""
@@ -2166,7 +2449,7 @@ msgstr "Gat ekki uppfært hóp."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:279 classes/User_group.php:538
#, fuzzy
msgid "Could not create aliases."
msgstr "Gat ekki búið til uppáhald."
@@ -2177,42 +2460,43 @@ msgid "Options saved."
msgstr "Valmöguleikar vistaðir."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Stillingar persónulegrar síðu"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Stilla það hvernig þú færð tölvupóst frá %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
#, fuzzy
msgid "Email address"
msgstr "Tölvupóstföng"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Núverandi staðfesta tölvupóstfangið."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Endurheimta"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2225,15 +2509,15 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Tölvupóstfang eins og \"notandi@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
#, fuzzy
msgctxt "BUTTON"
msgid "Add"
@@ -2241,29 +2525,29 @@ msgstr "Bæta við"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Móttökutölvupóstur"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Ég vil babla í gegnum tölvupóst."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Sendu tölvupóst á þetta póstfang til þess að senda inn nýtt babl."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Búa til nýtt tölvupóstfang til að senda til. Skrifar yfir það gamla."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2271,90 +2555,92 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
#, fuzzy
msgctxt "BUTTON"
msgid "New"
msgstr "Nýtt"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Tölvupóstföng"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Sendu mér tilkynningu varðandi nýjar áskriftir í gegnum tölvupóst."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Senda mér tölvupóst þegar einhver sendir mér persónuleg skilaboð."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
#, fuzzy
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Senda mér tölvupóst þegar einhver sendir mér persónuleg skilaboð."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Leyfa vinum að ýta við mér og senda mér tölvupóst."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Birta MicroID fyrir tölvupóstfangið mitt."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
#, fuzzy
msgid "Email preferences saved."
msgstr "Stillingar vistaðar."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Ekkert tölvupóstfang."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Get ekki staðlað þetta tölvupóstfang"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:212
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Ekki tækt tölvupóstfang."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Þetta er nú þegar tölvupóstfangið þitt."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Þetta tölvupóstfang tilheyrir öðrum notanda."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Gat ekki sett inn staðfestingarlykil."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2364,252 +2650,310 @@ msgstr ""
"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. "
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Engin staðfesting í bið sem þarf að hætta við."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
#, fuzzy
msgid "That is the wrong email address."
msgstr "Þetta er rangt snarskilaboðafang."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Gat ekki eytt tölvupóstsstaðfestingu."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Engin staðfesting í bið sem þarf að hætta við."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Þetta er ekki tölvupóstfangið þitt."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Móttökutölvupóstfang fjarlægt."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Ekkert móttökutölvupóstfang."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:565 actions/smssettings.php:588
+#, fuzzy
+msgid "Could not update user record."
msgstr "Gat ekki uppfært skráarfærslu notanda."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#: actions/emailsettings.php:534 actions/smssettings.php:568
msgid "Incoming email address removed."
msgstr "Móttökutölvupóstfang fjarlægt."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#: actions/emailsettings.php:558 actions/smssettings.php:591
msgid "New incoming email address added."
msgstr "Nýju móttökutölvupóstfangi bætt við."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Þetta babl er nú þegar í uppáhaldi!"
-#: actions/favor.php:92 lib/disfavorform.php:144
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
msgid "Disfavor favorite"
msgstr "Ekki lengur í uppáhaldi"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Vinsælt babl"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Vinsælt babl, síða %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Vinsælasta bablið á síðunni um þessar mundir."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Uppáhaldsbabl %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, fuzzy, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Færslur frá %1$s á %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Notendur í sviðsljósinu"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Notendur í sviðsljósinu, síða %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, fuzzy, php-format
-msgid "A selection of some great users on %s"
+msgid "A selection of some great users on %s."
msgstr "Úrval nokkurra frábærra notenda á %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
#, fuzzy
msgid "No notice ID."
msgstr "Ekkert svoleiðis babl."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
#, fuzzy
msgid "No notice."
msgstr "Ekkert svoleiðis babl."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
#, fuzzy
msgid "No attachments."
msgstr "Ekkert svoleiðis skjal."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr ""
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Bjóst ekki við þessu svari!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
#, fuzzy
msgid "User being listened to does not exist."
msgstr "Notandi sem verið er að hlusta á er ekki til."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Þú getur notað staðbundna áskrift!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi"
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Þú ert ekki áskrifandi."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
#, fuzzy
msgid "Could not convert request token to access token."
msgstr "Gat ekki breytt beiðnistókum í aðgangstóka."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
#, fuzzy
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Óþekkt útgáfa OMB samskiptamátans."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
#, fuzzy
msgid "Error updating remote profile."
msgstr "Villa kom upp í uppfærslu persónulegrar fjarsíðu"
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
#, fuzzy
msgid "No such file."
msgstr "Ekkert svoleiðis babl."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
#, fuzzy
msgid "Cannot read file."
msgstr "Týndum skránni okkar"
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
#, fuzzy
msgid "Invalid role."
msgstr "Ótæk stærð."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
#, fuzzy
msgid "User already has this role."
msgstr "Notandi hefur enga persónulega síðu."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Engin persónuleg síða tilgreind"
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Engin persónulega síða með þessu einkenni"
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
#, fuzzy
msgid "No group specified."
msgstr "Engin persónuleg síða tilgreind"
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr ""
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
#, fuzzy
msgid "User is already blocked from group."
msgstr "Notandinn hefur lokað á þig."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
#, fuzzy
msgid "User is not a member of group."
msgstr "Þú ert ekki meðlimur í þessum hópi."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
#, fuzzy
msgid "Block user from group"
msgstr "Loka á notanda"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2618,167 +2962,193 @@ msgid ""
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
+#: actions/groupblock.php:191
#, fuzzy
msgid "Do not block this user from this group"
msgstr "Listi yfir notendur í þessum hóp."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
+#: actions/groupblock.php:198
#, fuzzy
msgid "Block this user from this group"
msgstr "Listi yfir notendur í þessum hóp."
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Ekkert Jabber-kenni"
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
#, fuzzy
msgid "You must be logged in to edit a group."
msgstr "Þú verður að hafa skráð þig inn til að búa til hóp."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
#, fuzzy
msgid "Group design"
msgstr "Hópar"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
#, fuzzy
-msgid "Couldn't update your design."
+msgid "Unable to update your design settings."
msgstr "Gat ekki uppfært hóp."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
#, fuzzy
msgid "Design preferences saved."
msgstr "Stillingar vistaðar."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Einkennismynd hópsins"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, fuzzy, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Hlaða upp"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Skera af"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
#, fuzzy
msgid "Pick a square area of the image to be the logo."
msgstr ""
"Veldu ferningslaga svæði á upphaflegu myndinni sem einkennismyndina þína"
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Einkennismynd uppfærð."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Tókst ekki að uppfæra einkennismynd"
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Hópmeðlimir %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Hópmeðlimir %s"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Listi yfir notendur í þessum hóp."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Stjórnandi"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr ""
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, fuzzy, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Færslur frá %1$s á %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Hópar"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Hópar, síða %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Búa til nýjan hóp"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, fuzzy, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2787,24 +3157,30 @@ msgstr ""
"Leita að fólki á %%site.name%% eftir nafni, staðsetningu eða áhugamáli. "
"Leitarorð eru aðskilin með bili og verða að vera að minnsta kosti 3 tákn."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Hópleit"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#: actions/groupsearch.php:82 actions/noticesearch.php:117
#: actions/peoplesearch.php:83
#, fuzzy
msgid "No results."
msgstr "Niðurstöður skipunar"
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2812,141 +3188,149 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr ""
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
#, fuzzy
msgid "User is not blocked from group."
msgstr "Notandinn hefur lokað á þig."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Vill kom upp við að aflétta notendalokun."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Stillingar fyrir mynd"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Þú getur sent og tekið á móti babli í gegnum Jabber/GTalk "
"[snarskilaboðaþjónustuna](%%doc.im%%). Settu upp netfangið þitt hér fyrir "
"neðan og stilltu notkunina."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
#, fuzzy
msgid "IM is not available."
msgstr "Þessi síða er ekki aðgengileg í "
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Tölvupóstföng"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Núverandi staðfesta Jabber/GTalk snarskilaboðafangið."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Býð eftir staðfestingu frá þessu netfangi. Athugaðu Jabber/GTalk aðganginn "
"þinn. Þar ættu að vera skilaboð með ítarlegri leiðbeiningum. (Hefurðu bætt %"
"s við í vinalistann þinn?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber eða GTalk netfang eins og \"notandi@example.org\". Fyrst skaltu vera "
"viss um að bæta %s við í vinalistann þinn í snarskilaboðaforritinu þínu eða "
"á GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Stillingar vistaðar."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Sendur mér babl í gegnum Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Senda inn babl þegar Jabber/GTalk staðan breytist."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Sendu mér svör í gegnum Jabber/GTalk frá fólki sem ég er ekki áskrifandi að."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Birta MicroID fyrir Jabber/GTalk netfangið mitt."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#: actions/imsettings.php:283 actions/othersettings.php:190
msgid "Preferences saved."
msgstr "Stillingar vistaðar."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Ekkert Jabber-kenni"
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Get ekki staðlað þetta Jabber kenni"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Ekki tækt Jabber-kenni"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Þetta er nú þegar Jabber-kennið þitt."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber-kennið tilheyrir öðrum notanda."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2955,75 +3339,80 @@ msgstr ""
"Staðfestingarlykill var sendur á snarskilaboðafangið sem þú varst að bæta "
"við. Þú verður að leyfa %s að senda snarskilaboð til þín."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Þetta er rangt snarskilaboðafang."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
#, fuzzy
-msgid "Couldn't delete IM confirmation."
+msgid "Could not delete IM confirmation."
msgstr "Gat ekki eytt tölvupóstsstaðfestingu."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Enginn staðfestingarlykill."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Þetta er ekki Jabber-kennið þitt."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Móttökutölvupóstfang fjarlægt."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, fuzzy, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Innhólf %s"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Innhólf %s"
+#. TRANS: Instructions for user inbox page.
#: actions/inbox.php:115
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Þetta er innhólfið þitt sem sýnir persónuleg skilaboð sem voru send til þín."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr ""
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Þú verður að hafa skráð þig inn til að bæta þér í hóp."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Ótækt tölvupóstfang: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Boðskort hefur verið sent út"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Bjóða nýjum notendum að vera með"
@@ -3031,7 +3420,7 @@ msgstr "Bjóða nýjum notendum að vera með"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3040,7 +3429,7 @@ msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3049,7 +3438,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3062,7 +3451,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3071,7 +3460,7 @@ msgstr[1] "Boðskort sent á eftirfarandi aðila:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3080,7 +3469,7 @@ msgstr ""
"skrá sig á síðuna. Takk fyrir að stækka samfélagið!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3088,27 +3477,28 @@ msgstr ""
"þessa örbloggsþjónustu."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Tölvupóstföng"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Tölvupóstfang vina sem þú vilt bjóða (eitt póstfang í hverja línu)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Persónuleg skilaboð"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
#, fuzzy
msgctxt "BUTTON"
msgid "Send"
@@ -3117,7 +3507,7 @@ msgstr "Senda"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s hefur boðið þér að slást í hópinn með þeim á %2$s"
@@ -3127,7 +3517,7 @@ msgstr "%1$s hefur boðið þér að slást í hópinn með þeim á %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3184,132 +3574,146 @@ msgstr ""
"\n"
"Með bestu kveðju, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Þú verður að hafa skráð þig inn til að bæta þér í hóp."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%s bætti sér í hópinn %s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Þú ert ekki meðlimur í þessum hópi."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "Staða %1$s á %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
#, fuzzy
msgid "Private"
msgstr "Friðhelgi"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Vista"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
@@ -3326,7 +3730,7 @@ msgstr "Rangt notendanafn eða lykilorð."
msgid "Error setting user. You are probably not authorized."
msgstr "Engin heimild."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:210 actions/login.php:263
msgid "Login"
msgstr "Innskráning"
@@ -3334,11 +3738,11 @@ msgstr "Innskráning"
msgid "Login to site"
msgstr "Skrá þig inn á síðuna"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:258 actions/register.php:490
msgid "Remember me"
msgstr "Muna eftir mér"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:259 actions/register.php:492
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Sjálfvirk innskráning í framtíðinni. Ekki nota þetta á tölvu sem aðrir deila "
@@ -3401,21 +3805,24 @@ msgid "New application"
msgstr "Ekkert svoleiðis babl."
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
#, fuzzy
msgid "You must be logged in to register an application."
msgstr "Þú verður að hafa skráð þig inn til að búa til hóp."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
#, fuzzy
msgid "Use this form to register a new application."
msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr ""
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
#, fuzzy
msgid "Could not create application."
msgstr "Gat ekki búið til uppáhald."
@@ -3425,11 +3832,22 @@ msgstr "Gat ekki búið til uppáhald."
msgid "New group"
msgstr "Nýr hópur"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Þú ert ekki meðlimur í þessum hópi."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Notaðu þetta eyðublað til að búa til nýjan hóp."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:199
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Ný skilaboð"
@@ -3737,7 +4155,8 @@ msgstr "Breyta lykilorði"
msgid "Change your password."
msgstr "Breyta lykilorðinu þínu."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Lykilorðabreyting"
@@ -3745,7 +4164,8 @@ msgstr "Lykilorðabreyting"
msgid "Old password"
msgstr "Eldra lykilorð"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nýtt lykilorð"
@@ -3753,12 +4173,7 @@ msgstr "Nýtt lykilorð"
msgid "6 or more characters"
msgstr "6 eða fleiri tákn"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Staðfesta"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
+#: actions/passwordsettings.php:113
msgid "Same as password above"
msgstr "Sama og lykilorðið hér fyrir ofan"
@@ -3782,11 +4197,12 @@ msgstr "Rangt eldra lykilorð"
msgid "Error saving user; invalid."
msgstr "Villa kom upp í vistun notanda: ótækt."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
+#: actions/passwordsettings.php:186
msgid "Can't save new password."
msgstr "Get ekki vistað nýja lykilorðið."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/passwordsettings.php:192 actions/recoverpassword.php:229
msgid "Password saved."
msgstr "Lykilorð vistað."
@@ -4113,12 +4529,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Stillingar persónulegrar síðu"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4126,33 +4542,35 @@ msgstr ""
"um þig."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Upplýsingar á persónulegri síðu"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:433
+#: lib/groupeditform.php:146
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:455
#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#: lib/groupeditform.php:149 lib/userprofile.php:156
msgid "Full name"
msgstr "Fullt nafn"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:460
+#: lib/applicationeditform.php:236 lib/groupeditform.php:153
msgid "Homepage"
msgstr "Heimasíða"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr ""
@@ -4162,7 +4580,7 @@ msgstr ""
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:471
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4170,45 +4588,47 @@ msgstr[0] "Lýstu þér og áhugamálum þínum í 140 táknum"
msgstr[1] "Lýstu þér og áhugamálum þínum í 140 táknum"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:476
#, fuzzy
msgid "Describe yourself and your interests"
msgstr "Lýstu þér og þínum "
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:478
msgid "Bio"
msgstr "Lýsing"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:483
#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#: actions/userauthorization.php:166 lib/groupeditform.php:172
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Staðsetning"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148 actions/register.php:485
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Staðsetning þín, eins og \"borg, sýsla, land\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Merki"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr ""
@@ -4216,27 +4636,27 @@ msgstr ""
"bili"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Tungumál"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
+#: actions/profilesettings.php:171
msgid "Preferred language"
msgstr "Tungumál (ákjósanlegt)"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Tímabelti"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Í hvaða tímabelti eru í rauninni?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr ""
@@ -4246,7 +4666,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:229
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4254,51 +4674,54 @@ msgstr[0] "Staðsetning er of löng (í mesta lagi %d stafir)."
msgstr[1] "Staðsetning er of löng (í mesta lagi %d stafir)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Tímabelti ekki valið."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Tungumál er of langt (í mesta lagi 50 stafir)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
+#: actions/profilesettings.php:291 actions/tagother.php:178
#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Ógilt merki: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
+#: actions/profilesettings.php:405
#, fuzzy
-msgid "Couldn't save location prefs."
+msgid "Could not save location prefs."
msgstr "Gat ekki vistað merki."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Gat ekki vistað persónulega síðu."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Gat ekki vistað merki."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Stillingar vistaðar."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Búa til nýjan hóp"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4405,37 +4828,45 @@ msgstr ""
msgid "Tag cloud"
msgstr "Merkjaský"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Þú ert nú þegar innskráð(ur)!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Enginn svoleiðis staðfestingarlykill."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Þetta er ekki staðfestingarlykill."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Lykill fyrir endurheimtingu óþekkts notanda."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Villa kom upp varðandi staðfestingarlykilinn."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr ""
"Þessi staðfestingarlykill er of gamall. Vinsamlegast byrjaðu aftur upp á "
"nýtt."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Gat ekki uppfært notanda með staðfestu tölvupóstfangi."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
#, fuzzy
msgid ""
"If you have forgotten or lost your password, you can get a new one sent to "
@@ -4444,69 +4875,102 @@ msgstr ""
"Leiðbeiningar um það hvernig þú getur endurheimt lykilorðið þitt hafa verið "
"sendar á tölvupóstfangið sem er tengt notendaaðganginum þínum."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
#, fuzzy
msgid "Password recovery"
msgstr "Beiðni um að endurheimta lykilorð hefur verið send inn"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
#, fuzzy
msgid "Nickname or email address"
msgstr "Sláðu inn stuttnefni eða tölvupóstfang."
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Stuttnefnið þitt á þessum vefþjóni eða skráða tölvupóstfangið."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Endurheimta"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Endurheimta"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Endurstilla lykilorð"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Endurheimta lykilorð"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Beiðni um að endurheimta lykilorð hefur verið send inn"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Óþekkt aðgerð"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 eða fleiri tákn og ekki gleyma því!"
-#: actions/recoverpassword.php:243
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/recoverpassword.php:264 actions/register.php:441
+#, fuzzy
+msgid "Same as password above."
+msgstr "Sama og lykilorðið hér fyrir ofan"
+
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Endurstilla"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Sláðu inn stuttnefni eða tölvupóstfang."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Enginn notandi með þetta tölvupóstfang eða notendanafn"
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Ekkert tölvupóstfang á skrá fyrir þennan notanda."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Villa kom upp í vistun netfangsstaðfestingar."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4514,24 +4978,35 @@ msgstr ""
"Leiðbeiningar um það hvernig þú getur endurheimt lykilorðið þitt hafa verið "
"sendar á tölvupóstfangið sem er tengt notendaaðganginum þínum."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Bjóst ekki við endurstillingu lykilorðs."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Lykilorð verður að vera 6 tákn eða fleiri."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Lykilorð og staðfesting passa ekki saman."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
+msgstr "Get ekki vistað nýja lykilorðið."
+
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:256
msgid "Error setting user."
msgstr "Villa kom upp í stillingu notanda."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Tókst að vista nýtt lykilorð. Þú ert núna innskráð(ur)"
@@ -4548,7 +5023,7 @@ msgstr "Villa kom upp varðandi staðfestingarlykilinn."
msgid "Registration successful"
msgstr "Nýskráning tókst"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:121 actions/register.php:511
msgid "Register"
msgstr "Nýskrá"
@@ -4574,70 +5049,62 @@ msgid ""
"link up to friends and colleagues. "
msgstr ""
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 lágstafir eða tölustafir, engin greinarmerki eða bil. Nauðsynlegt."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 eða fleiri tákn. Nauðsynlegt"
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt."
+#: actions/register.php:437
+#, fuzzy
+msgid "6 or more characters."
+msgstr "6 eða fleiri tákn"
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:445 actions/register.php:449
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Tölvupóstur"
-#: actions/register.php:447 actions/register.php:451
+#: actions/register.php:446 actions/register.php:450
msgid "Used only for updates, announcements, and password recovery"
msgstr ""
"Aðeins notað fyrir uppfærslur, tilkynningar og endurheimtingu lykilorða."
-#: actions/register.php:458
+#: actions/register.php:457
msgid "Longer name, preferably your \"real\" name"
msgstr "Lengra nafn, ákjósalegast að það sé \"rétta\" nafnið þitt"
-#: actions/register.php:463
+#: actions/register.php:462
msgid "URL of your homepage, blog, or profile on another site"
msgstr ""
"Veffang heimasíðunnar þinnar, bloggsins þíns eða persónulegrar síðu á öðru "
"vefsvæði"
-#: actions/register.php:524
+#: actions/register.php:523
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:533
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:537
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:540
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:545
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr ""
-#: actions/register.php:589
+#: actions/register.php:588
#, fuzzy, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4670,7 +5137,7 @@ msgstr ""
"\n"
"Takk fyrir að skrá þig og við vonum að þú njótir þjónustunnar."
-#: actions/register.php:613
+#: actions/register.php:612
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4678,7 +5145,7 @@ msgstr ""
"(Þú ættir að fá tölvupóst eftir smá stund. Í tölvupóstinum eru leiðbeiningar "
"um það hvernig þú staðfestir tölvupóstfangið þitt.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4690,88 +5157,90 @@ msgstr ""
"[samvirkandi örbloggsþjónustu](%%doc.openmublog%%), sláðu þá inn veffang "
"persónulegu síðunnar þinnar hér fyrir neðan."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Fara í fjaráskrift"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
#, fuzzy
msgid "Subscribe to a remote user"
msgstr "Gerast áskrifandi að þessum notanda"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Stuttnefni notanda"
-#: actions/remotesubscribe.php:130
+#: actions/remotesubscribe.php:129
msgid "Nickname of the user you want to follow"
msgstr "Stuttnefni notandans sem þú vilt fylgja"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Veffang persónulegrar síðu"
-#: actions/remotesubscribe.php:134
+#: actions/remotesubscribe.php:133
msgid "URL of your profile on another compatible microblogging service"
msgstr "Veffang persónulegrar síðu á samvirkandi örbloggsþjónustu"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Gerast áskrifandi"
-#: actions/remotesubscribe.php:159
+#: actions/remotesubscribe.php:158
msgid "Invalid profile URL (bad format)"
msgstr "Ótækt veffang persónulegrar síðu (vitlaust snið)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr "Ekki tækt veffang á persónulega síðu (ekkert YADIS skjal)."
-#: actions/remotesubscribe.php:176
+#: actions/remotesubscribe.php:175
#, fuzzy
-msgid "That’s a local profile! Login to subscribe."
+msgid "That is a local profile! Login to subscribe."
msgstr ""
"Þetta er staðbundinn persónuaðgangur! Skráðu þig inn til að gerast "
"áskrifandi."
-#: actions/remotesubscribe.php:183
+#: actions/remotesubscribe.php:182
#, fuzzy
-msgid "Couldn’t get a request token."
+msgid "Could not get a request token."
msgstr "Gat ekki komist yfir beiðnistóka."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
#, fuzzy
msgid "Only logged-in users can repeat notices."
msgstr "Aðeins notandinn getur lesið hans eigin pósthólf."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
#, fuzzy
msgid "No notice specified."
msgstr "Engin persónuleg síða tilgreind"
-#: actions/repeat.php:76
+#: actions/repeat.php:75
#, fuzzy
-msgid "You can't repeat your own notice."
+msgid "You cannot repeat your own notice."
msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
#, fuzzy
msgid "You already repeated that notice."
msgstr "Þú hefur nú þegar lokað á þennan notanda."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
#, fuzzy
msgid "Repeated"
msgstr "Í sviðsljósinu"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr ""
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Svör við %s"
@@ -4822,6 +5291,95 @@ msgstr ""
msgid "Replies to %1$s on %2$s!"
msgstr "Skilaboð til %1$s á %2$s"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Aðeins notandinn getur lesið hans eigin pósthólf."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Hlaða upp"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Kerfisvilla kom upp við upphal skráar."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Allir meðlimir"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Hlaða upp"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
@@ -4887,7 +5445,7 @@ msgid "Application profile"
msgstr "Babl hefur enga persónulega síðu"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:159 lib/applicationeditform.php:177
msgid "Icon"
msgstr ""
@@ -4906,13 +5464,14 @@ msgstr "Uppröðun"
#. TRANS: Form input field label.
#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: lib/applicationeditform.php:208 lib/groupeditform.php:167
msgid "Description"
msgstr "Lýsing"
#. TRANS: Header for group statistics on a group page (h2).
+#. TRANS: H2 text for user statistics.
#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Tölfræði"
@@ -4929,8 +5488,9 @@ msgstr ""
msgid "Reset key & secret"
msgstr ""
+#. TRANS: Title of form for deleting a user.
#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Eyða"
@@ -4969,44 +5529,56 @@ msgstr ""
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Ertu viss um að þú viljir eyða þessu babli?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Uppáhaldsbabl %s"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Gat ekki sótt uppáhaldsbabl."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, fuzzy, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Bablveita uppáhaldsbabls %s"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, fuzzy, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Bablveita uppáhaldsbabls %s"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, fuzzy, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Bablveita uppáhaldsbabls %s"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -5014,7 +5586,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr ""
@@ -5037,19 +5610,21 @@ msgid "Group profile"
msgstr "Hópssíðan"
#. TRANS: Label for group URL (dt). Text hidden by default.
+#. TRANS: DT for URL in a profile.
#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#: actions/userauthorization.php:175 lib/userprofile.php:186
msgid "URL"
msgstr "Vefslóð"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
+#. TRANS: DT for note in a profile.
#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#: actions/userauthorization.php:187 lib/userprofile.php:204
msgid "Note"
msgstr "Athugasemd"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:293 lib/groupeditform.php:179
msgid "Aliases"
msgstr ""
@@ -5088,8 +5663,11 @@ msgid "Members"
msgstr "Meðlimir"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:408 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Ekkert)"
@@ -5427,72 +6005,72 @@ msgid "Save site notice"
msgstr "Babl vefsíðunnar"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Stillingar fyrir mynd"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Þú getur fengið SMS í gegnum tölvupóst frá %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
#, fuzzy
msgid "SMS is not available."
msgstr "Þessi síða er ekki aðgengileg í "
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Tölvupóstföng"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Núverandi staðfesta SMS símanúmerið."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Býð eftir staðfestingu varðandi þetta símanúmer."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Staðfestingarlykill"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Sláðu inn lykilinn sem þú fékkst í símann þinn."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
#, fuzzy
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Staðfesta"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Ekkert símanúmer."
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
+#: actions/smssettings.php:152
msgid "Phone number, no punctuation or spaces, with area code"
msgstr "Símanúmer, með svæðisnúmeri ef við á, án greinarmerkja eða bila"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Stillingar vistaðar."
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5501,33 +6079,33 @@ msgstr ""
"farsímafyrirtækið rukki fyrir móttöku á SMSunum."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
#, fuzzy
msgid "SMS preferences saved."
msgstr "Stillingar vistaðar."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Ekkert símanúmer."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Ekkert farsímafélag valið."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Þetta er nú þegar símanúmerið þitt."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Þetta símanúmer tilheyri nú þegar öðrum notanda."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
#, fuzzy
msgid ""
"A confirmation code was sent to the phone number you added. Check your phone "
@@ -5538,40 +6116,40 @@ msgstr ""
"staðfestingarlykillinn að vera og leiðbeingar um hvernig eigi að nota hann. "
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Þetta er rangur staðfestingarlykill."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS staðfesting"
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Þetta er ekki símanúmerið þitt."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
#, fuzzy
msgid "The SMS phone number was removed."
msgstr "SMS símanúmer"
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Farsímafyrirtæki"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Veldu farsímafyrirtæki"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5582,8 +6160,9 @@ msgstr ""
"láttu okkur vita."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Enginn lykill sleginn inn"
#. TRANS: Menu item for site administration
@@ -5697,7 +6276,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Þetta er fólkið sem hlustar á bablið í %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5705,7 +6284,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5715,7 +6294,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5746,7 +6325,7 @@ msgstr "Þetta er fólkið sem %s hlustar á bablið í."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5760,23 +6339,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, fuzzy, php-format
msgid "%s is not listening to anyone."
msgstr "%1$s er að hlusta á bablið þitt á %2$s."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Svör við %s"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber snarskilaboðaþjónusta"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5810,12 +6390,14 @@ msgstr "Ekkert einkenni gefið upp."
msgid "Tag %s"
msgstr "Merki %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Persónuleg síða notanda"
+#. TRANS: DT element in area for user avatar.
#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Ljósmynd"
@@ -5838,10 +6420,6 @@ msgstr ""
"Þú getur aðeins merkt fólk sem þú ert áskrifandi að eða þau sem eru "
"áskrifendur að þér."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Gat ekki vistað merki."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5911,7 +6489,6 @@ msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Persónuleg síða"
@@ -6086,19 +6663,19 @@ msgid "Wrong image type for avatar URL ‘%s’."
msgstr "Röng gerð myndar fyrir '%s'"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
#, fuzzy
msgid "Profile design"
msgstr "Stillingar persónulegrar síðu"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -6177,7 +6754,7 @@ msgid "Plugins"
msgstr ""
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
#, fuzzy
msgid "Version"
msgstr "Persónulegt"
@@ -6187,13 +6764,13 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Uppáhald"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér."
@@ -6305,7 +6882,7 @@ msgid "Could not create login token for %s"
msgstr "Gat ekki búið til uppáhald."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:541
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6333,24 +6910,24 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Villa kom upp við að setja inn mynd"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Vandamál komu upp við að vista babl."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Gat ekki vistað babl. Óþekktur notandi."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6358,7 +6935,7 @@ msgstr ""
"mínútur."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
#, fuzzy
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
@@ -6368,43 +6945,43 @@ msgstr ""
"mínútur."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Vandamál komu upp við að vista babl."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:923
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1022
#, fuzzy
msgid "Problem saving group inbox."
msgstr "Vandamál komu upp við að vista babl."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1136
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Gat ekki vistað áskrift."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1655
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6412,14 +6989,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:765
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:774
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6493,36 +7070,57 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Skilaboð til %1$s á %2$s"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:520
msgid "Could not create group."
msgstr "Gat ekki búið til hóp."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:530
msgid "Could not set group URI."
msgstr "Gat ekki búið til hóp."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:553
msgid "Could not set group membership."
msgstr "Gat ekki skráð hópmeðlimi."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:568
#, fuzzy
msgid "Could not save local group info."
msgstr "Gat ekki vistað áskrift."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Gat ekki uppfært notanda."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6560,154 +7158,157 @@ msgid "Other"
msgstr "Annað"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, fuzzy, php-format
msgid "%1$s - %2$s"
msgstr "%1$s (%2$s)"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Ónafngreind síða"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Stikl aðalsíðu"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
#, fuzzy
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Persónuleg síða og vinarás"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
#, fuzzy
msgctxt "MENU"
msgid "Personal"
msgstr "Persónulegt"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Breyta lykilorðinu þínu"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Aðgangur"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
#, fuzzy
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Gat ekki framsent til vefþjóns: %s"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Tengjast"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
#, fuzzy
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Stikl aðalsíðu"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
#, fuzzy
msgctxt "MENU"
msgid "Admin"
msgstr "Stjórnandi"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, fuzzy, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
#, fuzzy
msgctxt "MENU"
msgid "Invite"
msgstr "Bjóða"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Skrá þig inn á síðuna"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Einkennismerki"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Búa til nýjan hóp"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
#, fuzzy
msgctxt "MENU"
msgid "Register"
msgstr "Nýskrá"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
#, fuzzy
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Skrá þig inn á síðuna"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
#, fuzzy
msgctxt "MENU"
msgid "Login"
msgstr "Innskráning"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Hjálp"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
#, fuzzy
msgctxt "MENU"
msgid "Help"
msgstr "Hjálp"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
#, fuzzy
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Leita að fólki eða texta"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
#, fuzzy
msgctxt "MENU"
msgid "Search"
@@ -6715,69 +7316,69 @@ msgstr "Leita"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Babl vefsíðunnar"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Staðbundin sýn"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Babl síðunnar"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Stikl undirsíðu"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Hjálp"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Um"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "Spurt og svarað"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr ""
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Friðhelgi"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Frumþula"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Tengiliður"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
#, fuzzy
msgid "Badge"
msgstr "Pot"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Hugbúnaðarleyfi StatusNet"
@@ -6785,7 +7386,7 @@ msgstr "Hugbúnaðarleyfi StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, fuzzy, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6795,7 +7396,7 @@ msgstr ""
"broughtbyurl%%). "
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** er örbloggsþjónusta."
@@ -6804,7 +7405,7 @@ msgstr "**%%site.name%%** er örbloggsþjónusta."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6816,51 +7417,51 @@ msgstr ""
"licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
#, fuzzy
msgid "Site content license"
msgstr "Hugbúnaðarleyfi StatusNet"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Uppröðun"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Eftir"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Áður"
@@ -6869,10 +7470,80 @@ msgstr "Áður"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Óþekkt skráargerð"
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Ljósmynd"
+msgid "Cannot force remote user to subscribe."
+msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að"
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Óþekkt skráargerð"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Þú ert nú þegar meðlimur í þessum hópi"
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Finna innihald babls"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Enginn svoleiðis notandi."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s (%2$s)"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6953,7 +7624,7 @@ msgid "User configuration"
msgstr "SMS staðfesting"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Notandi"
@@ -7037,29 +7708,33 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Gat ekki skeytt skilaboðum inn í."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
#, fuzzy
msgid "Database error inserting OAuth application user."
msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s"
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr ""
@@ -7173,10 +7848,16 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Endurheimta"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Get ekki eytt þessu babli."
+
#. TRANS: DT element label in attachment list item.
#: lib/attachmentlist.php:294
msgid "Author"
@@ -7328,7 +8009,7 @@ msgstr "Fullt nafn: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Staðsetning: %s"
@@ -7336,7 +8017,7 @@ msgstr "Staðsetning: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Heimasíða: %s"
@@ -7577,26 +8258,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:161
#, fuzzy
msgid "No configuration file found."
msgstr "Enginn staðfestingarlykill."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:164
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Boðskort sent á eftirfarandi aðila:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:167
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:171
#, fuzzy
msgid "Go to the installer."
msgstr "Skrá þig inn á síðuna"
@@ -7643,13 +8324,13 @@ msgstr ""
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
#, fuzzy
msgid "Upload file"
msgstr "Hlaða upp"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
#, fuzzy
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
@@ -7667,26 +8348,61 @@ msgctxt "RADIO"
msgid "Off"
msgstr ""
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Endurstilla"
+msgid "Change colours"
+msgstr "Breyta lykilorðinu þínu"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr ""
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "Gat ekki uppfært hóp."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr ""
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Notaðu þetta eyðublað til að breyta hópnum."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Taka þetta babl út sem uppáhald"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Ekki lengur í uppáhaldi"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Setja þetta babl í uppáhald"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Uppáhald"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr ""
@@ -7703,6 +8419,19 @@ msgstr ""
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Allir meðlimir"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7738,34 +8467,30 @@ msgstr "Áfram"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1-64 lágstafir eða tölustafir, engin greinarmerki eða bil"
-
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:155
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "Vefslóð vefsíðu hópsins eða umfjöllunarefnisins"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:160
#, fuzzy
msgid "Describe the group or topic"
msgstr "Lýstu hópnum eða umfjöllunarefninu með 140 táknum"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:162
#, fuzzy, php-format
-msgid "Describe the group or topic in %d character or less"
-msgid_plural "Describe the group or topic in %d characters or less"
+msgid "Describe the group or topic in %d character or less."
+msgid_plural "Describe the group or topic in %d characters or less."
msgstr[0] "Lýstu hópnum eða umfjöllunarefninu með 140 táknum"
msgstr[1] "Lýstu hópnum eða umfjöllunarefninu með 140 táknum"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:174
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "Staðsetning hópsins, ef einhver, eins og \"Borg, landshluti, land\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:182
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7871,40 +8596,41 @@ msgid "This page is not available in a media type you accept"
msgstr ""
"Þessi síða er ekki aðgengileg í margmiðlunargerðinni sem þú tekur á móti"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Skráarsnið myndar ekki stutt."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, fuzzy, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Upphal að hluta til."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Kerfisvilla kom upp við upphal skráar."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Annaðhvort ekki mynd eða þá að skráin er gölluð."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Týndum skránni okkar"
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Óþekkt skráargerð"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7912,7 +8638,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7920,7 +8646,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7941,23 +8667,25 @@ msgstr ""
msgid "Leave"
msgstr "Hætta sem meðlimur"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Skráðu þig inn með notendanafni og lykilorði"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Búðu til nýjan aðgang"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Staðfesting tölvupóstfangs"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7976,14 +8704,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s er að hlusta á bablið þitt á %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7995,7 +8723,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -8012,14 +8740,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Staðsetning: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nýtt tölvupóstfang til að senda á %s"
@@ -8027,7 +8755,7 @@ msgstr "Nýtt tölvupóstfang til að senda á %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8050,34 +8778,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Staða %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS staðfesting"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, fuzzy, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "Býð eftir staðfestingu varðandi þetta símanúmer."
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "%s ýtti við þér"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8095,7 +8823,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Ný persónuleg skilaboð frá %s"
@@ -8104,7 +8832,7 @@ msgstr "Ný persónuleg skilaboð frá %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8125,7 +8853,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér."
@@ -8135,7 +8863,7 @@ msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hj
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8157,7 +8885,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8167,7 +8895,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr ""
@@ -8178,7 +8906,7 @@ msgstr ""
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8215,7 +8943,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only."
msgstr ""
-#: lib/mailbox.php:228 lib/noticelist.php:521
+#: lib/mailbox.php:228 lib/noticelist.php:522
#, fuzzy
msgid "from"
msgstr "frá"
@@ -8246,38 +8974,6 @@ msgstr "Skráarsnið myndar ekki stutt."
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8299,7 +8995,7 @@ msgstr "Gat ekki eytt uppáhaldi."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8308,7 +9004,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8344,17 +9040,17 @@ msgid "Send"
msgstr "Senda"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8370,11 +9066,11 @@ msgstr "Senda babl"
msgid "What's up, %s?"
msgstr "Hvað er að frétta %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr ""
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr ""
@@ -8395,58 +9091,58 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
#, fuzzy
msgid "N"
msgstr "Nei"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
#, fuzzy
msgid "in context"
msgstr "Ekkert innihald!"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
#, fuzzy
msgid "Repeated by"
msgstr "Í sviðsljósinu"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Svara þessu babli"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Svara"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:691
#, fuzzy
msgid "Notice repeated"
msgstr "Babl sent inn"
@@ -8484,34 +9180,52 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "Gat ekki sett inn nýja áskrift."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Persónulegt"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Svör"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Persónuleg síða"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Uppáhald"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Innhólf"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Mótteknu skilaboðin þín"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Úthólf"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Skilaboð sem þú hefur sent"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
@@ -8523,40 +9237,58 @@ msgstr "Merki í babli %s"
msgid "Unknown"
msgstr "Óþekkt aðgerð"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Áskriftir"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Allar áskriftir"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Áskrifendur"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Allir áskrifendur"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
#, fuzzy
msgid "User ID"
msgstr "Notandi"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Meðlimur síðan"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Hópar"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Allir hópar"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8606,7 +9338,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr ""
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Aðferð í forritsskilum fannst ekki!"
@@ -8817,51 +9549,63 @@ msgstr "Fara úr áskrift"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Notandi hefur enga persónulega síðu."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
#, fuzzy
msgid "Edit Avatar"
msgstr "Mynd"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Notandaaðgerðir"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
#, fuzzy
msgid "Edit profile settings"
msgstr "Stillingar persónulegrar síðu"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr ""
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Senda bein skilaboð til þessa notanda"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Skilaboð"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr ""
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
#, fuzzy
msgid "User role"
msgstr "Persónuleg síða notanda"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr ""
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr ""
@@ -8928,14 +9672,9 @@ msgstr[1] ""
msgid "about a year ago"
msgstr "fyrir um einu ári síðan"
-#: lib/webcolor.php:80
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "Heimasíða er ekki gild vefslóð."
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "Heimasíða er ekki gild vefslóð."
@@ -8958,32 +9697,18 @@ msgstr[1] ""
"Skilaboð eru of löng - 140 tákn eru í mesta lagi leyfð en þú sendir %d"
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Ótæk stærð."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Engin persónuleg síða tilgreind"
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po
index 4c394f8a1e..47f3c6f5d8 100644
--- a/locale/it/LC_MESSAGES/statusnet.po
+++ b/locale/it/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Italian (Italiano)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: HalphaZ
# Author: Milocasagrande
@@ -11,17 +11,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:10:59+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:57+0000\n"
"Language-Team: Italian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: it\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -78,8 +78,9 @@ msgid "Save access settings"
msgstr "Salva impostazioni di accesso"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -89,13 +90,13 @@ msgstr "Salva impostazioni di accesso"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Salva"
@@ -103,7 +104,7 @@ msgstr "Salva"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Pagina inesistente."
@@ -113,6 +114,8 @@ msgstr "Pagina inesistente."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -128,13 +131,23 @@ msgstr "Pagina inesistente."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -142,15 +155,15 @@ msgstr "Pagina inesistente."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Utente inesistente."
@@ -164,9 +177,10 @@ msgstr "%1$s e amici, pagina %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s e amici"
@@ -279,7 +293,7 @@ msgstr "Messaggi da %1$s e amici su %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -313,7 +327,21 @@ msgstr ""
"\"sms\", \"im\" o \"none\"."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Impossibile aggiornare l'utente."
@@ -323,18 +351,23 @@ msgstr "Impossibile aggiornare l'utente."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "L'utente non ha un profilo."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Impossibile salvare il profilo."
@@ -344,8 +377,8 @@ msgstr "Impossibile salvare il profilo."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -365,13 +398,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Impossibile salvare la impostazioni dell'aspetto."
@@ -379,48 +413,59 @@ msgstr "Impossibile salvare la impostazioni dell'aspetto."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Impossibile aggiornare l'aspetto."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Attività di %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Abbonamenti di %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "Preferiti"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "Membri del gruppo %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Non puoi bloccarti!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Blocco dell'utente non riuscito."
@@ -478,7 +523,8 @@ msgstr "Destinatario non trovato."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Non puoi inviare messaggi diretti a utenti che non sono tuoi amici."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -502,8 +548,9 @@ msgid "This status is already a favorite."
msgstr "Questo messaggio è già un preferito."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Impossibile creare un preferito."
@@ -513,7 +560,8 @@ msgid "That status is not a favorite."
msgstr "Questo messaggio non è un preferito."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Impossibile eliminare un preferito."
@@ -559,9 +607,9 @@ msgstr "Impossibile trovare l'utente destinazione."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Soprannome già in uso. Prova con un altro."
@@ -569,21 +617,22 @@ msgstr "Soprannome già in uso. Prova con un altro."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Non è un soprannome valido."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "L'indirizzo della pagina web non è valido."
@@ -591,9 +640,9 @@ msgstr "L'indirizzo della pagina web non è valido."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "Nome troppo lungo (max 255 caratteri)."
@@ -601,14 +650,15 @@ msgstr "Nome troppo lungo (max 255 caratteri)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -619,9 +669,9 @@ msgstr[1] "La descrizione è troppo lunga (max %d caratteri)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "Ubicazione troppo lunga (max 255 caratteri)."
@@ -632,8 +682,8 @@ msgstr "Ubicazione troppo lunga (max 255 caratteri)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -650,18 +700,16 @@ msgstr "Alias non valido: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "L'alias \"%s\" è già in uso. Prova con un altro."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "L'alias non può essere lo stesso del soprannome."
@@ -672,28 +720,32 @@ msgstr "L'alias non può essere lo stesso del soprannome."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Gruppo non trovato."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Fai già parte di quel gruppo."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "L'amministratore ti ha bloccato l'accesso a quel gruppo."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Impossibile iscrivere l'utente %1$s al gruppo %2$s."
@@ -705,9 +757,11 @@ msgstr "Non fai parte di questo gruppo."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -744,7 +798,7 @@ msgid "Upload failed."
msgstr "Caricamento non riuscito."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "Token di accesso specificato non valido."
@@ -767,20 +821,25 @@ msgid "Request token already authorized."
msgstr "Autorizzazione non presente."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -799,18 +858,22 @@ msgstr "Errore nel database nell'inserire l'applicazione utente OAuth."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Invio del modulo inaspettato."
@@ -861,29 +924,31 @@ msgstr "Account"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Soprannome"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Password"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -957,6 +1022,7 @@ msgstr "Non puoi eliminare il messaggio di un altro utente."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -976,39 +1042,52 @@ msgstr "Non puoi ripetere un tuo messaggio."
msgid "Already repeated that notice."
msgstr "Hai già ripetuto quel messaggio."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Metodo delle API non trovato."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Formato non supportato."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Messaggio eliminato."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Nessuno stato trovato con quel ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Impossibile eliminare questo messaggio."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Elimina messaggio"
@@ -1068,7 +1147,7 @@ msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s"
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Impossibile aggiornare il gruppo."
@@ -1089,13 +1168,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s messaggi in risposta a quelli da %2$s / %3$s"
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Attività pubblica di %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "Aggiornamenti di %s da tutti!"
@@ -1144,202 +1224,269 @@ msgstr "Solo l'utente può leggere la propria casella di posta."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Trova contenuto dei messaggi"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Un messaggio con quel ID non esiste."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Metodo delle API in lavorazione."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Metodo delle API non trovato."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Nessun profilo."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Messaggi da %1$s e amici su %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Impossibile inserire un nuovo abbonamento."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Trova contenuto dei messaggi"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Trova contenuto dei messaggi"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Sconosciuto"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Aggiungi ai preferiti"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Nessun profilo."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "Membri del gruppo %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Gruppi di cui %s fa parte"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Impossibile inserire un nuovo abbonamento."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Trova contenuto dei messaggi"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Sconosciuto"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Tutti i membri"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Nessun file."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Impossibile eliminare un preferito."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Nessuna gruppo."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Tutti i membri"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Metodo delle API non trovato."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Nessun profilo."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Non hai una abbonamento a quel profilo."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Impossibile salvare l'abbonamento."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Nessun profilo."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Non hai una abbonamento a quel profilo."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Impossibile salvare l'abbonamento."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Persone abbonate a %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Tipo di file sconosciuto"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Hai già l'abbonamento!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1348,11 +1495,15 @@ msgstr "Nessun allegato."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Nessun soprannome."
@@ -1369,7 +1520,7 @@ msgstr "Dimensione non valida."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Immagine"
@@ -1383,42 +1534,52 @@ msgstr ""
"Puoi caricare la tua immagine personale. La dimensione massima del file è %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Utente senza profilo corrispondente."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Impostazioni immagine"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Originale"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Anteprima"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Elimina"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1436,31 +1597,72 @@ msgstr "Ritaglia"
msgid "No file uploaded."
msgstr "Nessun file caricato."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Scegli un'area quadrata per la tua immagine personale"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Perso il nostro file di dati."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Immagine aggiornata."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Aggiornamento dell'immagine non riuscito."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Immagine eliminata."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Solo gli utenti collegati possono ripetere i messaggi."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Sfondo"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1468,7 +1670,8 @@ msgstr "Hai già bloccato quell'utente."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Blocca utente"
@@ -1491,15 +1694,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "No"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Non bloccare questo utente"
#. TRANS: Button label on the user block form.
@@ -1510,15 +1713,15 @@ msgstr "Non bloccare questo utente"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Sì"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Blocca questo utente"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1526,31 +1729,6 @@ msgstr "Blocca questo utente"
msgid "Failed to save block information."
msgstr "Salvataggio delle informazioni per il blocco non riuscito."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Nessuna gruppo."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1621,23 +1799,6 @@ msgstr "Tipo di indirizzo %s non riconosciuto."
msgid "That address has already been confirmed."
msgstr "Quell'indirizzo è già stato confermato."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Impossibile aggiornare l'utente."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1663,11 +1824,85 @@ msgid "Conversation"
msgstr "Conversazione"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Messaggi"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Solo gli utenti collegati possono ripetere i messaggi."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Non puoi eliminare utenti."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Immagine eliminata."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Crea un account"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Conferma"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Non puoi eliminare utenti."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Non puoi eliminare utenti."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1681,14 +1916,14 @@ msgstr "Applicazione non trovata."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Questa applicazione non è di tua proprietà."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Si è verificato un problema con il tuo token di sessione."
@@ -1710,12 +1945,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Non eliminare l'applicazione"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Elimina l'applicazione"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1725,8 +1962,10 @@ msgid "You must be logged in to delete a group."
msgstr "Devi eseguire l'accesso per lasciare un gruppo."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Nessun soprannome o ID."
@@ -1771,25 +2010,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "Non eliminare il messaggio"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "Elimina questo utente"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Accesso non effettuato."
@@ -1816,27 +2061,40 @@ msgstr "Vuoi eliminare questo messaggio?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Non eliminare il messaggio"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Elimina questo messaggio"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Non puoi eliminare utenti."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Puoi eliminare solo gli utenti locali."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Elimina utente"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Elimina utente"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1844,80 +2102,104 @@ msgstr ""
"Vuoi eliminare questo utente? Questa azione eliminerà tutti i dati "
"dell'utente dal database, senza una copia di sicurezza."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Non eliminare il messaggio"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Elimina questo utente"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Aspetto"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Impostazioni dell'aspetto per questo sito StatusNet"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "URL del logo non valido."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "URL del logo non valido."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Tema non disponibile: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Modifica logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logo del sito"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "Logo del sito"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Modifica tema"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Tema del sito"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Tema per questo sito."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Tema personalizzato"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Puoi caricare un tema per StatusNet personalizzato come un file ZIP."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Modifica l'immagine di sfondo"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Sfondo"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1927,98 +2209,108 @@ msgstr ""
"file è di %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "On"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Off"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Abilita o disabilita l'immagine di sfondo."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Affianca l'immagine di sfondo"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Modifica colori"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Contenuto"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Barra laterale"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Testo"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Collegamenti"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avanzate"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS personalizzato"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Usa predefiniti"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Ripristina i valori predefiniti"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Reimposta i valori predefiniti"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Salva"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Salva aspetto"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Questo messaggio non è un preferito!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Aggiungi ai preferiti"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Nessun documento \"%s\""
#. TRANS: Title for "Edit application" form.
@@ -2033,7 +2325,7 @@ msgid "You must be logged in to edit an application."
msgstr "Devi eseguire l'accesso per modificare un'applicazione."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Nessuna applicazione."
@@ -2043,63 +2335,73 @@ msgid "Use this form to edit your application."
msgstr "Usa questo modulo per modificare la tua applicazione."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Il nome è richiesto."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "Il nome è troppo lungo (max 255 caratteri)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Nome già in uso. Prova con un altro."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "La descrizione è richiesta."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "L'URL sorgente è troppo lungo."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "L'URL sorgente non è valido."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "L'organizzazione è richiesta."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "L'organizzazione è troppo lunga (max 255 caratteri)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Il sito web dell'organizzazione è richiesto."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Il callback è troppo lungo."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "L'URL di callback non è valido."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Impossibile aggiornare l'applicazione."
@@ -2110,14 +2412,17 @@ msgid "Edit %s group"
msgstr "Modifica il gruppo %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Devi eseguire l'accesso per creare un gruppo."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Devi essere amministratore per modificare il gruppo."
@@ -2128,63 +2433,65 @@ msgstr "Usa questo modulo per modificare il gruppo."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Alias non valido: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Impossibile aggiornare il gruppo."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Impossibile creare gli alias."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Opzioni salvate."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Impostazioni email"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Gestisci la ricezione delle email da %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Indirizzo email"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Indirizzo email attualmente confermato."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Rimuovi"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2198,46 +2505,46 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Indirizzo email, del tipo \"nomeutente@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Aggiungi"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Email di ricezione"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Voglio inviare i messaggi via email"
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Invia le email a questo indirizzo per scrivere nuovi messaggi."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
"Crea un nuovo indirizzo email a cui inviare i messaggi e rimuovi quello "
"vecchio."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2245,88 +2552,90 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nuovo"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Preferenze dell'email"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Inviami avvisi di nuovi abbonamenti via email"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Inviami un'email quando qualcuno aggiunge un mio messaggio ai preferiti"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Inviami un'email quando qualcuno mi invia un messaggio privato"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Inviami un'email quando qualcuno mi invia una \"@-risposta\""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Consenti ai miei amici di richiamarmi e inviami un'email"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Pubblica un MicroID per il mio indirizzo email"
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Preferenze dell'email salvate."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Nessun indirizzo email."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Impossibile normalizzare quell'indirizzo email"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Non è un indirizzo email valido."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Quello è già il tuo indirizzo email."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Quell'indirizzo email appartiene già a un altro utente."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Impossibile inserire il codice di conferma."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2336,89 +2645,105 @@ msgstr ""
"codice e le istruzioni su come usarlo."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Nessuna conferma da annullare."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Quello è l'indirizzo email sbagliato."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Impossibile eliminare l'email di conferma."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Conferma dell'email annullata."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Quello non è il tuo indirizzo email."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "L'indirizzo email è stato rimosso."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Nessun indirizzo email di ricezione."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Impossibile aggiornare il record dell'utente."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Indirizzo email di ricezione rimosso."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Nuovo indirizzo email di ricezione aggiunto."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Questo messaggio è già un preferito!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Rimuovi preferito"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Messaggi famosi"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Messaggi famosi, pagina %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Ecco i messaggi più famosi all'interno del sito."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"I messaggi preferiti vengono visualizzati in questa pagina, ma non ne è "
"stato ancora impostato alcuno."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2427,7 +2752,9 @@ msgstr ""
"Aggiungi tu un messaggio tra i tuoi preferiti facendo clic sul pulsante a "
"forma di cuore."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2436,142 +2763,186 @@ msgstr ""
"Perché non [crei un account](%%action.register%%) e aggiungi un messaggio "
"tra i tuoi preferiti!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Messaggi preferiti di %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Messaggi preferiti da %1$s su %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Utenti in evidenza"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Utenti in evidenza, pagina %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Una selezione di alcuni dei migliori utenti su %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Nessun ID di messaggio."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Nessun messaggio."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Nessun allegato."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Nessun allegato caricato."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Risposta non attesa!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "L'utente che intendi seguire non esiste."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Puoi usare l'abbonamento locale!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Quell'utente ti ha bloccato dall'abbonarti."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Autorizzazione non presente."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Impossibile convertire il token di richiesta in uno di accesso."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Il servizio remoto usa una versione del protocollo OMB sconosciuta."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Errore nell'aggiornare il profilo remoto."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Nessun file."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Impossibile leggere il file."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Ruolo non valido."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Questo ruolo è riservato e non può essere impostato."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Non puoi concedere i ruoli agli utenti su questo sito."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "L'utente ricopre già questo ruolo."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Nessun profilo specificato."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Nessun profilo con quel ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Nessun gruppo specificato."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Solo un amministratore può bloccare i membri del gruppo."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "L'utente è già bloccato dal gruppo."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "L'utente non fa parte del gruppo."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Blocca l'utente dal gruppo"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2583,32 +2954,40 @@ msgstr ""
"gruppo."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Non bloccare l'utente da questo gruppo"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Blocca l'utente da questo gruppo"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Errore del database nel bloccare l'utente dal gruppo."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Nessun ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Devi eseguire l'accesso per modificare un gruppo."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Aspetto del gruppo"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2616,22 +2995,26 @@ msgstr ""
"Personalizza l'aspetto del tuo gruppo con un'immagine di sfondo e dei colori "
"personalizzati."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Impossibile aggiornare l'aspetto."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Impossibile salvare la impostazioni dell'aspetto."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Preferenze dell'aspetto salvate."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo del gruppo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2639,100 +3022,116 @@ msgstr ""
"Puoi caricare un'immagine per il logo del tuo gruppo. La dimensione massima "
"del file è di %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Carica"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Ritaglia"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Scegli un'area quadrata dell'immagine per il logo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo aggiornato."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Aggiornamento del logo non riuscito."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Membri del gruppo %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Membri del gruppo %1$s, pagina %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Un elenco degli utenti in questo gruppo."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Amministra"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Blocca"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Blocca questo utente"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Rende l'utente amministratore del gruppo"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Rendi amministratore"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Fa diventare questo utente un amministratore"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Messaggi dai membri di %1$s su %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Gruppi"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Gruppi, pagina %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"I gruppi di %%%%site.name%%%% ti consentono di trovare e parlare con persone "
"che condividono i tuoi stessi interessi. Quando fai parte di un gruppo, puoi "
@@ -2740,11 +3139,13 @@ msgstr ""
"nomegruppo\". Non trovi un gruppo che ti piace? Prova a [cercarne uno](%%%%"
"action.groupsearch%%%%) o [crea il tuo!](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Crea un nuovo gruppo"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2753,25 +3154,33 @@ msgstr ""
"Cerca tra i gruppi su %%site.name%% per nome, ubicazione o descrizione. "
"Separa i termini di ricerca con degli spazi; lunghezza minima 3 caratteri."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Cerca gruppi"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Nessun risultato."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Se non riesci a trovare il gruppo che cerchi, puoi [crearlo](%%action."
"newgroup%%) tu."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2781,138 +3190,148 @@ msgstr ""
"action.newgroup%%)!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Solo gli amministratori possono sbloccare i membri del gruppo."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "L'utente non è bloccato dal gruppo."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Errore nel rimuovere il blocco."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Impostazioni messaggistica istantanea"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Puoi inviare e ricevere messaggi attraverso i servizi di [messaggistica "
"istantanea](%%doc.im%%) Jabber/GTalk. Configura il tuo indirizzo e le "
"impostazioni qui di seguito."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "Messaggistica istantanea non disponibile."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Indirizzo di messaggistica istantanea"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Indirizzo Jabber/GTalk attualmente confermato."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"In attesa di conferma per questo indirizzo. Controlla il tuo account Jabber/"
"GTalk per un messaggio con ulteriori istruzioni. Hai aggiunto %s al tuo "
"elenco contatti?"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Indirizzo Jabber o GTalk nella forma \"nomeutente@example.org\". Per prima "
"cosa, assicurati di aggiungere %s all'elenco dei contatti nel tuo programma "
"di messaggistica o su GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Preferenze messaggistica"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Inviami i messaggi via Jabber/GTalk"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr "Inviami le risposte delle persone a cui sono abbonato via Jabber/GTalk"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Pubblica un MicroID per il mio indirizzo Jabber/GTalk"
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Preferenze salvate."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Nessun ID di Jabber."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Impossibile normalizzare quell'ID Jabber"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Non è un ID Jabber valido"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Quello è già il tuo ID di Jabber."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "ID Jabber già assegnato a un altro utente."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2921,75 +3340,81 @@ msgstr ""
"Un codice di conferma è stato inviato all'indirizzo di messaggistica "
"istantanea che hai aggiunto. Devi approvare %s affinché ti invii messaggi."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Quello è l'indirizzo di messaggistica sbagliato."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Impossibile eliminare la conferma della messaggistica."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Conferma della messaggistica annullata."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Quello non è il tuo ID di Jabber."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "L'indirizzo di messaggistica è stato rimosso."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Casella posta in arrivo di %1$s - pagina %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Casella posta in arrivo di %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Questa è la casella della tua posta in arrivo, contiene i messaggi privati "
"ricevuti."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Gli inviti sono stati disabilitati."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Devi eseguire l'accesso per invitare altri utenti a usare %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Indirizzo email non valido: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Inviti inviati"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Invita nuovi utenti"
@@ -2997,7 +3422,7 @@ msgstr "Invita nuovi utenti"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3006,7 +3431,7 @@ msgstr[1] "Hai già un abbonamento a questi utenti:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3015,7 +3440,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3028,7 +3453,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3037,7 +3462,7 @@ msgstr[1] "Inviti inviati alle seguenti persone:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3046,7 +3471,7 @@ msgstr ""
"registreranno sul sito. Grazie per l'aiuto ad accrescere la comunità!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3054,27 +3479,28 @@ msgstr ""
"servizio."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Indirizzi email"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Indirizzi email di amici da invitare (uno per riga)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Messaggio personale"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Puoi aggiungere un messaggio personale agli inviti."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Invia"
@@ -3082,7 +3508,7 @@ msgstr "Invia"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "Hai ricevuto un invito per seguire %1$s su %2$s"
@@ -3092,7 +3518,7 @@ msgstr "Hai ricevuto un invito per seguire %1$s su %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3149,44 +3575,51 @@ msgstr ""
"\n"
"Cordiali saluti, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Devi eseguire l'accesso per iscriverti a un gruppo."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s fa ora parte del gruppo %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Devi eseguire l'accesso per lasciare un gruppo."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Non fai parte di quel gruppo."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s ha lasciato il gruppo %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Licenza"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "La licenza per questo sito StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Selezione della licenza non valida."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3194,124 +3627,133 @@ msgstr ""
"È necessario specificare il proprietario dei contenuti quando viene usata la "
"licenza \"Tutti i diritti riservati\"."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Titolo della licenza non valido. Lunghezza massima 255 caratteri."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Indirizzo della licenza non valido."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Indirizzo immagine della licenza non valido."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "L'indirizzo della licenza deve essere vuoto o un URL valido."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "L'immagine della licenza deve essere vuota o un URL valido."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Selezione licenza"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privato"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Tutti i diritti riservati"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Tipo"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Seleziona licenza"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Dettagli licenza"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Proprietario"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Nome del proprietario dei contenuti del sito (se applicabile)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Titolo licenza"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Il titolo della licenza."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "Indirizzo licenza"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "Indirizzo per informazioni aggiuntive riguardo la licenza."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "Indirizzo immagine licenza"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "Indirizzo di un'immagine da visualizzare con la licenza."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Salva"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Salva impostazioni licenza"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Accesso già effettuato."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Nome utente o password non corretto."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Errore nell'impostare l'utente. Forse non hai l'autorizzazione."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Accedi"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Accedi al sito"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Ricordami"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "Accedi automaticamente in futuro; non per computer condivisi!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Password persa o dimenticata?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3319,11 +3761,11 @@ msgstr ""
"Per motivi di sicurezza, è necessario che tu inserisca il tuo nome utente e "
"la tua password prima di modificare le impostazioni."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Accedi con nome utente e password."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3361,19 +3803,22 @@ msgid "New application"
msgstr "Nuova applicazione"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Devi eseguire l'accesso per registrare un'applicazione."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Usa questo modulo per registrare un'applicazione."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "L'URL sorgente è richiesto."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Impossibile creare l'applicazione."
@@ -3382,11 +3827,23 @@ msgstr "Impossibile creare l'applicazione."
msgid "New group"
msgstr "Nuovo gruppo"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Non fai parte di questo gruppo."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Usa questo modulo per creare un nuovo gruppo."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "L'alias non può essere lo stesso del soprannome."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nuovo messaggio"
@@ -3436,7 +3893,9 @@ msgstr "Nuovo messaggio"
msgid "Notice posted"
msgstr "Messaggio inviato"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3445,16 +3904,21 @@ msgstr ""
"Cerca tra i messaggi su %%site.name%% in base al contenuto. Separa i termini "
"di ricerca con degli spazi; lunghezza minima 3 caratteri."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Cerca testo"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Risultati della ricerca per \"%1$s\" su %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3463,7 +3927,9 @@ msgstr ""
"[Scrivi qualche cosa](%%%%action.newnotice%%%%?status_textarea=%s) su questo "
"argomento!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3472,14 +3938,17 @@ msgstr ""
"Perché non [crei un account](%%%%action.register%%%%) e [scrivi qualche cosa]"
"(%%%%action.newnotice%%%%?status_textarea=%s) su questo argomento!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Messaggi con \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Messaggi che corrispondono al termine \"%1$s\" su %2$s!"
#: actions/nudge.php:85
@@ -3521,31 +3990,31 @@ msgid "You have not registered any applications yet."
msgstr "Non hai ancora registrato alcuna applicazione."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Applicazioni collegate"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
#, fuzzy
msgid "The following connections exist for your account."
msgstr "Hai consentito alle seguenti applicazioni di accedere al tuo account."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Non sei un utente di quella applicazione."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Impossibile revocare l'accesso per l'applicazione: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3553,20 +4022,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Non hai autorizzato alcuna applicazione all'uso del tuo account."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Metodo delle API non trovato."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Metodo delle API non trovato."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Il messaggio non ha un profilo."
@@ -3576,6 +4055,16 @@ msgstr "Il messaggio non ha un profilo."
msgid "%1$s's status on %2$s"
msgstr "Stato di %1$s su %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Destinatario non trovato."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3589,16 +4078,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Solo URL %s attraverso HTTP semplice."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Non è un formato di dati supportato."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Cerca persone"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Cerca messaggi"
@@ -3612,69 +4102,80 @@ msgid "Manage various other options."
msgstr "Gestisci altre opzioni."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (servizio libero)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Accorcia gli URL con"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Servizio di autoriduzione da usare"
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Visualizza aspetto"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Mostra o nasconde gli aspetti del profilo"
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Il servizio di riduzione degli URL è troppo lungo (max 50 caratteri)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Nessun ID utente specificato."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Nessun token di accesso specificato."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Nessun token di accesso richiesto."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Token di accesso specificato non valido."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Token di accesso scaduto."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Casella posta inviata di %s - pagina %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Casella posta inviata di %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Questa è la casella della tua posta inviata, contiene i messaggi privati che "
@@ -3688,7 +4189,8 @@ msgstr "Modifica password"
msgid "Change your password."
msgstr "Modifica la tua password."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Modifica password"
@@ -3696,48 +4198,50 @@ msgstr "Modifica password"
msgid "Old password"
msgstr "Vecchia password"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nuova password"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 o più caratteri"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Conferma"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Stessa password di sopra"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Modifica"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "La password deve essere di 6 o più caratteri."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Le password non corrispondono."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Vecchia password non corretta"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Errore nel salvare l'utente; non valido."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Impossibile salvare la nuova password."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Password salvata."
@@ -3955,7 +4459,7 @@ msgstr "Percorso della directory alle localizzazioni"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Allegati"
@@ -4029,7 +4533,9 @@ msgstr "Server a cui dirigere le richieste SSL"
msgid "Save paths"
msgstr "Salva percorsi"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4038,7 +4544,8 @@ msgstr ""
"Cerca tra le persone su %%site.name%% per nome, ubicazione o interessi. "
"Separa i termini di ricerca con degli spazi; lunghezza minima 3 caratteri."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Cerca persone"
@@ -4064,12 +4571,12 @@ msgstr ""
"\"%2$s\"."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Impostazioni del profilo"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4077,12 +4584,12 @@ msgstr ""
"altri potranno conoscere qualcosa in più su di te."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Informazioni sul profilo"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
@@ -4090,21 +4597,22 @@ msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Nome"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Pagina web"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL della tua pagina web, blog o profilo su un altro sito"
@@ -4112,7 +4620,7 @@ msgstr "URL della tua pagina web, blog o profilo su un altro sito"
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4120,73 +4628,80 @@ msgstr[0] "Descriviti assieme ai tuoi interessi in %d caratteri"
msgstr[1] "Descriviti assieme ai tuoi interessi in %d caratteri"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Descrivi te e i tuoi interessi"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Biografia"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Ubicazione"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Dove ti trovi, tipo \"città, regione, stato\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Condividi la mia posizione attuale quando invio messaggi"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Etichette"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Lingua"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Lingua preferita"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Fuso orario"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "In che fuso orario risiedi solitamente?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-"
"umani)"
@@ -4194,7 +4709,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4202,50 +4717,54 @@ msgstr[0] "La biografia è troppo lunga (max %d caratteri)."
msgstr[1] "La biografia è troppo lunga (max %d caratteri)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Fuso orario non selezionato"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "La lingua è troppo lunga (max 50 caratteri)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Etichetta non valida: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Impossibile aggiornare l'utente per auto-abbonarsi."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Impossibile salvare le preferenze della posizione."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Impossibile salvare il profilo."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Impossibile salvare le etichette."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Impostazioni salvate."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Crea un account"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4320,6 +4839,12 @@ msgstr ""
"wiki/Microblogging) basato sul software libero [StatusNet](http://status."
"net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "Aggiornamenti di %s da tutti!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4362,35 +4887,43 @@ msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!"
msgid "Tag cloud"
msgstr "Insieme delle etichette"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Hai già effettuato l'accesso!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Nessun codice di ripristino."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Non è un codice di ripristino."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Codice di recupero per utente sconosciuto."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Errore con il codice di conferma."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Questo codice di conferma è scaduto. Ricomincia da capo."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Impossibile aggiornare l'utente con l'indirizzo email confermato."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4398,68 +4931,101 @@ msgstr ""
"Se hai dimenticato o perso la tua password, puoi fartene inviare una nuova "
"all'indirizzo email che hai inserito nel tuo account."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Identificazione avvenuta. Inserisci la nuova password. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Identificazione avvenuta. Inserisci la nuova password."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Recupero password"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Soprannome o indirizzo email"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"Il tuo soprannome su questo server o il tuo indirizzo email registrato."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Recupera"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Recupera"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Reimposta la password"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Recupera la password"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Richiesta password di ripristino"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Password salvata."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Azione sconosciuta"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 o più caratteri, e non dimenticarla!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Reimposta"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Inserisci un soprannome o un indirizzo email."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Nessun utente con quell'email o nome utente."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Nessun indirizzo email registrato per quell'utente."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Errore nel salvare la conferma dell'indirizzo."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4467,123 +5033,120 @@ msgstr ""
"Le istruzioni per recuperare la tua password sono state inviate "
"all'indirizzo email registrato nel tuo account."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Ripristino della password inaspettato."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "La password deve essere lunga almeno 6 caratteri."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "La password e la conferma non corrispondono."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Errore nell'impostare l'utente."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Nuova password salvata con successo. Hai effettuato l'accesso."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Solo le persone invitate possono registrarsi."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Codice di invito non valido."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registrazione riuscita"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registrati"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registrazione non consentita."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Non puoi registrarti se non accetti la licenza."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Indirizzo email già esistente."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Nome utente o password non valido."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Attraverso questo modulo puoi creare un nuovo account con cui potrai "
"successivamente inviare messaggi e metterti in contatto con i tuoi amici e "
"colleghi. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 lettere minuscole o numeri, niente punteggiatura o spazi; richiesto"
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 o più caratteri; richiesta"
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Stessa password di sopra; richiesta"
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Email"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Usata solo per aggiornamenti, annunci e recupero password"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Nome completo, preferibilmente il tuo \"vero\" nome"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL della tua pagina web, blog o profilo su un altro sito"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Dove ti trovi, tipo \"città, regione, stato\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
"Comprendo che i contenuti e i dati di %1$s sono privati e confidenziali."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "I miei testi e i miei file sono copyright di %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "I miei testi e file restano sotto il mio diretto copyright."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Tutti i diritti riservati."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4593,7 +5156,7 @@ msgstr ""
"dati personali: password, indirizzo email, indirizzo messaggistica "
"istantanea e numero di telefono."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4627,7 +5190,7 @@ msgstr ""
"Grazie per la tua iscrizione e speriamo tu possa divertiti usando questo "
"servizio."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4635,7 +5198,7 @@ msgstr ""
"(Dovresti ricevere, entro breve, un messaggio email con istruzioni su come "
"confermare il tuo indirizzo email.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4647,79 +5210,88 @@ msgstr ""
"microblog compatibile](%%doc.openmublog%%), inserisci l'indirizzo del tuo "
"profilo qui di seguito."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Abbonamento remoto"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Abbonati a un utente remoto"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Soprannome dell'utente"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Soprannome dell'utente che vuoi seguire"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL del profilo"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "URL del tuo profilo su un altro servizio di microblog compatibile"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Abbonati"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "URL del profilo non valido (formato errato)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Non è un URL di profilo valido (nessun documento YADIS o XRDS definito non "
"valido)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Quello è un profilo locale! Accedi per abbonarti."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Impossibile ottenere un token di richiesta."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Solo gli utenti collegati possono ripetere i messaggi."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Nessun messaggio specificato."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Non puoi ripetere i tuoi stessi messaggi."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Hai già ripetuto quel messaggio."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Ripetuti"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Ripetuti!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Risposte a %s"
@@ -4769,11 +5341,104 @@ msgstr ""
"[Scrivi qualche cosa](%%%%action.newnotice%%%%?status_textarea=%s) su questo "
"argomento!"
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Risposte a %1$s su %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Solo gli utenti collegati possono ripetere i messaggi."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Non hai ancora registrato alcuna applicazione."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Carica file"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Il file caricato eccede la direttiva upload_max_filesize in php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Il file caricato eccede la direttiva MAX_FILE_SIZE specificata nel modulo "
+"HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Il file caricato è stato caricato solo parzialmente."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Manca una directory temporanea."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Scrittura del file su disco non riuscita."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Caricamento del file bloccato dall'estensione."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Errore di sistema nel caricare il file."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Tutti i membri"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Carica file"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Non puoi revocare i ruoli degli utenti su questo sito."
@@ -4782,7 +5447,7 @@ msgstr "Non puoi revocare i ruoli degli utenti su questo sito."
msgid "User doesn't have this role."
msgstr "L'utente non ricopre questo ruolo."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4824,85 +5489,87 @@ msgstr "Abilita il debug per le sessioni"
msgid "Save site settings"
msgstr "Salva impostazioni"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Devi eseguire l'accesso per visualizzare un'applicazione."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Profilo applicazione"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Icona"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nome"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organizzazione"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Descrizione"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistiche"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "creata da %1$s - %2$s accessi predefiniti - %3$d utenti"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Azioni applicazione"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Reimposta chiave e segreto"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Elimina"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Informazioni applicazione"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Chiave consumatore"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Segreto consumatore"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL token di richiesta"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL token di accesso"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "URL di autorizzazione"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4910,35 +5577,42 @@ msgstr ""
"Nota: sono supportate firme HMAC-SHA1, ma non è supportato il metodo di "
"firma di testo in chiaro."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Ripristinare la chiave e il segreto?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Messaggi preferiti di %1$s, pagina %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Impossibile recuperare i messaggi preferiti."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Feed dei preferiti di %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Feed dei preferiti di %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Feed dei preferiti di di %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4946,7 +5620,9 @@ msgstr ""
"Non hai ancora scelto alcun messaggio come preferito. Fai clic sul pulsate a "
"forma di cuore per salvare i messaggi e rileggerli in un altro momento."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4955,7 +5631,10 @@ msgstr ""
"%s non ha aggiunto alcun messaggio tra i suoi preferiti. Scrivi qualche cosa "
"di interessante in modo che lo inserisca tra i suoi preferiti! :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4965,7 +5644,8 @@ msgstr ""
"Perché non [crei un account](%%action.register%%) e aggiungi un messaggio "
"tra i tuoi preferiti!"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Questo è un modo per condividere ciò che ti piace."
@@ -4983,82 +5663,89 @@ msgid "%1$s group, page %2$d"
msgstr "Gruppi di %1$s, pagina %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Profilo del gruppo"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Nota"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Alias"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Azioni dei gruppi"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Feed dei messaggi per il gruppo %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Feed dei messaggi per il gruppo %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Feed dei messaggi per il gruppo %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF per il gruppo %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Membri"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(nessuno)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Tutti i membri"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Creato"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5068,7 +5755,7 @@ msgstr "Membri"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5087,7 +5774,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5100,30 +5787,30 @@ msgstr ""
"[StatusNet](http://status.net/)."
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Amministratori"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Nessun messaggio."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Solo mittente e destinatario possono leggere questo messaggio."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Messaggio a %1$s su %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Messaggio da %1$s su %2$s"
@@ -5139,7 +5826,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, pagina %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5389,74 +6076,76 @@ msgstr "Testo messaggio del sito (massimo 255 caratteri, HTML consentito)"
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Salva messaggio"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Impostazioni SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Puoi ricevere messaggi SMS attraverso l'email da %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "Il servizio SMS non è disponibile."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Indirizzo SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Numero di telefono attualmente confermato per gli SMS."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "In attesa della conferma per questo numero di telefono."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Codice di conferma"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Inserisci il codice che hai ricevuto sul tuo telefono."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Conferma"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Numero di telefono per SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Numero di telefono, senza punteggiatura o spazi, con il prefisso"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Preferenze dell'SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5465,32 +6154,32 @@ msgstr ""
"bollette da parte del mio operatore"
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Preferenze dell'SMS salvate."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Nessun numero di telefono."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Nessun operatore selezionato."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Quello è già il tuo numero di telefono."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Quel numero di telefono appartiene già a un altro utente."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5500,39 +6189,39 @@ msgstr ""
"usarlo."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Quello è il numero di conferma errato."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Conferma dell'SMS annullata."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Quello non è il tuo numero di telefono."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Il numero di telefono per SMS è stato rimosso."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Operatore telefonico"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Seleziona un operatore"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5542,8 +6231,9 @@ msgstr ""
"via email, ma non è elencato qui, scrivici a %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Nessun codice inserito"
#. TRANS: Menu item for site administration
@@ -5615,16 +6305,20 @@ msgstr "Non hai una abbonamento a quel profilo."
msgid "Could not save subscription."
msgstr "Impossibile salvare l'abbonamento."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Quest'azione accetta solo richieste POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
"Non è possibile abbonarsi a un profilo remoto OMB 0.1 con quest'azione."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Abbonati"
@@ -5656,7 +6350,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Queste sono le persone che seguono %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5667,7 +6361,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s non ha abbonati. Vuoi abbonarti tu?"
@@ -5677,7 +6371,7 @@ msgstr "%s non ha abbonati. Vuoi abbonarti tu?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5710,7 +6404,7 @@ msgstr "Queste sono le persone seguite da %s."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5729,23 +6423,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s non sta seguendo nessuno."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Feed dei messaggi per %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5778,12 +6473,15 @@ msgstr "Nessun argomento ID."
msgid "Tag %s"
msgstr "Etichetta %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Profilo utente"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Fotografia"
@@ -5799,6 +6497,11 @@ msgstr ""
"Etichette per questo utente (lettere, numeri, -, . e _), separate da virgole "
"o spazi"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Etichetta non valida: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5806,10 +6509,6 @@ msgstr ""
"Puoi etichettare sole le persone di cui hai un abbonamento o che sono "
"abbonate a te."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Impossibile salvare le etichette."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5820,6 +6519,7 @@ msgstr ""
msgid "No such tag."
msgstr "Nessuna etichetta."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Non hai bloccato quell'utente."
@@ -5840,7 +6540,7 @@ msgstr "Nessun ID di profilo nella richiesta."
msgid "Unsubscribed"
msgstr "Abbonamento annullato"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5875,12 +6575,11 @@ msgstr ""
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Abbonamento predefinito non valido: \"%1$s\" non è un utente."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profilo"
@@ -5937,54 +6636,70 @@ msgstr "Indica se consentire agli utenti di invitarne di nuovi"
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "Salva impostazioni utente"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autorizza abbonamento"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai "
"messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Rifiuta\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licenza"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Accetta"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Abbonati a questo utente"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Rifiuta"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Rifiuta questo abbonamento"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Nessuna richiesta di autorizzazione!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Abbonamento autorizzato"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5994,11 +6709,12 @@ msgstr ""
"richiamo. Controlla le istruzioni del sito per i dettagli su come "
"autorizzare l'abbonamento. Il tuo token per l'abbonamento è:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Abbonamento rifiutato"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -6008,48 +6724,73 @@ msgstr ""
"richiamo. Controlla le istruzioni del sito per i dettagli su come rifiutare "
"completamente l'abbonamento."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "URL \"%s\" dell'ascoltatore non trovato qui."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "L'URI \"%s\" di colui che si ascolta è troppo lungo."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "L'URI \"%s\" di colui che si ascolta è un utente locale."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "L'URL \"%s\" del profilo è per un utente locale."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"La licenza \"%1$s\" dello stream di chi ascolti non è compatibile con la "
+"licenza \"%2$s\" di questo sito."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "L'URL \"%s\" dell'immagine non è valido."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Impossibile leggere l'URL \"%s\" dell'immagine."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Tipo di immagine errata per l'URL \"%s\"."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Aspetto del profilo"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6057,7 +6798,7 @@ msgstr ""
"Personalizza l'aspetto del tuo profilo con un'immagine di sfondo e dei "
"colori personalizzati."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Gustati il tuo hotdog!"
@@ -6087,7 +6828,7 @@ msgstr "Prova a [cercare dei gruppi](%%action.groupsearch%%) e iscriviti."
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Messaggi da %1$s su %2$s!"
@@ -6148,7 +6889,7 @@ msgid "Plugins"
msgstr "Plugin"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Versione"
@@ -6157,32 +6898,32 @@ msgid "Author(s)"
msgstr "Autori"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Preferisci"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) ha aggiunto il tuo messaggio tra i suoi preferiti"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Impossibile elaborare l'indirizzo \"%s\""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Si è verificato qualche cosa di impossibile."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6199,7 +6940,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6210,7 +6951,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6220,7 +6961,7 @@ msgstr[1] ""
"Un file di questa dimensione supererebbe la tua quota mensile di %d byte."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Nome file non valido."
@@ -6278,7 +7019,7 @@ msgid "Could not create login token for %s"
msgstr "Impossibile creare il token di accesso per %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Non è stato trovato un nome di database o DNS."
@@ -6305,23 +7046,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Non c'è alcun profilo (%1$d) per il messaggio (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Errore del database nell'inserire un hashtag: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problema nel salvare il messaggio. Troppo lungo."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problema nel salvare il messaggio. Utente sconosciuto."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6329,7 +7070,7 @@ msgstr ""
"qualche minuto."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6338,43 +7079,43 @@ msgstr ""
"nuovo tra qualche minuto."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Ti è proibito inviare messaggi su questo sito."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problema nel salvare il messaggio."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
#, fuzzy
msgid "Bad type provided to saveKnownGroups."
msgstr "Fornito un tipo errato per saveKnownGroups"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problema nel salvare la casella della posta del gruppo."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Impossibile salvare le informazioni del gruppo locale."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6382,7 +7123,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
@@ -6390,7 +7131,7 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6462,35 +7203,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Benvenuti su %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Nessun utente singolo definito per la modalità single-user."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Impossibile creare il gruppo."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Impossibile impostare l'URI del gruppo."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Impossibile impostare la membership al gruppo."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Impossibile salvare le informazioni del gruppo locale."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Non puoi eliminare utenti."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6527,211 +7289,214 @@ msgid "Other"
msgstr "Altro"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Pagina senza nome"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Esplorazione sito primaria"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Profilo personale e attività degli amici"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Personale"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Modifica la tua email, immagine, password o il tuo profilo"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Account"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Connettiti con altri servizi"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Connetti"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Modifica la configurazione del sito"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Amministra"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Invita amici e colleghi a seguirti su %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Invita"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Termina la tua sessione sul sito"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Esci"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Crea un account"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registrati"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Accedi al sito"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Accedi"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Aiutami!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Aiuto"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Cerca persone o del testo"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Cerca"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Messaggio del sito"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Viste locali"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Pagina messaggio"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Esplorazione secondaria del sito"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Aiuto"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Informazioni"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "TOS"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Privacy"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Sorgenti"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Contatti"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Badge"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licenza del software StatusNet"
@@ -6739,7 +7504,7 @@ msgstr "Licenza del software StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6749,7 +7514,7 @@ msgstr ""
"(%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** è un servizio di microblog."
@@ -6758,7 +7523,7 @@ msgstr "**%%site.name%%** è un servizio di microblog."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6770,27 +7535,27 @@ msgstr ""
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licenza del contenuto del sito"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "I contenuti e i dati di %1$s sono privati e confidenziali."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
"I contenuti e i dati sono copyright di %1$s. Tutti i diritti riservati."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti "
@@ -6798,7 +7563,7 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
@@ -6806,19 +7571,19 @@ msgstr ""
"licenza %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paginazione"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Successivi"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Precedenti"
@@ -6827,10 +7592,80 @@ msgstr "Precedenti"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "Atteso un elemento root del feed, ma ricevuto un documento XML intero."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Lingua \"%s\" sconosciuta."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Fotografia"
+msgid "Cannot force remote user to subscribe."
+msgstr "Specifica il nome dell'utente a cui abbonarti."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Tipo di file sconosciuto"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Fai già parte di quel gruppo."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Trova contenuto dei messaggi"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Utente inesistente."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6902,7 +7737,7 @@ msgid "User configuration"
msgstr "Configurazione utente"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Utente"
@@ -6948,19 +7783,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Nessuna applicazione per quella chiave."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Token di accesso errato."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Nessun utente per quel token."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Impossibile autenticarti."
@@ -6983,28 +7822,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Impossibile inserire il messaggio."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Errore nel database nell'inserire l'applicazione utente OAuth."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Errore nel database nell'inserire l'applicazione utente OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Tentativo di revocare un token sconosciuto."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Eliminazione del token revocato non riuscita."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Icona per questa applicazione"
@@ -7116,17 +7959,24 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Revoca"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+#, fuzzy
+msgid "Author element must contain a name element."
msgstr "L'elemento author deve contenere un elemento name."
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Non eliminare il messaggio"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autore"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Provider"
@@ -7157,6 +8007,11 @@ msgstr "La modifica della password non è permessa"
msgid "Block"
msgstr "Blocca"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Blocca questo utente"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7271,7 +8126,7 @@ msgstr "Nome completo: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Posizione: %s"
@@ -7279,7 +8134,7 @@ msgstr "Posizione: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Pagina web: %s"
@@ -7553,20 +8408,20 @@ msgstr ""
"tracking - non ancora implementato\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Non è stato trovato alcun file di configurazione. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "I file di configurazione sono stati cercati in questi posti: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
"Potrebbe essere necessario lanciare il programma d'installazione per "
@@ -7574,7 +8429,7 @@ msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Vai al programma d'installazione."
@@ -7618,14 +8473,19 @@ msgstr "Applicazioni collegate autorizzate"
msgid "Database error"
msgstr "Errore del database"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Elimina questo utente"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Carica file"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7646,26 +8506,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Off"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Reimposta"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Modifica colori"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Usa predefiniti"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Ripristina i valori predefiniti"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Reimposta i valori predefiniti"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Salva aspetto"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Impossibile aggiornare l'aspetto."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Valori predefiniti ripristinati."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Impossibile revocare l'accesso per l'applicazione: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Togli questo messaggio dai preferiti"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Rimuovi preferito"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Rendi questo messaggio un preferito"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Preferisci"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7682,6 +8590,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Tutti i membri"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7716,34 +8637,34 @@ msgstr "Vai"
msgid "Grant this user the \"%s\" role"
msgstr "Concedi a questo utente il ruolo \"%s\""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
"1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL della pagina web, blog del gruppo o l'argomento"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Descrivi il gruppo o l'argomento"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Descrivi il gruppo o l'argomento in %d caratteri"
msgstr[1] "Descrivi il gruppo o l'argomento in %d caratteri"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "Dove è situato il gruppo, tipo \"città, regione, stato\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7850,40 +8771,41 @@ msgstr "Etichette nei messaggi del gruppo %s"
msgid "This page is not available in a media type you accept"
msgstr "Questa pagina non è disponibile in un tipo di supporto che tu accetti"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Formato file immagine non supportato."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Quel file è troppo grande. La dimensione massima è %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Caricamento parziale."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Errore di sistema nel caricare il file."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Non è un'immagine o il file è danneggiato."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Perso il nostro file."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Tipo di file sconosciuto"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7891,7 +8813,7 @@ msgstr[0] "MB"
msgstr[1] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7899,7 +8821,7 @@ msgstr[0] "kB"
msgstr[1] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7920,23 +8842,25 @@ msgstr "Sorgente casella in arrivo %d sconosciuta."
msgid "Leave"
msgstr "Lascia"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Accedi con nome utente e password"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Iscriviti per un nuovo account"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Conferma indirizzo email"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7968,14 +8892,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s sta ora seguendo i tuoi messaggi su %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7990,7 +8914,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -8017,14 +8941,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Biografia: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nuovo indirizzo email per inviare messaggi a %s"
@@ -8032,7 +8956,7 @@ msgstr "Nuovo indirizzo email per inviare messaggi a %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8055,19 +8979,19 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "stato di %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Conferma SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
@@ -8075,15 +8999,15 @@ msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "%s ti ha richiamato"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8112,7 +9036,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nuovo messaggio privato da %s"
@@ -8121,7 +9045,7 @@ msgstr "Nuovo messaggio privato da %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8156,7 +9080,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) ha aggiunto il tuo messaggio tra i suoi preferiti"
@@ -8166,7 +9090,7 @@ msgstr "%s (@%s) ha aggiunto il tuo messaggio tra i suoi preferiti"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8205,7 +9129,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8218,7 +9142,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) ti ha inviato un messaggio"
@@ -8229,7 +9153,7 @@ msgstr "%s (@%s) ti ha inviato un messaggio"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8279,11 +9203,11 @@ msgstr ""
"\n"
"P.S: puoi disabilitare le notifiche via email qui: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Solo l'utente può leggere la propria casella di posta."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8292,10 +9216,6 @@ msgstr ""
"iniziare una conversazione con altri utenti. Altre persone possono mandare "
"messaggi riservati solamente a te."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "via"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Impossibile analizzare il messaggio."
@@ -8323,40 +9243,6 @@ msgid "There was a database error while saving your file. Please try again."
msgstr ""
"Si è verificato un errore nel database nel salvare il file. Prova di nuovo."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Il file caricato eccede la direttiva upload_max_filesize in php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Il file caricato eccede la direttiva MAX_FILE_SIZE specificata nel modulo "
-"HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Il file caricato è stato caricato solo parzialmente."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Manca una directory temporanea."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Scrittura del file su disco non riuscita."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Caricamento del file bloccato dall'estensione."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8377,7 +9263,7 @@ msgstr "Impossibile determinare il tipo MIME del file."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8388,7 +9274,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "\"%s\" non è un tipo di file supportata su questo server."
@@ -8422,20 +9308,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Invia"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Messaggio"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "via"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Il soprannome deve essere composto solo da lettere minuscole e numeri, senza "
"spazi."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8451,11 +9346,11 @@ msgstr "Invia un messaggio"
msgid "What's up, %s?"
msgstr "Cosa succede, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Allega"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Allega un file"
@@ -8476,55 +9371,59 @@ msgstr ""
"previsto. Riprova più tardi."
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "E"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "O"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "presso"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "in una discussione"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Ripetuto da"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Rispondi a questo messaggio"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Rispondi"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Elimina questo messaggio"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Messaggio ripetuto"
@@ -8561,77 +9460,113 @@ msgstr "Messaggio duplicato."
msgid "Couldn't insert new subscription."
msgstr "Impossibile inserire un nuovo abbonamento."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Personale"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Risposte"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profilo"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Preferiti"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "In arrivo"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "I tuoi messaggi in arrivo"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Inviati"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "I tuoi messaggi inviati"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Etichette nei messaggi di %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Sconosciuto"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Abbonamenti"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Tutti gli abbonamenti"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Abbonati"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Tutti gli abbonati"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID utente"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Membro dal"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Gruppi"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Media giornaliera"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Tutti i gruppi"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Metodo non implementato"
@@ -8678,7 +9613,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Revoca il ruolo \"%s\" a questo utente"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Metodo delle API non trovato."
@@ -8769,6 +9704,10 @@ msgstr "Invita"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Invita amici e colleghi a seguirti su %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Abbonati a questo utente"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8886,64 +9825,81 @@ msgstr "Disabbonati"
msgid "User %1$s (%2$d) has no profile record."
msgstr "L'utente non ha un profilo."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Modifica immagine"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Azioni utente"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Eliminazione utente..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Modifica impostazioni del profilo"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Modifica"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Invia un messaggio diretto a questo utente"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Messaggio"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Modera"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Ruolo dell'utente"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Amministratore"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderatore"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Accesso non effettuato."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "pochi secondi fa"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "circa un minuto fa"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8951,12 +9907,12 @@ msgstr[0] "circa un minuto fa"
msgstr[1] "circa %d minuti fa"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "circa un'ora fa"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8964,12 +9920,12 @@ msgstr[0] "circa un'ora fa"
msgstr[1] "circa %d ore fa"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "circa un giorno fa"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8977,12 +9933,12 @@ msgstr[0] "circa un giorno fa"
msgstr[1] "circa %d giorni fa"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "circa un mese fa"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8990,18 +9946,13 @@ msgstr[0] "circa un mese fa"
msgstr[1] "circa %d mesi fa"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "circa un anno fa"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s non è un colore valido."
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s non è un colore valido. Usa 3 o 6 caratteri esadecimali."
@@ -9022,31 +9973,18 @@ msgstr[0] "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d."
msgstr[1] "Messaggio troppo lungo: massimo %1$d caratteri, inviati %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Dimensione non valida."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Nessun utente specificato: viene usato l'utente di backup."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, fuzzy, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "%d voci nel backup."
-msgstr[1] "%d voci nel backup."
diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po
index 2ebba88b18..445a05b253 100644
--- a/locale/ja/LC_MESSAGES/statusnet.po
+++ b/locale/ja/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Japanese (日本語)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Calamari
@@ -14,17 +14,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:00+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:36:59+0000\n"
"Language-Team: Japanese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ja\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -45,18 +45,19 @@ msgstr "登録"
#. TRANS: Checkbox instructions for admin setting "Private".
#: actions/accessadminpanel.php:155
msgid "Prohibit anonymous users (not logged in) from viewing site?"
-msgstr "匿名ユーザー(ログインしていません)がサイトを見るのを禁止しますか?"
+msgstr ""
+"匿名ユーザー(ログインしていないユーザー)がサイトを見るのを禁止しますか?"
#. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
#: actions/accessadminpanel.php:157
msgctxt "LABEL"
msgid "Private"
-msgstr "プライバシー"
+msgstr "プライベート"
#. TRANS: Checkbox instructions for admin setting "Invite only".
#: actions/accessadminpanel.php:164
msgid "Make registration invitation only."
-msgstr "招待のみ登録する"
+msgstr "招待のみ登録させる。"
#. TRANS: Checkbox label for configuring site as invite only.
#: actions/accessadminpanel.php:166
@@ -79,8 +80,9 @@ msgid "Save access settings"
msgstr "アクセス設定の保存"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -90,14 +92,13 @@ msgstr "アクセス設定の保存"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
-#, fuzzy
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "保存"
@@ -105,9 +106,9 @@ msgstr "保存"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
-msgstr "そのようなタグはありません。"
+msgstr "そのようなページはありません。"
#. TRANS: Client error when user not found for an action.
#. TRANS: Client error when user not found for an rss related action.
@@ -115,6 +116,8 @@ msgstr "そのようなタグはありません。"
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -130,13 +133,23 @@ msgstr "そのようなタグはありません。"
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -144,15 +157,15 @@ msgstr "そのようなタグはありません。"
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "そのようなユーザはいません。"
@@ -160,43 +173,44 @@ msgstr "そのようなユーザはいません。"
#: actions/all.php:91
#, php-format
msgid "%1$s and friends, page %2$d"
-msgstr "%1$s と友人、ページ %2$d"
+msgstr "%1$sとその友人、%2$dページ目"
#. TRANS: Page title. %s is user nickname
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
-msgstr "%s と友人"
+msgstr "%sとその友人"
#. TRANS: %s is user nickname.
#: actions/all.php:108
#, php-format
msgid "Feed for friends of %s (RSS 1.0)"
-msgstr "%s の友人のフィード (RSS 1.0)"
+msgstr "%sの友人のフィード(RSS 1.0)"
#. TRANS: %s is user nickname.
#: actions/all.php:117
#, php-format
msgid "Feed for friends of %s (RSS 2.0)"
-msgstr "%s の友人のフィード (RSS 2.0)"
+msgstr "%sの友人のフィード(RSS 2.0)"
#. TRANS: %s is user nickname.
#: actions/all.php:126
#, php-format
msgid "Feed for friends of %s (Atom)"
-msgstr "%s の友人のフィード (Atom)"
+msgstr "%sの友人のフィード(Atom)"
#. TRANS: Empty list message. %s is a user nickname.
#: actions/all.php:139
#, php-format
msgid ""
"This is the timeline for %s and friends but no one has posted anything yet."
-msgstr "これは %s と友人のタイムラインです。まだ誰も投稿していません。"
+msgstr "これは%sとその友人のタイムラインですが、まだ誰も投稿していません。"
#. TRANS: Encouragement displayed on logged in user's empty timeline.
#. TRANS: This message contains Markdown links. Keep "](" together.
@@ -281,7 +295,7 @@ msgstr "%2$s に %1$s と友人からの更新があります!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -316,7 +330,21 @@ msgstr ""
"sms, im, none"
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "ユーザを更新できませんでした。"
@@ -326,18 +354,23 @@ msgstr "ユーザを更新できませんでした。"
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "ユーザはプロフィールをもっていません。"
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "プロフィールを保存できませんでした。"
@@ -347,8 +380,8 @@ msgstr "プロフィールを保存できませんでした。"
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -365,13 +398,14 @@ msgstr[0] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "あなたのデザイン設定を保存できません。"
@@ -379,48 +413,59 @@ msgstr "あなたのデザイン設定を保存できません。"
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "デザインを更新できませんでした。"
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s のタイムライン"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s フォローしている"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "お気に入り"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "%s グループメンバー"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "自分自身をブロックすることはできません!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "ユーザのブロックに失敗しました。"
@@ -475,7 +520,8 @@ msgstr "受け取り手のユーザが見つかりません。"
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "友人でないユーザにダイレクトメッセージを送ることはできません。"
#. TRANS: Client error displayed trying to direct message self (403).
@@ -500,8 +546,9 @@ msgid "This status is already a favorite."
msgstr "このステータスはすでにお気に入りです。"
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "お気に入りを作成できません。"
@@ -511,7 +558,8 @@ msgid "That status is not a favorite."
msgstr "そのステータスはお気に入りではありません。"
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "お気に入りを取り消すことができません。"
@@ -558,9 +606,9 @@ msgstr "ターゲットユーザーを見つけられません。"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。"
@@ -568,21 +616,22 @@ msgstr "そのニックネームは既に使用されています。他のもの
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "有効なニックネームではありません。"
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "ホームページのURLが不適切です。"
@@ -590,9 +639,9 @@ msgstr "ホームページのURLが不適切です。"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "フルネームが長すぎます。(255字まで)"
@@ -600,14 +649,15 @@ msgstr "フルネームが長すぎます。(255字まで)"
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -617,9 +667,9 @@ msgstr[0] "記述が長すぎます。(最長%d字)"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "場所が長すぎます。(255字まで)"
@@ -630,8 +680,8 @@ msgstr "場所が長すぎます。(255字まで)"
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -647,18 +697,16 @@ msgstr "不正な別名: \"%s\""
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "別名 \"%s\" は既に使用されています。他のものを試してみて下さい。"
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "別名はニックネームと同じではいけません。"
@@ -669,28 +717,32 @@ msgstr "別名はニックネームと同じではいけません。"
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "見つかりません。"
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "すでにこのグループのメンバーです。"
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "管理者によってこのグループからブロックされています。"
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "ユーザ %1$s はグループ %2$s に参加できません。"
@@ -702,9 +754,11 @@ msgstr "このグループのメンバーではありません。"
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -742,7 +796,7 @@ msgid "Upload failed."
msgstr "ファイルアップロード"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "不正なログイントークンが指定されています。"
@@ -765,20 +819,25 @@ msgid "Request token already authorized."
msgstr "認証されていません。"
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "あなたのセッショントークンに問題がありました。再度お試しください。"
@@ -796,18 +855,22 @@ msgstr "OAuth アプリケーションユーザの追加時DBエラー。"
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "予期せぬフォーム送信です。"
@@ -852,29 +915,31 @@ msgstr "アカウント"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "ニックネーム"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "パスワード"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
#, fuzzy
msgctxt "BUTTON"
@@ -949,6 +1014,7 @@ msgstr "他のユーザのステータスを消すことはできません。"
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -968,39 +1034,52 @@ msgstr "あなたのつぶやきを繰り返せません。"
msgid "Already repeated that notice."
msgstr "すでにつぶやきを繰り返しています。"
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "API メソッドが見つかりません。"
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "サポート外の形式です。"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "ステータスを削除しました。"
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "そのIDでのステータスはありません。"
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "このつぶやきを削除できません。"
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "つぶやき削除"
@@ -1056,7 +1135,7 @@ msgstr "%1$s は %2$s でお気に入りを更新しました / %2$s。"
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "グループを更新できません。"
@@ -1077,13 +1156,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%2$s からアップデートに答える %1$s アップデート"
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s のパブリックタイムライン"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "皆からの %s アップデート!"
@@ -1132,204 +1212,271 @@ msgstr "ユーザだけがかれら自身のメールボックスを読むこと
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "つぶやきの内容を探す"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "その ID によるつぶやきは存在していません"
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API メソッドが工事中です。"
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "API メソッドが見つかりません。"
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "そのようなファイルはありません。"
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "サブスクリプションを追加できません"
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "つぶやきの内容を探す"
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "不明"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "お気に入りに加える"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
#, fuzzy
msgid "No such profile."
msgstr "そのようなファイルはありません。"
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "%2$s に %1$s と友人からの更新があります!"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+#, fuzzy
+msgid "Cannot add someone else's subscription."
+msgstr "サブスクリプションを追加できません"
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "つぶやきの内容を探す"
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+#, fuzzy
+msgid "Can only fave notices."
+msgstr "つぶやきの内容を探す"
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+#, fuzzy
+msgid "Unknown note."
+msgstr "不明"
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+#, fuzzy
+msgid "Already a favorite."
+msgstr "お気に入りに加える"
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s グループメンバー"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "グループ %s はメンバー"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "サブスクリプションを追加できません"
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "つぶやきの内容を探す"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "不明"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "全てのメンバー"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "そのようなファイルはありません。"
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "お気に入りを取り消すことができません。"
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "そのようなグループはありません。"
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "全てのメンバー"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "API メソッドが見つかりません。"
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "そのようなファイルはありません。"
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "あなたはそのプロファイルにフォローされていません。"
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "フォローを保存できません。"
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "そのようなファイルはありません。"
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "あなたはそのプロファイルにフォローされていません。"
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "フォローを保存できません。"
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "人々は %s をフォローしました。"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "不明なファイルタイプ"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "すでにフォローしています!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1338,11 +1485,15 @@ msgstr "そのような添付はありません。"
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "ニックネームがありません。"
@@ -1359,7 +1510,7 @@ msgstr "不正なサイズ。"
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "アバター"
@@ -1372,42 +1523,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "自分のアバターをアップロードできます。最大サイズは%sです。"
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "合っているプロフィールのないユーザ"
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "アバター設定"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "オリジナル"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "プレビュー"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "削除"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1426,31 +1587,72 @@ msgstr "切り取り"
msgid "No file uploaded."
msgstr "プロファイル記述がありません。"
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "あなたのアバターとなるイメージを正方形で指定"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "ファイルデータを紛失しました。"
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "アバターが更新されました。"
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "アバターの更新に失敗しました。"
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "アバターが削除されました。"
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "ログインユーザだけがつぶやきを繰り返せます。"
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "バックグラウンド"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1458,7 +1660,8 @@ msgstr "そのユーザはすでにブロック済みです。"
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "ユーザをブロック"
@@ -1482,15 +1685,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "ノート"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "このユーザをアンブロックする"
#. TRANS: Button label on the user block form.
@@ -1501,15 +1704,15 @@ msgstr "このユーザをアンブロックする"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "はい"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "このユーザをブロックする"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1517,31 +1720,6 @@ msgstr "このユーザをブロックする"
msgid "Failed to save block information."
msgstr "ブロック情報の保存に失敗しました。"
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "そのようなグループはありません。"
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1612,23 +1790,6 @@ msgstr "不明なアドレスタイプ %s"
msgid "That address has already been confirmed."
msgstr "そのアドレスは既に承認されています。"
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "ユーザを更新できません"
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1654,11 +1815,85 @@ msgid "Conversation"
msgstr "会話"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "つぶやき"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "ログインユーザだけがつぶやきを繰り返せます。"
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "ユーザを削除できません"
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "アバターが削除されました。"
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "新しいグループを作成"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "パスワード確認"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "ユーザを削除できません"
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "ユーザを削除できません"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1672,14 +1907,14 @@ msgstr "アプリケーションが見つかりません。"
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "このアプリケーションのオーナーではありません。"
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "あなたのセッショントークンに関する問題がありました。"
@@ -1702,12 +1937,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "このアプリケーションを削除しないでください"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "このアプリケーションを削除"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1717,8 +1954,10 @@ msgid "You must be logged in to delete a group."
msgstr "グループから離れるにはログインしていなければなりません。"
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
#, fuzzy
msgid "No nickname or ID."
msgstr "ニックネームがありません。"
@@ -1764,25 +2003,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "このつぶやきを削除できません。"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "このユーザを削除"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "ログインしていません。"
@@ -1809,27 +2054,40 @@ msgstr "本当にこのつぶやきを削除しますか?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "このつぶやきを削除できません。"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "このつぶやきを削除"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "ユーザを削除できません"
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "ローカルユーザのみ削除できます。"
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "ユーザ削除"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "ユーザ削除"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1837,81 +2095,105 @@ msgstr ""
"あなたは本当にこのユーザを削除したいですか? これはバックアップなしでデータ"
"ベースからユーザに関するすべてのデータをクリアします。"
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "このつぶやきを削除できません。"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "このユーザを削除"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "デザイン"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "不正なロゴ URL"
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "不正なロゴ URL"
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "IM が利用不可。"
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "ロゴの変更"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "サイトロゴ"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "サイトロゴ"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "テーマ変更"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "サイトテーマ"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "サイトのテーマ"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
#, fuzzy
msgid "Custom theme"
msgstr "サイトテーマ"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "バックグラウンドイメージの変更"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "バックグラウンド"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1921,98 +2203,108 @@ msgstr ""
"イズは %1$s。"
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "オン"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "オフ"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "バックグラウンドイメージのオンまたはオフ。"
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "タイルバックグラウンドイメージ"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "色の変更"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "内容"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "サイドバー"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "テキスト"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "リンク"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr ""
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "デフォルトを使用"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "デフォルトデザインに戻す。"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "デフォルトへリセットする"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "保存"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "デザインの保存"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "このつぶやきはお気に入りではありません!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "お気に入りに加える"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "そのようなドキュメントはありません。\"%s\""
#. TRANS: Title for "Edit application" form.
@@ -2027,7 +2319,7 @@ msgid "You must be logged in to edit an application."
msgstr "アプリケーションを編集するにはログインしていなければなりません。"
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "そのようなアプリケーションはありません。"
@@ -2037,63 +2329,73 @@ msgid "Use this form to edit your application."
msgstr "このフォームを使ってアプリケーションを編集します。"
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "名前は必須です。"
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "名前が長すぎます。(最大255字まで)"
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。"
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "概要が必要です。"
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "ソースURLが長すぎます。"
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "ソースURLが不正です。"
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "組織が必要です。"
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "組織が長すぎます。(最大255字)"
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "組織のホームページが必要です。"
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "コールバックが長すぎます。"
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "コールバックURLが不正です。"
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "アプリケーションを更新できません。"
@@ -2104,14 +2406,17 @@ msgid "Edit %s group"
msgstr "%s グループを編集"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "グループを作るにはログインしていなければなりません。"
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "グループを編集するには管理者である必要があります。"
@@ -2122,63 +2427,65 @@ msgstr "このフォームを使ってグループを編集します。"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "不正な別名: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "グループを更新できません。"
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "別名を作成できません。"
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "オプションが保存されました。"
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "メール設定"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "%%site.name%% からのメールを管理。"
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "メールアドレス"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "現在確認されているメールアドレス。"
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "回復"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2191,15 +2498,15 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "メールアドレス、\"UserName@example.org\" のような"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
#, fuzzy
msgctxt "BUTTON"
msgid "Add"
@@ -2207,29 +2514,29 @@ msgstr "追加"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "入ってくるメール"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "メールでつぶやきを投稿したい。"
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "新しいつぶやき投稿にこのアドレスへメールする"
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "投稿のための新しいEメールアドレスを作ります; 古い方を取り消します。"
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2237,92 +2544,94 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
#, fuzzy
msgctxt "BUTTON"
msgid "New"
msgstr "New"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "メールアドレス"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "メールで新規フォローの通知を私に送ってください。"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"だれかがお気に入りとして私のつぶやきを加えたら、メールを私に送ってください。"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr ""
"だれかがプライベート・メッセージを私に送るときには、メールを私に送ってくださ"
"い。"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "だれかが\"@-返信\"を私を送るときには、メールを私に送ってください、"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "友達が私に合図とメールを送ることを許可する。"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "私のメールアドレスのためにMicroIDを発行してください。"
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
#, fuzzy
msgid "Email preferences saved."
msgstr "デザイン設定が保存されました。"
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "メールアドレスがありません。"
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "そのメールアドレスを正規化できません"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "有効なメールアドレスではありません。"
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "これはすでにあなたのメールアドレスです。"
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "このメールアドレスは既に他の人が使っています。"
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "承認コードを追加できません"
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2332,90 +2641,106 @@ msgstr ""
"ださい。"
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "承認待ちのものはありません。"
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
#, fuzzy
msgid "That is the wrong email address."
msgstr "その IM アドレスは不正です。"
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "メール承認を削除できません"
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "承認待ちのものはありません。"
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "これはあなたのメールアドレスではありません。"
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "入ってくるメールアドレスは削除されました。"
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "入ってくるメールアドレスではありません。"
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "ユーザレコードを更新できません。"
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "入ってくるメールアドレスは削除されました。"
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "新しい入ってくるメールアドレスが追加されました。"
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "このつぶやきはすでにお気に入りです!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "お気に入りをやめる"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "人気のつぶやき"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "人気のつぶやき、ページ %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "現在サイトで最も人気のつぶやき。"
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"お気に入りのつぶやきがページに表示されます、しかしまだお気に入りがありませ"
"ん。"
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2424,7 +2749,9 @@ msgstr ""
"あなたの好きなつぶやきを、お気に入りボタンをクリックしてあなたのお気に入りに"
"加える最初になってください。"
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2433,147 +2760,191 @@ msgstr ""
"なぜ [アカウント登録](%%action.register%%) しないのですか、そして、あなたのお"
"気に入りにつぶやきを加える最初になりましょう!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%s のお気に入りのつぶやき"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "%1$s による %2$s 上のお気に入りを更新!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "フィーチャーされたユーザ"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "フィーチャーされたユーザ、ページ %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "%s 上の優れたユーザの集まり"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "つぶやきIDがありません。"
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "つぶやきがありません。"
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "そのような添付はありません。"
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "アップロードされた添付はありません。"
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "想定外のレスポンスです!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "存在しないように聴かれているユーザ。"
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "ローカルサブスクリプションを使用可能です!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "このユーザはフォローをブロックされています。"
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "認証されていません。"
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "リクエストトークンをアクセストークンに変換できません"
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
"リモートサービスは、不明なバージョンの OMB プロトコルを使用しています。"
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
#, fuzzy
msgid "Error updating remote profile."
msgstr "リモートプロファイル更新エラー"
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "そのようなファイルはありません。"
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "ファイルを読み込めません。"
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
#, fuzzy
msgid "Invalid role."
msgstr "不正なトークン。"
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
#, fuzzy
msgid "You cannot grant user roles on this site."
msgstr "あなたはこのサイトのサンドボックスユーザができません。"
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
#, fuzzy
msgid "User already has this role."
msgstr "ユーザは既に黙っています。"
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "プロファイル記述がありません。"
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "そのIDのプロファイルがありません。"
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "グループ記述がありません。"
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "管理者だけがグループメンバーをブロックできます。"
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "ユーザはすでにグループからブロックされています。"
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "ユーザはグループのメンバーではありません。"
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "グループからユーザをブロック"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2584,32 +2955,40 @@ msgstr ""
"除される、投稿できない、グループをフォローできなくなります。"
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "このグループからこのユーザをブロックしない"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "このグループからこのユーザをブロック"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "グループからのブロックユーザのデータベースエラー"
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "ID がありません。"
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "グループを編集するにはログインしていなければなりません。"
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "グループデザイン"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2617,22 +2996,26 @@ msgstr ""
"あなたが選んだパレットの色とバックグラウンドイメージであなたのグループをカス"
"タマイズしてください。"
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "あなたのデザインを更新できません。"
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "あなたのデザイン設定を保存できません。"
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "デザイン設定が保存されました。"
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "グループロゴ"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2640,100 +3023,116 @@ msgstr ""
"あなたのグループ用にロゴイメージをアップロードできます。最大ファイルサイズは "
"%s。"
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "アップロード"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "切り取り"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "ロゴとなるイメージの正方形を選択。"
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "ロゴが更新されました。"
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "ロゴの更新に失敗しました。"
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s グループメンバー"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s グループメンバー、ページ %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "このグループのユーザのリスト。"
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "管理者"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "ユーザをグループの管理者にする"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "%2$s 上の %1$s のメンバーから更新する"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "グループ"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "グループ、ページ %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"%%%%site.name%%%% グループは、あなたと同様の関心事をもつ人々を見つけて話をす"
"ることができます。グループに入った後、あなたは他のメンバーに \"!groupname\" "
@@ -2741,11 +3140,13 @@ msgstr ""
"うか[探してみる](%%%%action.groupsearch%%%%)か、あなた自身で[始めてください!]"
"(%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "新しいグループを作成"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2754,25 +3155,33 @@ msgstr ""
"%%site.name%% のグループを、名前、場所、記述から検索。検索語はスペース区切"
"り。3字以上。"
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "グループの検索"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "結果なし。"
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"もし、あなたが探しているグループが見つからないとき、あなたは[それを作成](%%"
"action.newgroup%%)できます。"
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2782,137 +3191,147 @@ msgstr ""
"%%) しないのか!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "管理者だけがグループメンバーをアンブロックできます。"
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "ユーザはグループからブロックされていません。"
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "ブロックの削除エラー"
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM設定"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能で"
"す。下のアドレスを設定して下さい。"
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM が利用不可。"
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IMアドレス"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "確認された最新の Jabber/GTakk アドレス"
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"このアドレスは承認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれ"
"たメッセージを確認してください。(%s を友人リストに追加しましたか?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"\"UserName@example.org\" といった Jabber または GTalk のアドレス。まず、%s を"
"IMクライアントやGTalkに追加して下さい。"
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "設定が保存されました。"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Jabber/GTalk で私に通知を送って下さい。"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Jabber/GTalkを通して回答を、私がフォローされていない人々から私に送ってくださ"
"い。"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "私のJabber/GTalkアドレスのためにMicroIDを発行してください。"
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "設定が保存されました。"
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Jabbar ID はありません。"
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "その Jabbar ID を正規化できません"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "有効な Jabber ID ではありません。"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "その Jabber ID は既にあなたのものです。"
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID jは既に別のユーザが使用しています。"
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2921,75 +3340,80 @@ msgstr ""
"承認コードを入力された IM アドレスに送信しました。あなたにメッセージを送れる"
"ようにするには%sを承認してください。"
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "その IM アドレスは不正です。"
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
#, fuzzy
-msgid "Couldn't delete IM confirmation."
+msgid "Could not delete IM confirmation."
msgstr "メール承認を削除できません"
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "確認コードがありません。"
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "その Jabber ID はあなたのものではありません。"
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "入ってくるメールアドレスは削除されました。"
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "%1$s の受信箱 - ページ %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "%s の受信箱"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"これはあなたの受信箱です、やってきたプライベートメッセージをリストします。"
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "招待は無効にされました。"
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "グループを編集するにはログインしていなければなりません。"
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "不正なメールアドレス:%s'"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "招待を送りました。"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "新しいユーザを招待"
@@ -2997,7 +3421,7 @@ msgstr "新しいユーザを招待"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3005,7 +3429,7 @@ msgstr[0] "すでにこれらのユーザをフォローしています:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3014,7 +3438,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3026,7 +3450,7 @@ msgstr[0] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3034,7 +3458,7 @@ msgstr[0] "招待を以下の人々に送信しました:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3043,34 +3467,35 @@ msgstr ""
"しょう。 コミュニティを広げてくださってありがとうございます!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
"友人や同僚がこのサービスを利用するようこのフォームを使用して誘ってください。"
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "メールアドレス"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "招待する友人のアドレス (一行に一つ)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "パーソナルメッセージ"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "任意に招待にパーソナルメッセージを加えてください。"
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
#, fuzzy
msgctxt "BUTTON"
msgid "Send"
@@ -3079,7 +3504,7 @@ msgstr "投稿"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s があなたを %2$s へ招待しました"
@@ -3089,7 +3514,7 @@ msgstr "%1$s があなたを %2$s へ招待しました"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3146,167 +3571,183 @@ msgstr ""
"\n"
"%2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "グループに入るためにはログインしなければなりません。"
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s はグループ %2$s に参加しました"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "グループから離れるにはログインしていなければなりません。"
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "あなたはそのグループのメンバーではありません。"
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s はグループ %2$s に残りました。"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "ライセンス"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "このStatusNetサイトのライセンス"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "不正なウェルカムテキスト。最大長は255字です。"
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "プライベート"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "保存"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "既にログインしています。"
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "ユーザ名またはパスワードが間違っています。"
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "ユーザ設定エラー。 あなたはたぶん承認されていません。"
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "ログイン"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "サイトへログイン"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "ログイン状態を保持"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "以降は自動的にログインする。共用コンピューターでは避けましょう!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "パスワードを紛失、忘れた?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3314,12 +3755,12 @@ msgstr ""
"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し"
"て下さい。"
-#: actions/login.php:292
+#: actions/login.php:281
#, fuzzy
msgid "Login with your username and password."
msgstr "ユーザ名とパスワードでログイン"
-#: actions/login.php:295
+#: actions/login.php:284
#, fuzzy, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3356,19 +3797,22 @@ msgid "New application"
msgstr "新しいアプリケーション"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "アプリケーションを登録するにはログインしていなければなりません。"
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "このフォームを使って新しいアプリケーションを登録します。"
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "ソースURLが必要です。"
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "アプリケーションを作成できません。"
@@ -3377,11 +3821,23 @@ msgstr "アプリケーションを作成できません。"
msgid "New group"
msgstr "新しいグループ"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "このグループのメンバーではありません。"
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "このフォームを使って新しいグループを作成します。"
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "別名はニックネームと同じではいけません。"
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "新しいメッセージ"
@@ -3432,7 +3888,9 @@ msgstr "新しいつぶやき"
msgid "Notice posted"
msgstr "つぶやきを投稿しました"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3440,16 +3898,21 @@ msgid ""
msgstr ""
"%%site.name%% のつぶやきを内容から検索。検索語はスペース区切り。3字以上"
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "テキスト検索"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "\"%1$s\" の %2$s 上の検索結果"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3458,7 +3921,9 @@ msgstr ""
"最初の [このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s) をして"
"ください!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3467,14 +3932,17 @@ msgstr ""
"なぜ [アカウント登録](%%%%action.register%%%%) しないのですか、そして最初の"
"[このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s)してください!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "%s で更新"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "\"%2$s\" 上の検索語 \"$1$s\" に一致するすべての更新"
#: actions/nudge.php:85
@@ -3516,30 +3984,30 @@ msgid "You have not registered any applications yet."
msgstr "あなたはまだなんのアプリケーションも登録していません。"
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "接続されたアプリケーション"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "あなたはそのアプリケーションのユーザではありません。"
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "アプリケーションのための取消しアクセスができません: "
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3547,7 +4015,7 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
"あなたは、どんなアプリケーションもあなたのアカウントを使用するのを認可してい"
@@ -3556,13 +4024,23 @@ msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "API メソッドが見つかりません。"
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "API メソッドが見つかりません。"
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "ユーザはプロフィールをもっていません。"
@@ -3572,6 +4050,16 @@ msgstr "ユーザはプロフィールをもっていません。"
msgid "%1$s's status on %2$s"
msgstr "%2$s における %1$s のステータス"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "受け取り手のユーザが見つかりません。"
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3585,16 +4073,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "サポートされていないデータ形式。"
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "ピープル検索"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "つぶやき検索"
@@ -3608,69 +4097,80 @@ msgid "Manage various other options."
msgstr "他のオプションを管理。"
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr "(フリーサービス)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "URLを短くします"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "使用する自動短縮サービス。"
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "プロファイルデザインを表示"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "プロファイルデザインの表示または非表示"
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "URL 短縮サービスが長すぎます。(最大50字)"
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "ユーザIDの記述がありません。"
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "ログイントークンの記述がありません。"
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "ログイントークンが要求されていません。"
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "不正なログイントークンが指定されています。"
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "ログイントークンが期限切れです・"
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "%1$s の送信箱 - ページ %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "%s の送信箱"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"これはあなたの送信箱です、あなたが送ったプライベート・メッセージをリストしま"
@@ -3684,7 +4184,8 @@ msgstr "パスワードの変更"
msgid "Change your password."
msgstr "パスワードを変更します。"
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "パスワード変更"
@@ -3692,48 +4193,50 @@ msgstr "パスワード変更"
msgid "Old password"
msgstr "古いパスワード"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "新しいパスワード"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6文字以上"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "パスワード確認"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "上と同じパスワード"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "変更"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "パスワードは6文字以上にする必要があります。"
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "パスワードが一致しません。"
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "古いパスワードが間違っています。"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "ユーザ保存エラー; 不正なユーザ"
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "新しいパスワードを保存できません。"
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "パスワードが保存されました。"
@@ -3951,7 +4454,7 @@ msgstr "ロケールへのディレクトリパス"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "添付"
@@ -4025,7 +4528,9 @@ msgstr "ダイレクト SSL リクエストを向けるサーバ"
msgid "Save paths"
msgstr "保存パス"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4034,7 +4539,8 @@ msgstr ""
"%%site.name%% の人を名前、場所、興味から検索。検索語はスペース区切り。3字以"
"上。"
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "ピープルサーチ"
@@ -4059,12 +4565,12 @@ msgstr ""
"つぶやきライセンス ‘%1$s’ はサイトライセンス ‘%2$s’ と互換性がありません。"
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "プロファイル設定"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4072,33 +4578,34 @@ msgstr ""
"す。"
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "プロファイル情報"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "フルネーム"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "ホームページ"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL"
@@ -4106,137 +4613,148 @@ msgstr "ホームページ、ブログ、プロファイル、その他サイト
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
msgstr[0] "%d字以内で自分自身と自分の興味について書いてください"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "自分自身と自分の興味について書いてください"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "自己紹介"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "場所"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "つぶやきを投稿するときには私の現在の場所を共有してください"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "タグ"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"自分自身についてのタグ (アルファベット、数字、-、.、_)、カンマまたは空白区切"
"りで"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "言語"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "ご希望の言語"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "タイムゾーン"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "普段のタイムゾーンはどれですか?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr "自分をフォローしている者を自動的にフォローする (BOTに最適)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
msgstr[0] "自己紹介が長すぎます (最長%d文字)。"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "タイムゾーンが選ばれていません。"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "言語が長すぎます。(最大50字)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "不正なタグ: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "自動フォローのためのユーザを更新できませんでした。"
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "場所情報を保存できません。"
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "プロファイルを保存できません"
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "タグを保存できません。"
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "タグをを保存できません。"
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "設定が保存されました。"
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "新しいグループを作成"
+
#: actions/public.php:83
#, fuzzy, php-format
msgid "Beyond the page limit (%s)."
@@ -4313,6 +4831,12 @@ msgstr ""
"net/)を基にした[マイクロブロギング](http://en.wikipedia.org/wiki/Micro-"
"blogging) サービス。"
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "皆からの %s アップデート!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4358,35 +4882,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "タグクラウド"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "既にログイン済みです。"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "そのような回復コードはありません。"
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "回復コードではありません。"
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "不明なユーザのための回復コード。"
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "確認コードにエラーがあります。"
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "確認コードが古すぎます。もう一度やり直してください。"
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "確認されたメールアドレスでユーザを更新できません。"
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4394,195 +4926,224 @@ msgstr ""
"あなたのパスワードを忘れるか紛失したなら、あなたはアカウントに格納したメール"
"アドレスに新しいものを送らせることができます。"
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "あなたは特定されました。 以下の新しいパスワードを入力してください。 "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "あなたは特定されました。 以下の新しいパスワードを入力してください。"
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "パスワード回復"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "ニックネームまたはメールアドレス"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "このサーバでのニックネーム、または登録したメールアドレス。"
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "回復"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "回復"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "パスワードをリセット"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "パスワードを回復"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "パスワード回復がリクエストされました"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "パスワードが保存されました。"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "不明なアクション"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6文字以上。忘れないでください!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "リセット"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "ニックネームかメールアドレスを入力してください。"
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "そのメールアドレスかユーザ名をもっているユーザがありません。"
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "そのユーザにはメールアドレスの登録がありません。"
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "アドレス確認保存エラー"
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
msgstr "登録されたメールアドレスにパスワードの回復方法をお送りしました。"
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "予期せぬパスワードのリセットです。"
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "パスワードは6字以上でなければいけません。"
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "パスワードと確認が一致しません。"
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "ユーザ設定エラー"
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "新しいパスワードの保存に成功しました。ログインしています。"
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "すみません、招待された人々だけが登録できます。"
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "すみません、不正な招待コード。"
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "登録成功"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "登録"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "登録は許可されていません。"
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "ライセンスに同意頂けない場合は登録できません。"
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "メールアドレスが既に存在します。"
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "不正なユーザ名またはパスワード。"
-#: actions/register.php:351
+#: actions/register.php:340
#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"このフォームで新しいアカウントを作成できます。 次につぶやきを投稿して、友人や"
"同僚にリンクできます。 "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く。必須です。"
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6文字以上。必須です。"
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "上のパスワードと同じです。 必須。"
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "メール"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "更新、アナウンス、パスワードリカバリーでのみ使用されます。"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "長い名前"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "自分のいる場所。例:「都市, 都道府県 (または地域), 国」"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, fuzzy, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr "個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号"
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4615,7 +5176,7 @@ msgstr ""
"参加してくださってありがとうございます。私たちはあなたがこのサービスを楽しん"
"で使ってくれることを願っています。"
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4623,7 +5184,7 @@ msgstr ""
"(メールアドレスを承認する方法を読んで、すぐにメールによるメッセージを受け取る"
"ようにしてください)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4635,80 +5196,89 @@ msgstr ""
"openmublog%%) にアカウントをお持ちの場合は、下にプロファイルURLを入力して下さ"
"い."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "リモートフォロー"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "リモートユーザーをフォロー"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "ユーザのニックネーム"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "フォローしたいユーザのニックネーム"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "プロファイルURL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "フォロー"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "不正なプロファイルURL。(形式不備)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"有効なプロファイルURLではありません。(YADIS ドキュメントがないかまたは 不正"
"な XRDS 定義)"
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr ""
"それはローカルのプロファイルです! フォローするには、ログインしてください。"
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "リクエストトークンを取得できません"
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "ログインユーザだけがつぶやきを繰り返せます。"
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "つぶやきがありません。"
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "自分のつぶやきは繰り返せません。"
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "すでにそのつぶやきを繰り返しています。"
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "繰り返された"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "繰り返されました!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "%s への返信"
@@ -4758,11 +5328,106 @@ msgstr ""
"最初の [このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s) をして"
"ください!"
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "%2$s 上の %1$s への返信!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "ログインユーザだけがつぶやきを繰り返せます。"
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "あなたはまだなんのアプリケーションも登録していません。"
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "ファイルアップロード"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"アップロードされたファイルは php.ini の upload_max_filesize ディレクティブを"
+"超えています。"
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"アップロードされたファイルはHTMLフォームで指定された MAX_FILE_SIZE ディレク"
+"ティブを超えています。"
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "アップロードされたファイルは部分的にアップロードされていただけです。"
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "一時フォルダを失いました。"
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "ディスクへのファイル書き込みに失敗しました。"
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "エクステンションによってファイルアップロードを中止しました。"
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "ファイルのアップロードでシステムエラー"
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "全てのメンバー"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "ファイルアップロード"
+
#: actions/revokerole.php:75
#, fuzzy
msgid "You cannot revoke user roles on this site."
@@ -4773,7 +5438,7 @@ msgstr "あなたはこのサイトでユーザを黙らせることができま
msgid "User doesn't have this role."
msgstr "合っているプロフィールのないユーザ"
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4815,85 +5480,87 @@ msgstr "セッションのためのデバッグ出力をオン。"
msgid "Save site settings"
msgstr "サイト設定の保存"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "!!アプリケーションを見るためにはログインしていなければなりません。"
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "アプリケーションプロファイル"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "アイコン"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "名前"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "組織"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "概要"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "統計データ"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "アプリケーションアクション"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "key と secret のリセット"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "削除"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "アプリケーション情報"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "リクエストトークンURL"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "アクセストークンURL"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "承認URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4901,36 +5568,43 @@ msgstr ""
"注意: 私たちはHMAC-SHA1署名をサポートします。 私たちは平文署名メソッドをサ"
"ポートしません。"
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "本当にこのつぶやきを削除しますか?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%1$s のお気に入りのつぶやき、ページ %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "お気に入りのつぶやきを検索できません。"
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "%s のお気に入りのフィード (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "%s のお気に入りのフィード (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "%s のお気に入りのフィード (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4939,7 +5613,9 @@ msgstr ""
"加するあなたがそれらがお気に入りのつぶやきのときにお気に入りボタンをクリック"
"するか、またはそれらの上でスポットライトをはじいてください。"
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, fuzzy, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4948,7 +5624,10 @@ msgstr ""
"%s はまだ彼のお気に入りに少しのつぶやきも加えていません。 彼らがお気に入りに"
"加えることおもしろいものを投稿してください:)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4958,7 +5637,8 @@ msgstr ""
"なぜ [アカウント登録](%%action.register%%) しないのですか、そして、あなたのお"
"気に入りにつぶやきを加える最初になりましょう!"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "これは、あなたが好きなことを共有する方法です。"
@@ -4976,82 +5656,89 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s グループ、ページ %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "グループプロファイル"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "ノート"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "別名"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "グループアクション"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "%s グループのつぶやきフィード (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "%s グループのつぶやきフィード (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "%s グループのつぶやきフィード (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "%s グループの FOAF"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "メンバー"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(なし)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "全てのメンバー"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "作成日"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5061,7 +5748,7 @@ msgstr "メンバー"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5079,7 +5766,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5093,30 +5780,30 @@ msgstr ""
"する短いメッセージを共有します。"
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "管理者"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "そのようなメッセージはありません。"
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "送信者と受取人だけがこのメッセージを読めます。"
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "%2$s 上の %1$s へのメッセージ"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "%2$s 上の %1$s からのメッセージ"
@@ -5132,7 +5819,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s、ページ %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5389,77 +6076,78 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
#, fuzzy
-msgid "Save site notice"
+msgid "Save site notice."
msgstr "サイトつぶやき"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS 設定"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
"あなたは %%site.name%% からメールでSMSメッセージを受け取ることができます。"
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS は利用できません。"
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
#, fuzzy
msgid "SMS address"
msgstr "IMアドレス"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "現在の確認された SMS 可能な電話番号。"
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "この電話番号は確認待ちです。"
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "確認コード"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "あなたがあなたの電話で受け取ったコードを入れてください。"
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
#, fuzzy
msgctxt "BUTTON"
msgid "Confirm"
msgstr "パスワード確認"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMS 電話番号"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "電話番号、句読点またはスペースがない、市街番号付き"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "設定が保存されました。"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5468,33 +6156,33 @@ msgstr ""
"るかもしれないのを理解しています。"
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
#, fuzzy
msgid "SMS preferences saved."
msgstr "設定が保存されました。"
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "電話番号がありません。"
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "キャリアが選択されていません。"
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "これはすでにあなたの電話番号です。"
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "この電話番号はすでに他のユーザに使われています。"
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5503,40 +6191,40 @@ msgstr ""
"コードと指示のために電話をチェックしてください。"
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "それは間違った確認番号です。"
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS確認"
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "それはあなたの電話番号ではありません。"
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
#, fuzzy
msgid "The SMS phone number was removed."
msgstr "SMS 電話番号"
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "携帯電話会社"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "キャリア選択"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5547,8 +6235,9 @@ msgstr ""
"ください。"
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "コードが入力されていません"
#. TRANS: Menu item for site administration
@@ -5621,16 +6310,20 @@ msgstr "あなたはそのプロファイルにフォローされていません
msgid "Could not save subscription."
msgstr "フォローを保存できません。"
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "あなたはそのプロファイルにフォローされていません。"
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "フォローしている"
@@ -5662,7 +6355,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "%s のつぶやきを聞いている人"
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5673,7 +6366,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s にはフォローしている人がいません。最初の人になりますか?"
@@ -5683,7 +6376,7 @@ msgstr "%s にはフォローしている人がいません。最初の人にな
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5716,7 +6409,7 @@ msgstr "%s がつぶやきを聞いている人"
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5736,23 +6429,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s はだれも言うことを聞いていません。"
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "%sのつぶやきフィード (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5785,12 +6479,15 @@ msgstr "ID引数がありません。"
msgid "Tag %s"
msgstr "タグ %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "ユーザプロファイル"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "写真"
@@ -5805,6 +6502,11 @@ msgid ""
msgstr ""
"このユーザのタグ (アルファベット、数字、-、.、_)、カンマかスペース区切り"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "不正なタグ: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5812,10 +6514,6 @@ 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 "このフォームを使用して、フォロー者かフォローにタグを加えてください。"
@@ -5824,6 +6522,7 @@ msgstr "このフォームを使用して、フォロー者かフォローにタ
msgid "No such tag."
msgstr "そのようなタグはありません。"
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "あなたはそのユーザをブロックしていません。"
@@ -5844,7 +6543,7 @@ msgstr "ログイントークンが要求されていません。"
msgid "Unsubscribed"
msgstr "フォロー解除済み"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5879,12 +6578,11 @@ msgstr "不正なウェルカムテキスト。最大長は255字です。"
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。"
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "プロファイル"
@@ -5941,54 +6639,70 @@ msgstr "ユーザが新しいユーザを招待するのを許容するかどう
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "サイト設定の保存"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "フォローを承認"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"ユーザのつぶやきをフォローするには詳細を確認して下さい。だれかのつぶやきを"
"フォローするために尋ねない場合は、\"Reject\" をクリックして下さい。"
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "ライセンス"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "承認"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "このユーザーをフォロー"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "拒否"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "このフォローを拒否"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "認証のリクエストがありません。"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "フォローが承認されました"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5998,11 +6712,12 @@ msgstr ""
"フォローを承認するかに関する詳細のためのサイトの指示をチェックしてください。"
"あなたのフォロートークンは:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "フォローが拒否"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -6012,48 +6727,73 @@ msgstr ""
"フォローを完全に拒絶するかに関する詳細のためのサイトの指示をチェックしてくだ"
"さい。"
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "リスナー URI ‘%s’ はここでは見つかりません。"
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "リスニー URI ‘%s’ が長すぎます。"
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "リスニー URI ‘%s’ はローカルユーザーではありません。"
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "プロファイル URL ‘%s’ はローカルユーザーではありません。"
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性があ"
+"りません。"
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "アバター URL ‘%s’ が正しくありません。"
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "アバターURL を読み取れません '%s'"
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "アバター URL '%s' は不正な画像形式。"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "プロファイルデザイン"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6061,7 +6801,7 @@ msgstr ""
"あなたのプロフィールがバックグラウンド画像とあなたの選択の色のパレットで見る"
"方法をカスタマイズしてください。"
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
#, fuzzy
msgid "Enjoy your hotdog!"
msgstr "あなたのhotdogを楽しんでください!"
@@ -6092,7 +6832,7 @@ msgstr "[グループを探して](%%action.groupsearch%%)それに加入して
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "%1$s から %2$s 上の更新をしました!"
@@ -6143,7 +6883,7 @@ msgid "Plugins"
msgstr "プラグイン"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "バージョン"
@@ -6152,32 +6892,32 @@ msgid "Author(s)"
msgstr "作者"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "お気に入り"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6192,7 +6932,7 @@ msgstr[0] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6201,7 +6941,7 @@ msgstr[0] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6209,7 +6949,7 @@ msgstr[0] ""
"これほど大きいファイルはあなたの%dバイトの毎月の割当てを超えているでしょう。"
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
#, fuzzy
msgid "Invalid filename."
msgstr "不正なサイズ。"
@@ -6269,7 +7009,7 @@ msgid "Could not create login token for %s"
msgstr "%s 用のログイン・トークンを作成できませんでした"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6296,30 +7036,30 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "OAuth アプリケーションユーザの追加時DBエラー。"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "つぶやきを保存する際に問題が発生しました。長すぎです。"
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "つぶやきを保存する際に問題が発生しました。不明なユーザです。"
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
"多すぎるつぶやきが速すぎます; 数分間の休みを取ってから再投稿してください。"
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6328,42 +7068,42 @@ msgstr ""
"い。"
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止されています。"
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "つぶやきを保存する際に問題が発生しました。"
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "グループ受信箱を保存する際に問題が発生しました。"
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "フォローを保存できません。"
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6371,14 +7111,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6449,36 +7189,57 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "ようこそ %1$s、@%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "single-user モードのためのシングルユーザが定義されていません。"
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "グループを作成できません。"
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "グループを作成できません。"
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "グループメンバーシップをセットできません。"
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
#, fuzzy
msgid "Could not save local group info."
msgstr "フォローを保存できません。"
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "ユーザを削除できません"
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6515,151 +7276,154 @@ msgid "Other"
msgstr "その他"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr ""
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "名称未設定ページ"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "プライマリサイトナビゲーション"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
#, fuzzy
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "パーソナルプロファイルと友人のタイムライン"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
#, fuzzy
msgctxt "MENU"
msgid "Personal"
msgstr "パーソナル"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "パスワードの変更"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "アカウント"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "接続"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "接続"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "基本サイト設定"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
#, fuzzy
msgctxt "MENU"
msgid "Admin"
msgstr "管理者"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, fuzzy, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "友人や同僚が %s で加わるよう誘ってください。"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
#, fuzzy
msgctxt "MENU"
msgid "Invite"
msgstr "招待"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "サイトのテーマ"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "ロゴ"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "新しいグループを作成"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
#, fuzzy
msgctxt "MENU"
msgid "Register"
msgstr "登録"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
#, fuzzy
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "サイトへログイン"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
#, fuzzy
msgctxt "MENU"
msgid "Login"
msgstr "ログイン"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "ヘルプ"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
#, fuzzy
msgctxt "MENU"
msgid "Help"
msgstr "ヘルプ"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "もっとグループを検索"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
#, fuzzy
msgctxt "MENU"
msgid "Search"
@@ -6667,68 +7431,68 @@ msgstr "検索"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "サイトつぶやき"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "ローカルビュー"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "ページつぶやき"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "セカンダリサイトナビゲーション"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "ヘルプ"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "About"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "よくある質問"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr ""
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "プライバシー"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "ソース"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "連絡先"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "バッジ"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet ソフトウェアライセンス"
@@ -6736,7 +7500,7 @@ msgstr "StatusNet ソフトウェアライセンス"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, fuzzy, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6746,7 +7510,7 @@ msgstr ""
"イクロブログサービスです。 "
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** はマイクロブログサービスです。"
@@ -6755,7 +7519,7 @@ msgstr "**%%site.name%%** はマイクロブログサービスです。"
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6767,50 +7531,50 @@ msgstr ""
"org/licensing/licenses/agpl-3.0.html)。"
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "サイト内容ライセンス"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "ページ化"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "<<後"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "前>>"
@@ -6819,10 +7583,80 @@ msgstr "前>>"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "不明な言語 \"%s\""
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "写真"
+msgid "Cannot force remote user to subscribe."
+msgstr "フォローする利用者の名前を指定してください"
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "不明なファイルタイプ"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "すでにこのグループのメンバーです。"
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "つぶやきの内容を探す"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "そのようなユーザはいません。"
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s (%2$s)"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6896,7 +7730,7 @@ msgid "User configuration"
msgstr "ユーザ設定"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "ユーザ"
@@ -6944,19 +7778,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6979,28 +7817,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "メッセージを追加できません。"
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "OAuth アプリケーションユーザの追加時DBエラー。"
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "OAuth アプリケーションユーザの追加時DBエラー。"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "このアプリケーションのアイコン"
@@ -7114,17 +7956,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "回復"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "このつぶやきを削除できません。"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "作者"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "プロバイダ"
@@ -7155,6 +8003,11 @@ msgstr "パスワード変更は許可されていません"
msgid "Block"
msgstr "ブロック"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "このユーザをブロックする"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7271,7 +8124,7 @@ msgstr "フルネーム: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "場所: %s"
@@ -7279,7 +8132,7 @@ msgstr "場所: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "ホームページ: %s"
@@ -7508,20 +8361,20 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "コンフィギュレーションファイルがありません。 "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "私は以下の場所でコンフィギュレーションファイルを探しました: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
"あなたは、これを修理するためにインストーラを動かしたがっているかもしれませ"
@@ -7529,7 +8382,7 @@ msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "インストーラへ。"
@@ -7573,14 +8426,19 @@ msgstr "承認された接続アプリケーション"
msgid "Database error"
msgstr "データベースエラー"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "このユーザを削除"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "ファイルアップロード"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7601,26 +8459,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "オフ"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "リセット"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "色の変更"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "デフォルトを使用"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "デフォルトデザインに戻す。"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "デフォルトへリセットする"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "デザインの保存"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "あなたのデザインを更新できません。"
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "デフォルトのデザインを回復。"
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "アプリケーションのための取消しアクセスができません: "
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "このつぶやきのお気に入りをやめる"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "お気に入りをやめる"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "このつぶやきをお気に入りにする"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "お気に入り"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7637,6 +8543,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "全てのメンバー"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7671,32 +8590,32 @@ msgstr "移動"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "グループやトピックのホームページやブログの URL"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "グループやトピックを記述"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "グループやトピックを %d 字以内記述"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "グループの場所, 例えば \"都市, 都道府県 (または 地域), 国\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7801,54 +8720,55 @@ msgstr "%s グループのつぶやきにあるタグ"
msgid "This page is not available in a media type you accept"
msgstr "このページはあなたが承認したメディアタイプでは利用できません。"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "サポート外の画像形式です。"
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "ファイルが大きすぎます。最大ファイルサイズは %s 。"
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "不完全なアップロード。"
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "ファイルのアップロードでシステムエラー"
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "画像ではないかファイルが破損しています。"
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "ファイルを紛失。"
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "不明なファイルタイプ"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
msgstr[0] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
msgstr[0] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7868,23 +8788,25 @@ msgstr "不明な受信箱のソース %d。"
msgid "Leave"
msgstr "離れる"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "ユーザ名とパスワードでログイン"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "新しいアカウントでサインアップ"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "メールアドレス確認"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7915,14 +8837,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s は %2$s であなたのつぶやきを聞いています。"
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7934,7 +8856,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7961,14 +8883,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "自己紹介: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "%s へ投稿のための新しいメールアドレス"
@@ -7976,7 +8898,7 @@ msgstr "%s へ投稿のための新しいメールアドレス"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7999,34 +8921,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s の状態"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS確認"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, fuzzy, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "この電話番号は確認待ちです。"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "あなたは %s に合図されています"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, fuzzy, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8055,7 +8977,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "%s からの新しいプライベートメッセージ"
@@ -8064,7 +8986,7 @@ msgstr "%s からの新しいプライベートメッセージ"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, fuzzy, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8099,7 +9021,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました"
@@ -8109,7 +9031,7 @@ msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えま
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, fuzzy, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8148,7 +9070,7 @@ msgstr ""
"%6%s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8158,7 +9080,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) はあなた宛てにつぶやきを送りました"
@@ -8169,7 +9091,7 @@ msgstr "%s (@%s) はあなた宛てにつぶやきを送りました"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8196,11 +9118,11 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "ユーザだけがかれら自身のメールボックスを読むことができます。"
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8209,10 +9131,6 @@ msgstr ""
"に引き込むプライベートメッセージを送ることができます。人々はあなただけへの"
"メッセージを送ることができます。"
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "from"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "メッセージを分析できませんでした。"
@@ -8241,42 +9159,6 @@ msgstr ""
"データベースエラーがあなたのファイルを保存しているときにありました。 再試行し"
"てください。"
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"アップロードされたファイルは php.ini の upload_max_filesize ディレクティブを"
-"超えています。"
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"アップロードされたファイルはHTMLフォームで指定された MAX_FILE_SIZE ディレク"
-"ティブを超えています。"
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "アップロードされたファイルは部分的にアップロードされていただけです。"
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "一時フォルダを失いました。"
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "ディスクへのファイル書き込みに失敗しました。"
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "エクステンションによってファイルアップロードを中止しました。"
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8297,7 +9179,7 @@ msgstr "ファイルのMIMEタイプを決定できません。"
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8306,7 +9188,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8341,20 +9223,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "投稿"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "メッセージ"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "from"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"ニックネームには、小文字アルファベットと数字のみ使用できます。スペースは使用"
"できません。"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8369,11 +9260,11 @@ msgstr "つぶやきを送る"
msgid "What's up, %s?"
msgstr "最近どう %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "添付"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "ファイル添付"
@@ -8394,59 +9285,63 @@ msgstr ""
"度試みてください"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
#, fuzzy
msgid "N"
msgstr "北"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
#, fuzzy
msgid "S"
msgstr "南"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
#, fuzzy
msgid "E"
msgstr "東"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
#, fuzzy
msgid "W"
msgstr "西"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "at"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr ""
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr ""
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "このつぶやきへ返信"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "返信"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "このつぶやきを削除"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "つぶやきを繰り返しました"
@@ -8483,77 +9378,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "サブスクリプションを追加できません"
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "パーソナル"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "返信"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "プロファイル"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "お気に入り"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "受信箱"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "あなたの入ってくるメッセージ"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "送信箱"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "あなたが送ったメッセージ"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "%s のつぶやきのタグ"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "不明"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "フォロー"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "すべてのフォロー"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "フォローされている"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "すべてのフォローされている"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ユーザID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "利用開始日"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "グループ"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "全てのグループ"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "未実装のメソッド。"
@@ -8600,7 +9531,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "このグループからこのユーザをブロック"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "API メソッドが見つかりません。"
@@ -8691,6 +9622,10 @@ msgstr "招待"
msgid "Invite friends and colleagues to join you on %s"
msgstr "友人や同僚が %s で加わるよう誘ってください。"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "このユーザーをフォロー"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8802,122 +9737,134 @@ msgstr "フォロー解除"
msgid "User %1$s (%2$d) has no profile record."
msgstr "ユーザはプロフィールをもっていません。"
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "アバターを編集する"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "利用者アクション"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "プロファイル設定編集"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "編集"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "この利用者にダイレクトメッセージを送る"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "メッセージ"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
#, fuzzy
msgid "Moderate"
msgstr "管理"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
#, fuzzy
msgid "User role"
msgstr "ユーザプロファイル"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
#, fuzzy
msgctxt "role"
msgid "Administrator"
msgstr "管理者"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
#, fuzzy
msgctxt "role"
msgid "Moderator"
msgstr "管理"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "ログインしていません。"
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "数秒前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "約 1 分前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "約 1 時間前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "約 1 日前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "約 1 ヵ月前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "約 1 年前"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%sは有効な色ではありません!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s は有効な色ではありません! 3か6の16進数を使ってください。"
@@ -8937,31 +9884,18 @@ msgid_plural "Message too long. Maximum is %1$d characters, you sent %2$d."
msgstr[0] "メッセージが長すぎます - 最大 %1$d 字、あなたが送ったのは %2$d。"
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "不正なサイズ。"
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "ユーザIDの記述がありません。"
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po
index adbb1df2a1..3659a4ef75 100644
--- a/locale/ka/LC_MESSAGES/statusnet.po
+++ b/locale/ka/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Georgian (ქართული)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Zaal
# --
@@ -9,17 +9,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:01+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:04+0000\n"
"Language-Team: Georgian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ka\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -74,8 +74,9 @@ msgid "Save access settings"
msgstr "შეინახე შესვლის პარამეტრები"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -85,13 +86,13 @@ msgstr "შეინახე შესვლის პარამეტრე
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "შეინახე"
@@ -99,7 +100,7 @@ msgstr "შეინახე"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "ასეთი გვერდი არ არსებობს."
@@ -109,6 +110,8 @@ msgstr "ასეთი გვერდი არ არსებობს."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -124,13 +127,23 @@ msgstr "ასეთი გვერდი არ არსებობს."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -138,15 +151,15 @@ msgstr "ასეთი გვერდი არ არსებობს."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "ასეთი მომხმარებელი არ არსებობს."
@@ -160,9 +173,10 @@ msgstr "%1$s და მეგობრები, გვერდი %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr " %s და მეგობრები"
@@ -275,7 +289,7 @@ msgstr " %1$s და მეგობრების განახლებე
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -309,7 +323,21 @@ msgstr ""
"sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "მომხმარებლის განახლება ვერ მოხერხდა."
@@ -319,18 +347,23 @@ msgstr "მომხმარებლის განახლება ვე
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "მომხმარებელს პროფილი არ გააჩნია."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "პროფილის შენახვა ვერ მოხერხდა."
@@ -340,8 +373,8 @@ msgstr "პროფილის შენახვა ვერ მოხერ
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -358,13 +391,14 @@ msgstr[0] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "სამწუხაროდ თქვენი დიზაინის პარამეტრების შენახვა ვერ მოხერხდა."
@@ -372,48 +406,59 @@ msgstr "სამწუხაროდ თქვენი დიზაინი
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "დიზაინის განახლება ვერ მოხერხდა."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s-ის ნაკადი"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s გამოწერები"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "რჩეულები"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "%s ჯგუფის წევრი"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "საკუთარი თავის დაბლოკვა შეუძლებელია."
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "მომხმარებლის დაბლოკვა ვერ მოხერხდა."
@@ -468,7 +513,8 @@ msgstr "მიმღები მომხმარებელი ვერ მ
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "ვერ გაუგზავნი პირდაპირ შეტყობინებას იმას, ვისთანაც არ მეგობრობ."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -492,8 +538,9 @@ msgid "This status is already a favorite."
msgstr "ეს სტატუსი უკვე ფავორიტია."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "ფავორიტის შექმნა ვერ მოხერხდა."
@@ -503,7 +550,8 @@ msgid "That status is not a favorite."
msgstr "ეს სტატუსი არა არის ფავორიტი."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "ფავორიტის წაშლა ვერ მოხერხდა."
@@ -549,9 +597,9 @@ msgstr "სასურველი მომხმარებელი ვე
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "მეტსახელი უკვე გამოყენებულია. სცადე სხვა."
@@ -559,21 +607,22 @@ msgstr "მეტსახელი უკვე გამოყენებუ
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "მეტსახელი არასწორია."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "სასტარტო გვერდი არასწორი URL-ია."
@@ -581,9 +630,9 @@ msgstr "სასტარტო გვერდი არასწორი URL
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "სრული სახელი ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)."
@@ -591,14 +640,15 @@ msgstr "სრული სახელი ძალიან გრძელი
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -608,9 +658,9 @@ msgstr[0] "აღწერა ძალიან გრძელია (არ
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "ადგილმდებარეობა ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)."
@@ -621,8 +671,8 @@ msgstr "ადგილმდებარეობა ძალიან გრ
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -638,18 +688,16 @@ msgstr ""
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr ""
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -660,28 +708,32 @@ msgstr ""
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "ჯგუფი ვერ მოიძებნა."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "თქვენ უკვე ხართ ამ ჯგუფის წევრი."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "თქვენ დაბლოკილი ხართ ამ ჯგუფიდან ადმინისტრატორის მიერ."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "ვერ მოხერხდა მომხმარებელ %1$s-სთან ერთად ჯგუფ %2$s-ში გაერთიანება."
@@ -693,9 +745,11 @@ msgstr "თვენ არ ხართ ამ ჯგუფის წევრ
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -732,7 +786,7 @@ msgid "Upload failed."
msgstr "ატვირთვა ვერ მოხერხდა."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr ""
@@ -754,20 +808,25 @@ msgid "Request token already authorized."
msgstr "თქვენ არ ხართ ავტორიზირებული."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -785,18 +844,22 @@ msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლ
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr ""
@@ -841,29 +904,31 @@ msgstr "ანგარიში"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "მეტსახელი"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "პაროლი"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -937,6 +1002,7 @@ msgstr "სხვა მომხმარებლის სტატუსი
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -956,39 +1022,52 @@ msgstr "საკუთარი შეტყობინების გამ
msgid "Already repeated that notice."
msgstr "ეს შეტყობინება უკვე გამეორებულია."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "API მეთოდი ვერ მოიძებნა."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "ფორმატი არ არის მხარდაჭერილი."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "სტატუსი წაშლილია."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "ასეთი ID-ს სტატუსი ვერ მოიძებნა."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "ამ შეტყობინების წაშლა შეუძლებელია."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "შეტყობინების წაშლა"
@@ -1044,7 +1123,7 @@ msgstr "განახლებები არჩეული %1$s-ს მი
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "ჯგუფის განახლება ვერ მოხერხდა."
@@ -1065,13 +1144,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s საჯარო ნაკადი"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s განახლებები ყველასგან!"
@@ -1120,201 +1200,269 @@ msgstr "მხოლოდ მომხმარებელს შეუძლ
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "მოძებნე შეტყობინებებში"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "შეტყობინებები ამ ID-თ არ არსებობს."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API მეთოდი დამუშავების პროცესშია."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "API მეთოდი ვერ მოიძებნა."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "ასეთი პროფილი არ არსებობს."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr " %1$s და მეგობრების განახლებები %2$s-ზე!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "მოძებნე შეტყობინებებში"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "მოძებნე შეტყობინებებში"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "უცნობი"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "რჩეულებში დამატება"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "ასეთი პროფილი არ არსებობს."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s ჯგუფის წევრი"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "%1$s-ს ის ჯგუფები რომლებშიც გაერთიანებულია %2$s."
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "მოძებნე შეტყობინებებში"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "უცნობი"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
msgstr ""
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "ასეთი ფაილი არ არსებობს."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "ფავორიტის წაშლა ვერ მოხერხდა."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "ასეთი ჯგუფი ვერ მოიძებნა."
-#: actions/atompubshowmembership.php:90
-msgid "Not a member"
-msgstr ""
-
-#: actions/atompubshowmembership.php:115
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Method not supported"
-msgstr "API მეთოდი ვერ მოიძებნა."
+msgid "Not a member."
+msgstr "ტელეფონის ნომერი არ არის."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "ასეთი პროფილი არ არსებობს."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "თქვენ არ გაქვთ გამოწერილი ამ პროფილის განახლებები."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "საკუთარი გამოწერის წაშლა ვერ ხერხდება."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "%s-ს გამოწერა დასრულდა წარმატებით."
+msgid "No such profile id: %d."
+msgstr "ასეთი პროფილი არ არსებობს."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "თქვენ არ გაქვთ გამოწერილი ამ პროფილის განახლებები."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "საკუთარი გამოწერის წაშლა ვერ ხერხდება."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "თქვენ არ გაქვთ გამოწერილი ამ პროფილის განახლებები."
+
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "ფაილის ტიპი უცნობია"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "უკვე გამოწერილია!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1323,11 +1471,15 @@ msgstr "ასეთი მიმაგრებული დოკუმენ
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "მეტსახელი უცნობია."
@@ -1344,7 +1496,7 @@ msgstr "ზომა არასწორია."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "ავატარი"
@@ -1358,42 +1510,52 @@ msgstr ""
"თქვენ შეგიძლიათ ატვირთოთ პერსონალური ავატარი. ფაილის დასაშვები ზომაა %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "მომხმარებელი შესაბამისი პროფილის გარეშე."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "ავატარის პარამეტრები."
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "ორიგინალი"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "წინასწარი გადახედვა"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "წაშლა"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1411,31 +1573,72 @@ msgstr "მოჭრა"
msgid "No file uploaded."
msgstr "არცერთი ფაილი არ ატვირთულა"
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "აირჩიეთ სურათის კვადრატული მონაკვეთი თქვენი ავატარისთვის"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr ""
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "ავატარი განახლდა."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "ავატარის განახლება ვერ მოხერხდა."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "ავატარი წაიშალა."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "მხოლოდ ავტორიზირებულ მომხმარებლებს შეუძლიათ შეტყობინებების გამეორება."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "ფონი"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1443,7 +1646,8 @@ msgstr "თქვენ უკვე დაბლოკეთ ეს მომ
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "მომხმარებლის დაბლოკვა"
@@ -1463,15 +1667,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "არა"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "არ დაბლოკო ეს მომხმარებელი"
#. TRANS: Button label on the user block form.
@@ -1482,15 +1686,15 @@ msgstr "არ დაბლოკო ეს მომხმარებელი
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "დიახ"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "დაბლოკე ეს მომხმარებელი"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1498,31 +1702,6 @@ msgstr "დაბლოკე ეს მომხმარებელი"
msgid "Failed to save block information."
msgstr "დაბლოკვის შესახებ ინფორმაციის შენახვა ვერ მოხერხდა."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "ასეთი ჯგუფი ვერ მოიძებნა."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1593,23 +1772,6 @@ msgstr "მისამართის ამოუცნობი ტიპი
msgid "That address has already been confirmed."
msgstr "ეს მისამართი უკვე დადასტურებულია."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "მომხმარებლის განახლება ვერ მოხერხდა."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1635,11 +1797,85 @@ msgid "Conversation"
msgstr "საუბარი"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "შეტყობინებები"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "მხოლოდ ავტორიზირებულ მომხმარებლებს შეუძლიათ შეტყობინებების გამეორება."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "თქვენ ვერ შეძლებთ მომხმარებლების წაშლას."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "ავატარი წაიშალა."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "გახსენი ანგარიში"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "ვადასტურებ"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "თქვენ ვერ შეძლებთ მომხმარებლების წაშლას."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "თქვენ ვერ შეძლებთ მომხმარებლების წაშლას."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1653,14 +1889,14 @@ msgstr "აპლიკაცია ვერ მოიძებნა."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "თქვენ არ ხართ ამ აპლიკაციის მფლობელი."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr ""
@@ -1682,12 +1918,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "არ წაშალო ეს აპლიკაცია"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "აპლიკაციის წაშლა"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1697,8 +1935,10 @@ msgid "You must be logged in to delete a group."
msgstr "გჯუფის დატოვებისათვის საჭიროა ავტორიზაცია."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "მეტსახელი ან ID უცნობია."
@@ -1743,25 +1983,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "არ წაშალო ეს შეტყობინება"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "ამ მომხმარებლის წაშლა"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "ავტორიზებული არ ხართ."
@@ -1786,27 +2032,40 @@ msgstr "ნამდვილად გსურთ ამ შეტყობი
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "არ წაშალო ეს შეტყობინება"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "შეტყობინების წაშლა"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "თქვენ ვერ შეძლებთ მომხმარებლების წაშლას."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "თქვენ მხოლოდ ადგილობრივი მომხმარებლების წაშლა გძალუძთ."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "მომხმარებლის წაშლა"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "მომხმარებლის წაშლა"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1814,81 +2073,105 @@ msgstr ""
"ნამდვილად გნებავთ ამ მომხმარებლის წაშლა? ეს მოქმედება წაშლის ყველა მონაცემს "
"მომხმარებლის შესახებ სარეზერვო ასლის გარეშე."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "არ წაშალო ეს შეტყობინება"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "ამ მომხმარებლის წაშლა"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "ამ მომხმარებლის წაშლა"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "ლოგოს არასწორი URL-ი"
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "ლოგოს არასწორი URL-ი"
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "იერსახე არ არის ხელმისაწვდომი %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "შეცვალე ლოგო"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "საიტის ლოგო"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "საიტის ლოგო"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "შეცვალე იერსახე"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "საიტის იერსახე"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "იერსახე ამ საიტისთვის"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "საკუთარი იერსახე"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
"თქვენ შეგიძლიათ ატვირთოთ საკუთარი StatusNet–იერსახე .ZIP არქივის სახით."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "შეცვალე ფონური სურათი"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "ფონი"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1898,98 +2181,108 @@ msgstr ""
"ზომაა %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "ჩართვა"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "გამორთვა"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "ჩართე ან გამორთე ფონური სურათის ფუნქცია."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "გაამრავლე ფონური სურათი"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "შეცვალე ფერები"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "შიგთავსი"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "გვერდითი პანელი"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "ტექსტი"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "ბმულები"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "მეტი პარამეტრები"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "საკუთარი CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "გამოიყენე პირვანდელი მდგომარეობა"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "დააბრუნე პირვანდელი დიზაინი"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "პირვანდელის პარამეტრების დაბრუნება"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "შენახვა"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "შეინახე დიზაინი"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "ეს შეტყობინება არ არის რჩეული!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "რჩეულებში დამატება"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "ასეთი დოკუმენტი არ არის \"%s\""
#. TRANS: Title for "Edit application" form.
@@ -2004,7 +2297,7 @@ msgid "You must be logged in to edit an application."
msgstr "აპლიკაციის ჩასასწორებლად საჭიროა ავროტიზაცია."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "ასეთი აპლიკაცია არ არის."
@@ -2014,63 +2307,73 @@ msgid "Use this form to edit your application."
msgstr "აპლიკაციაში ცვლილებების შესატანად გამოიყენეთ ეს ფორმა."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "სახელი სავალდებულოა."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "სახელი ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "სახელი უკვე გამოყენებულია. სცადე სხვა."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "აღწერა სავალდებულოა."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "წყაროს URL ძალიან გრძელია."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "წყაროს URL არასწორია."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "ორგანიზაცია სავალდებულოა."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "ორგანიზაცია ძალიან გრძელია (არაუმეტეს 255 სიმბოლო)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "ორგანიზაციის ვებ. გვერდი სავალდებულოა."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "აპლიკაციის განახლება ვერ მოხერხდა."
@@ -2081,14 +2384,17 @@ msgid "Edit %s group"
msgstr "%s ჯგუფის რედაქტირება"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "გჯუფის შესაქმნელად საჭიროა ავტორიზაცია."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "ჯგუფის რედაქტირებისათვის საჭიროა ადმინის უფლებები."
@@ -2099,63 +2405,65 @@ msgstr "ჯგუფის რედაქტირებისათვის
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr ""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "ჯგუფის განახლება ვერ მოხერხდა."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr ""
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "პარამეტრები შენახულია."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "ელ. ფოსტის პარამეტრები"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "%%site.name%%–სგან ელ. ფოსტის მიღების მართვა."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "ელ. ფოსტის მისამართი"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "მიმდინარე დადასტურებული ელ. ფოსტის მისამართი."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "წაშლა"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2168,44 +2476,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "ელ. ფოსტის მისამართი, როგორც \"UserName@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "დამატება"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "შემომავალი ელ. ფოსტა"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "მინდა დავპოსტო შეტყობინებები ელ. ფოსტით."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "გააგზავნე ელ. ფოსტა ამ მისამართზე ახალი შეტყობინებების დასაპოსტად."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2213,89 +2521,91 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "ახალი"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "ელ. ფოსტის პარამეტრები"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr ""
"გამომიგზავნე შეტყობინებები ახალი გამოწერების შესახებ ელ. ფოსტის საშუალებით."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"გამომიგზავნე ელ. წერილი როდესაც ვინმე ჩემს შეტყობინებას რჩეულებში დაიმატებს."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "გამომიგზავნე ელ. წერილი როდესაც ვინმე პირად შეტყობინებას მომწერს."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "გამომიგზავნე წერილი როდესაც ვინმე გამომიგზავნის \"@-პასუხს\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "გამოაქვეყნე MicroID ჩემი ელ. ფოსტის მისამართისთვის."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "ელ. ფოსტის პარამეტრები შენახულია."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr " ელ. ფოსტის მისამართი მითითებული არ არის."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
-msgstr ""
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
+msgstr "Jabber ID-ს ნორმალიზაცია ვერ ხერხდება"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "არასწორი ელ. ფოსტის მისამართი."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "ეს უკვე არის თქვენი ელ. ფოსტის მისამართი."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "ეს ელ. ფოსტის მისამართი დაკავებულია."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "დასტურის კოდის ჩასმა ვერ მოხერხდა."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2305,89 +2615,105 @@ msgstr ""
"დასადასტურებელი კოდი და ინსტრუქცია გამოყენებისთვის."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "გასაუქმებელიარაფერია. არ არის მომლოდინე დასტური."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "ეს არასწორი ელ. ფოსტის მისამართია."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "ელ. ფოსტის დადასტურების წაშლა ვერ მოხერხდა."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "ელ. ფოსტის დადასტურება გაუქმებულია."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "ეს არ არის თქვენი ელ. ფოსტის მისამართი."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "ელ. ფოსტის მისამართი მოშორებულია."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "შემომავალი ელ. ფოსტის მისამართი არ არის."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "მომხმარებლის ჩანაწერის განახლება ვერ მოხერხდა."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "შემომავალი ელ. ფოსტის მისამართი მოშორებულია."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "დამატებულია ახალი შემომავალი ელ. ფოსტა."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "ეს შეტყობინება უკვე რჩეულია!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "რჩეულის გაუქმება"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "პოპულარული შეტყობინებები"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "პოპულარული შეტყობინებები, გვერდი %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "ყველაზე პოპულარული შეტყობინებები ამ მომენტისათვის საიტზე."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"რჩეული შეტყობინებები ამ გვერდზე ჩნდება, მაგრამ ჯერჯერობით არავის აურჩევია "
"არაფერი."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2396,7 +2722,9 @@ msgstr ""
"გახდი პირველი და შეიტანე შეტყობინება შენს რჩეულებში! დაკლიკე ღილაკზე რჩეული "
"ნებისმიერი შეტყობინების გვერდით."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2404,142 +2732,186 @@ msgid ""
msgstr ""
"[დარეგისტრირდი](%%action.register%%) და შეიტანე შეტყობინება შენს რჩეულებში!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%s-ს რჩეული შეტყობინებები"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "განახლებები არჩეული %1$s-ს მიერ %2$s-ზე!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "წარმოდგენილი მომხმარებლები"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "წარმოდგენილი მომხმარებლები, გვერდი $d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "ზოგიერთ ჩინებულ მომხმარებელთა განყოფილება %s-ზე"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "შეტყობინების ID არ არის."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "შეტყობინება არ არის."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "მიმაგრებული დოკუმენტი არ არის."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "ატვირთული მიმაგრებული დოკუმენტი არ არის."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "ეს უკუქმედება არ არის მოსალოდნელი."
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "მისადევნებელი მომხმარებელი არ არსებობს."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "შეგიძლიათ გამოიყენოთ ადგილობრივი გამოწერა!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "ამ მომხმარებელმა აგიკრძალათ მიდევნება."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "თქვენ არ ხართ ავტორიზირებული."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "დაშორებული სერვისი OMB პროტოკოლის უცნობ ვერსიას იყენებს."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "შეცდომა დაშორებული პროფილის განახლებისას."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "ასეთი ფაილი არ არსებობს."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "ფაილის წაკითხვა ვერ ხერხდება."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "არასწორი როლი."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "ეს როლი დარეზერვებულია და გამოყენება შეუძლებელია."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "თქვენ არ შეგიძლიათ როლების მინიჭება ამ საიტზე."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "მომხმარებელს უკვე აქვს ეს როლი."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "პროფილი მითითებული არ არის."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "ასეთი ID-ს მქონე პროფილი ვერ მოიძებნა."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "ჯგუფი მითითებული არ არის."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "მხოლოდ ადმინს შეუძლია ჯგუფიდან მომხმარებლების გარიცხვა."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "მომხმარებელი უკვე გარიცხულია ჯგუფიდან."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "მომხმარებელი არ არის ჯგუფის წევრი."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "მომხმარებლის გარიცხვა ჯგუფიდან."
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2551,32 +2923,40 @@ msgstr ""
"მომავალშიც."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "არ გარიცხო ემ მომხმარებელი ამ ჯგუფიდან"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "გარიცხე ეს მომხმარებელი ამ ჯგუფიდან"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "მომხმარებლის ჯგუფიდან გარიცხვისას მოხდა შეცდომა ბაზაში."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "ID უცნობია."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "ჯგუფის რედაქტირებისათვის საჭიროა ავტორიზაცია."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "ჯგუფის დიზაინი"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2584,122 +2964,142 @@ msgstr ""
"აირჩიეთ, როგორ გნებავთ გამოიყურებოდეს თქვენი ჯგუფი ფონური სურათისა და ფერთა "
"პალიტრის შეცვლით."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "დიზაინის განახლება ვერ მოხერხდა."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "სამწუხაროდ თქვენი დიზაინის პარამეტრების შენახვა ვერ მოხერხდა."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "დიზაინის პარამეტრები შენახულია."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "ჯგუფის ლოგო"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr ""
"თქვენ შეგიძლიათ ატვირთოთ ლოგოს თქვენი ჯგუფისათვის. ფაილის დასაშვები ზომაა %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "ატვირთვა"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "მოჭრა"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "აირჩიეთ სურათის კვადრატული მონაკვეთი ლოგოსათვის."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "ლოგო განახლდა."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "ლოგოს განახლება ვერ მოხერხდა."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s ჯგუფის წევრი"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s ჯგუფის წევრი, გვერდი %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "ამ ჯგუფის წევრების სია."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "ადმინი"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "მიანიჭე მომხმარებელს ჯგუფის ადმინობა"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "%1$s-ის წევრების განახლებები %2$s-ზე!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "ჯგუფები"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "ჯგუფები, გვერდი $d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"%%%%site.name%%%%-ის ჯგუფები გაძლევთ საშუალებას მოძებნოთ და ესაუბროთ მსგავსი "
"ინტერესების მქონე ხალხს. ჯგუფში გაერთიანების შემდეგ, შეძლებთ მიწეროთ "
@@ -2707,11 +3107,13 @@ msgstr ""
"ხედავთ მოსაწონ ჯგუფს? სცადეთ [ძიება](%%%%action.groupsearch%%%%) ან "
"[შექმენით საკუთარი!](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "შექმენი ახალი ჯგუფი"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2721,25 +3123,33 @@ msgstr ""
"მიხედვით. გამოყავით ფრაზები სივრცით; საძიებო ფრაზა 3 სიმბოლოზე მეტი უნდა "
"იყოს."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "ჯგუფის ძიება"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "უშედეგოდ."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"თუ ვერ პოულობთ ჯგუფს რომელსაც ეძებთ, შეგიძლიათ თვითონ [შექმნათ](%%action."
"newgroup%%)."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2749,136 +3159,146 @@ msgstr ""
"newgroup%%) თვითონ!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "მხოლოდ ადმინს შეუძლია ჯგუფის წევრისთვის ბლოკის მოხსნა."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "მომხმარებელი არ არის დაბლოკილი ჯგუფიდან."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "შეცდომა ბლოკის მოხსნისას."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM პარამეტრები"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"თქვენ შეგიძლიათ მიიღოთ და გააგზავნოთ შეტყობინებები Jabber/GTalk [ჩეთით](%%"
"doc.im%%). მომართეთ თქვენი მისამართი და პარამეტრები ქვევით."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM არ არის ხელმისაწვდომი."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM მისამართი"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "მიმდინარე დადასტურებული Jabber/GTalk მისამართი."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"ამ მისამართის დადასტურება მოლოდინშია. შეამოწმეთ თქვენი Jabber/GTalk ანგარიში "
"შეტყობინებისათვის შემდგომი ინსტრუქციებით. (დაიმატეთ %s მეგობრების სიაში?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber ან GTalk მისამართი, როგორც \"UserName@example.org\". პირველ რიგში "
"დარწმუნდით, რომ დაიმატეთ %s მეგობრების სიაში თქვენს IM კლიენტში ან GTalk-ში."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "IM პარამეტრები"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "გამომიგზავნე შეტყობინებები Jabber/GTalk-ის მეშვეობით."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "დაპოსტე შეტყობინება, როდესაც ჩემი Jabber/GTalk სტატუსი შეიცვლება."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"გამომიგზავნე პასუხები Jabber/GTalk-ით ხალხისგან, რომლთა მიმდევარი არ ვარ."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "გამოაქვეყნე MicroID ჩემი Jabber/GTalk მისამართისთვის."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "პარამეტრები შენახულია."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Jabber ID უცნობია."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Jabber ID-ს ნორმალიზაცია ვერ ხერხდება"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "არასწორი Jabber ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "ეს უკვე არის თქვენი Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID უკვე ეკუთვნის სხვა მომხმარებელს."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2887,74 +3307,80 @@ msgstr ""
"დასტურის კოდი გამოგზავნილია თქვენს IM მისამართზე. თქვენ უნდა მისცეთ უფლება %"
"s-ს გამოგიგზავნოთ შეტყობინებები."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "ეს არასწორი IM მისამართია."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "IM დასტურის წაშლა ვერ მოხერხდა."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "IM დასტური გაუქმდა."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "ეს არ არის თქვენი Jabber ID"
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "IM მისამართი მოშორებულია."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "%1$s-ის შემომავალი ფოსტა - გვერდი %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "%s-ის შემომავალი ფოსტა"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"ეს არის თქვენი საფოსტო ყუთი, რომელშიც ჩამოთვლილია შემომავალი პირადი წერილები."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "მოწვევები გათიშულია."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "%s-ში სხვა მომხმარებლების დასაპატიჯებლად საწიროა ავტორიზაცია."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "არასწორი ელექტრონული ფოსტის მისამართი: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "მოწვევა/მოწვევები გაგზავნილია"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "დაპატიჯე ახალი მომხმარებლები"
@@ -2962,7 +3388,7 @@ msgstr "დაპატიჯე ახალი მომხმარებლ
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2970,7 +3396,7 @@ msgstr[0] "თქვენ უკვე გამოწერილი გაქ
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2979,7 +3405,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -2991,7 +3417,7 @@ msgstr[0] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -2999,7 +3425,7 @@ msgstr[0] "მოწვევა გაიგზავნა შემდეგ
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3009,7 +3435,7 @@ msgstr ""
"ზრდას!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3017,27 +3443,28 @@ msgstr ""
"გამოსაყენებლად."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "ელ. ფოსტის მისამართები"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "დასაპატიჟებელი მოგობრების მისამართები (თითო ხაზზე თითო)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "პირადი შეტყობინება"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "დაუმატეთ პირადი შეტყობინება მოწვევას (არასავალდებულო)."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "გაგზავნა"
@@ -3045,7 +3472,7 @@ msgstr "გაგზავნა"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s-მა დაგპატიჟათ რომ შეუერთდეთ მას %2$s-ზე"
@@ -3055,7 +3482,7 @@ msgstr "%1$s-მა დაგპატიჟათ რომ შეუერთ
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3112,167 +3539,183 @@ msgstr ""
"\n"
"პატივისცემით, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "გჯუფში გაწევრიანებისათვის საჭიროა ავტორიზაცია."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s გაწევრიანდა ჯგუფში %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "გჯუფის დატოვებისათვის საჭიროა ავტორიზაცია."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "თვენ არ ხართ ამ ჯგუფის წევრი."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s-მა დატოვა ჯგუფი %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "არასწორი მისასალმებელი ტექსტი. სიმბოლოების მაქს. რაოდენობაა 255."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr ""
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "შენახვა"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "უკვე ავტორიზირებული ხართ."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "არასწორი მომხმარებლის სახელი ან პაროლი."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "შესვლა"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "საიტზე შესვლა"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "დამიმახსოვრე"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "მომავალში ავტომატურად შემიყვანე; არა საზიარო კომპიუტერებისათვის!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "დაკარგეთ ან დაგავიწყდათ პაროლი?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3280,11 +3723,11 @@ msgstr ""
"უსაფრთხოების მიზნებისათვის, გთხოვთ შეიყვანოთ თქვენი მომხ. სახელი და პაროლი "
"პარამეტრების შეცვლამდე."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "შედი საკუთარი მომხ. სახელით და პაროლით."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3322,19 +3765,22 @@ msgid "New application"
msgstr "ახალი აპლიკაცია"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "აპლიკაციის დასარეგისტრირებლად საჭიროა ავროტიზაცია."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "აპლიკაციაში დასარეგისტრირებლად გამოიყენეთ ეს ფორმა."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "წყაროს URL სავალდებულოა."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "აპლიკაციის შექმნა ვერ მოხერხდა."
@@ -3343,11 +3789,22 @@ msgstr "აპლიკაციის შექმნა ვერ მოხე
msgid "New group"
msgstr "ახალი ჯგუფი"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "თვენ არ ხართ ამ ჯგუფის წევრი."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "ახალი ჯგუფის შესაქმნელად გამოიყენეთ ეს ფორმა."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "ახალი შეტყობინება"
@@ -3397,7 +3854,9 @@ msgstr "ახალი შეტყობინება"
msgid "Notice posted"
msgstr "შეტყობინება დაიპოსტა"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3406,16 +3865,21 @@ msgstr ""
"მოძებნეთ შეტყობინებები %%site.name%%-ზე მათი შიგთავსის მიხედვით. გამოყავით "
"ფრაზები სივრცით; საძიებო ფრაზა 3 სიმბოლოზე მეტი უნდა იყოს."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "ტექსტური ძიება"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "\"%1$s\"–ს ძიების შედეგები %2$s–ზე"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3423,7 +3887,9 @@ msgid ""
msgstr ""
"პირველმა [დაპოსტე ამ თემაზე](%%%%action.newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3432,14 +3898,17 @@ msgstr ""
"[დარეგისტრირდი](%%%%action.register%%%%) და იყავი პირველი ვინც ამ თემაზე "
"[დაპოსტავს](%%%%action.newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "განახლებები \"%s\"–თ"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "განახლებები, რომლებიც შეიცავენ საძიებო სიტყვას \"%1$s\" %2$s–ზე!"
#: actions/nudge.php:85
@@ -3478,30 +3947,30 @@ msgid "You have not registered any applications yet."
msgstr "თქვენ ჯერჯერობით არცერთი აპლიკაცია არ დაგირეგისტრირებიათ."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "მიერთებული აპლიკაციები"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "თქვენ არ ხართ ამ აპლიკაციის მომხმარებელი."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "%s აპლიკაციის მიერ ზვდომის გაუქმება ვერ ხერხდება."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3509,7 +3978,7 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
"თქვენ არცერთი აპლიკაციისთვის არ მიგიციათ თქვენი ანგარიშის გამოყენების უფლება."
@@ -3517,13 +3986,23 @@ msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "API მეთოდი ვერ მოიძებნა."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "API მეთოდი ვერ მოიძებნა."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "შეტყობინებას პრფილი არ გააჩნია."
@@ -3533,6 +4012,16 @@ msgstr "შეტყობინებას პრფილი არ გაა
msgid "%1$s's status on %2$s"
msgstr "%1$s–ის სტატუსი %2$s–ზე"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "მიმღები მომხმარებელი ვერ მოიძებნა."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3546,16 +4035,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "გთხოვთ გამოიყენოთ მხოლოდ %s URL–ები წმინდა HTTP მეთოდით."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "მონაცემთა ფორმატი მხარდაჭერილი არ არის."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "პიროვნებების ძიება"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "შეტყობინებების ძიება"
@@ -3569,69 +4059,80 @@ msgid "Manage various other options."
msgstr "სხა მრავალნაირი პარამეტრების მართვა."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (უფასო სერვისი)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "შეამოკლე URL–ები შემდეგით"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "გამოსაყენებელი შემოკლების ავტომატური სერვისი."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "პროფილის დიზაინების ნახვა"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "აჩვენე ან დამალე პროფილის დიზაინები."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "URL–ს შემოკლების სერვისი ძალიან გრძელია (მაქს. 50 სიმბოლო)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "მომხმარებლის ID მითითებული არ არის."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr ""
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr ""
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr ""
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr ""
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "%1$s-ის გამავალი ფოსტა - გვერდი %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "%s-ის გამავალი ფოსტა"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"ეს არის თქვენი გამავალი ფოსტა, რომელშიც ჩამოთვლილია პირადი შეტყობინებები "
@@ -3645,7 +4146,8 @@ msgstr "შეცვალეთ პაროლი"
msgid "Change your password."
msgstr "შეცვალეთ თქვენი პაროლი."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "პაროლის შეცვლა"
@@ -3653,48 +4155,50 @@ msgstr "პაროლის შეცვლა"
msgid "Old password"
msgstr "ძველი პაროლი"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "ახალი პაროლი"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 ან მეტი სიმბოლო"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "ვადასტურებ"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "იგივე რაც ზედა პაროლი"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "შეცვლა"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "პაროლი უნდა შედგებოდეს 6 ან მეტი სიმბოლოსგან."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "პაროლები არ ემთხვევა."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "არასწორი ძველი პაროლი"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "შეცდომა მომხმარებლის შენახვისას; არასწორი."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "ვერ ვინახავ ახალ პაროლს."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "პაროლი შენახულია."
@@ -3908,7 +4412,7 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "მიმაგრებები"
@@ -3981,7 +4485,9 @@ msgstr "სერვერი რომელზეც მიემართო
msgid "Save paths"
msgstr "გზების დამახსოვრება"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3991,7 +4497,8 @@ msgstr ""
"მიხედვით. გამოყავით ფრაზები სივრცით; საძიებო ფრაზა 3 სიმბოლოზე მეტი უნდა "
"იყოს."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "პიროვნებების ძიება"
@@ -4016,12 +4523,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "შეტყობინების ლიცენზია ‘%1$s’ შეუთავსებელია საიტის ლიცენზიასთან ‘%2$s’."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "პროფილის პარამეტრები"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4029,33 +4536,34 @@ msgstr ""
"თქვენს შესახებ."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "ინფორმაცია პროფილზე"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1–64 პატარა ასოები ან ციფრები. პუნქტუაციები ან სივრცეები დაუშვებელია"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "სრული სახელი"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "ვებ. გვერსი"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "თქვენი ვებ. გვერდის URL, ბლოგი, ან პროფილი სხვა საიტზე"
@@ -4063,138 +4571,149 @@ msgstr "თქვენი ვებ. გვერდის URL, ბლოგი
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
msgstr[0] "აღწერეთ საკუთარი თავი და თქვენი ინტერესები %d სიმბოლოთი"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "აღწერეთ საკუთარი თავი და თქვენი ინტერესები"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "ბიოგრაფია"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "მდებარეობა"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "გააზიარე ჩემი მდებარეობა შეტყობინებების დაპოსტვისას"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "სანიშნეები"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"საკუთარი სანიშნეები (ასოები, ციფრები, -, ., და _). გამოყავით მძიმით ან "
"სივრცით"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "ენა"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "სასურველი ენა"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "დროის სარტყელი"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "რომელ დროის სარტყელში ხართ ხომლე ჩვეულებრივ?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"ავტომატურად გამოიწერე ის ვინც მე გამომიწერს (საუკეთესოა არა ადამიანებისთვის)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
msgstr[0] "ბიოგრაფია ძალიან გრძელია (არაუმეტეს %d სიმბოლო)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "დროის სარტყელი არ არის არჩეული."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "ენა ძალიან გრძელია (არაუმეტეს 50 სიმბოლო)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "არასწორი სანიშნე: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "მომხმარებლის განახლება ავტოგამოწერისათვის ვერ მოხერხდა."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "მდებარეობის პარამეტრების შენახვა ვერ მოხერხდა."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "პროფილის შენახვა ვერ მოხერხდა."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "სანიშნეების შენახვა ვერ მოხერხდა."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "პარამეტრები შენახულია."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "გახსენი ანგარიში"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4266,6 +4785,12 @@ msgstr ""
"რს არის %%site.name%%, [მიკრო–ბლოგინგის](http://en.wikipedia.org/wiki/Micro-"
"blogging) სერვისი, დაფუძნებული უფასო [StatusNet](http://status.net/) კოდზე."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s განახლებები ყველასგან!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4308,36 +4833,44 @@ msgstr "[დარეგისტრირდი](%%action.register%%) და
msgid "Tag cloud"
msgstr "სანიშნეების ღრუბელი"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "თქვენ უკვე ავტორიზირებული ხართ!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "ასეთი აღსადგენი კოდი არ არსებობს."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "ეს არ არის აღსადგენი კოდი."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "აღსადგენი კოდი უცნობი მომხმარებლისთვის."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "სადასტურე კოდს შეცდომა აქვს."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "სადასტურე კოდი ძალიან გრძელია. გთხოვთ ხელახლა დაიწყოთ."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr ""
"მომხმარებლის განახლება დადასტურებული ელ. ფოსტის მისამართით ვერ მოხერხდა."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4345,67 +4878,100 @@ msgstr ""
"თუ დაგავიწყდათ, ან დაკარგეთ თქვენი პაროლი, შეგიძლიათ მიიღოთ ახალი, თქვენს "
"ანგარიშში მითითებულ ელ. ფოსტის მისამართზე."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "თქვენ იდენტიფიცირებული ხართ, შეიყვანეთ ახალი პაროლი ქვევით. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "თქვენ იდენტიფიცირებული ხართ, შეიყვანეთ ახალი პაროლი ქვევით."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "პაროლის აღდგენა"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "მეტსახელი ან ელ. ფოსტის მისამართი"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "თქვენი მეტსახელი ამ სერვერზე, ან რეგისტრირებული ელ. ფოსტის მისამართი."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "აღდგენა"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "აღდგენა"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "პაროლის გადაყენება"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "პაროლის აღდგენა"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "პაროლის აღდგენა მოთხოვნილია"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "პაროლი შენახულია."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "უცნობი მოქმედება"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 ან მეტი სიმბოლო, და არ დაგავიწყდეთ!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "გადაყენება"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "შეიყვანეთ მეტსახელი ან ელ. ფოსტის მისამართი."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "ასეთი ელ. ფოსტის მისამართით ან სახელით არ არსებობს."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "ამ მომხმარებლისთვის ვერ მოიძებნა რეგისტრირებული ელ. ფოსტის მისამართი."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "მისამართის დადასტურების სენახვისას მოხდა შეცდომა."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4413,101 +4979,97 @@ msgstr ""
"პაროლის აღსადგენი ინსტრუქციები გამოიგზავნა თქვენს ანგარიშთან ასოცირებულ ელ. "
"ფოსტაზე."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "პაროლის მოულოდნელი გადაყენება."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "პაროლი უნდა შედგებოდეს 6 ან მეტი სიმბოლოსგან."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "პაროლი და დასტური არ ემთხვევა."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "მომხმარებელის დაყენებისას მოხდა შეცდომა."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "ახალი პაროლი წარმატებით იქნა შენახული. თქვენ ახლა ავტორიზირებული ხართ."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "ბოდიშს გიხდით, დარეგისტრირება მხოლოდ მოწვევითაა შესაძლებელი."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "ბოდიშს გიხდით, მოსაწვევი კოდი არასწორია."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "რეგისტრაცია წარმატებით დასრულდა"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "რეგისტრაცია"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "რეგისტრაცია არ არის დაშვებული."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "ვერ დარეგისტრირდებით თუ არ დაეთანხმებით ლიცენზიის პირობებს."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "ელ. ფოსტის მისამართი უკვე არსებობს."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "არასწორი მომხმარებლის სახელი ან პაროლი."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"ამ ფორმით შეგიძლიათ შექმნათ ახალი ანგარიში. შემდგომ შეძლებთ შეტყობინებების "
"დაპოსტვას და მეგობრებთან და კოლეგებთან ურთიერთობას. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1–64 პატარა ასოები ან ციფრები. პუნქტუაციები ან სივრცეები დაუშვებელია. "
-"სავალდებულო."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 ან მეტი სიმბოლო. სავალდებულო."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "იგივე, რაც პაროლი ზევით. სავალდებულო."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "ელ. ფოსტა"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"გამოიყენება მხოლოდ განახლებებისთვის, განცხადებებისთვის და პაროლის აღსადგენად"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "გრძელი სახელი, სასურველია თქვენი ნამდვილი სახელი"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "თქვენი ვებ. გვერდის URL, ბლოგი, ან პროფილი სხვა საიტზე"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "რომელ ქალაქში, რეგიონში, ქვეყანაში ხართ?"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
@@ -4515,23 +5077,23 @@ msgstr ""
"მე ვაცნობიერებ, რომ %1$s–ის შიგთავსი და მონაცემები არის პირადული და "
"კონციდენციალური."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "ჩემი ტექსტის და ფაილების საავტორო უფლება ეკუტვნის %1$s–ს."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "ჩემი ტექსტი და ფაილები ჩემივე საკუთრებაა."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "ყველა უფლება დაცულია."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4540,7 +5102,7 @@ msgstr ""
"ჩემი ტექსტი და ფაილები ხელმისაწვდომია %s–ით, გარდა ამ პირადი ინფორმაციისა: "
"პაროლი, ელ. ფოსტის მისამართი, IM მისამართი და ტელეფონის ნომერი."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4573,7 +5135,7 @@ msgstr ""
"\n"
"გმადლობთ რომ დარეგისტრირდით. იმედი გვაქვს ისიამოვნებთ ამ სერვისით."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4581,7 +5143,7 @@ msgstr ""
"(თქვენ უნდა მიიღოს ელ. წერილი მომენტალურად. ინსტრუქციებით, თუ როგორ "
"დაადასტუროთ თქვენი ელ. ფოსტის მისამართი.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4593,79 +5155,88 @@ msgstr ""
"ანგარიში [თავსებად მიკრობლოგინგის საიტზე](%%doc.openmublog%%), მაშინ "
"შეიყვანეთ თქვენი პროფილის URL ქვევით."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "დაშორებული გამოწერა"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "გამოიწერე დაშორებული მომხმარებელი"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "მომხმარებლის მეტსახელი"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "მომხმარებლის მეტსახელი რომელსაც გინდათ რომ მიჰყვეთ"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "პროფილის URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "თქვენი პროფილის URL სხვა თავსებად მიკრობლოგინგის სერვისზე"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "გამოწერა"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "პროფილის არასწორი URL (ცუდი ფორმატი)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"ეს არ არის პროფილის სწორი URL (YADIS დოკუმენტი არ არის, ან არასწორი XRDS–ა "
"განსაზღვრული)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "ეს ადგილობრივი პროფილია! შედით რომ გამოიწეროთ."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
-msgstr ""
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
+msgstr "შეტყობინების ჩასმა ვერ მოხერხდა."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "მხოლოდ ავტორიზირებულ მომხმარებლებს შეუძლიათ შეტყობინებების გამეორება."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "შეტყობინება მითითებული არ არის."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "საკუთარი შეტყობინების გამეორება არ შეიძლება."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "თქვენ უკვე გაიმეორეთ ეს შეტყობინება."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "გამეორებული"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "გამეორებული!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "პასუხები %s–ს"
@@ -4715,11 +5286,105 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "პასუხები %1$s–ს %2$s–ზე!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "მხოლოდ ავტორიზირებულ მომხმარებლებს შეუძლიათ შეტყობინებების გამეორება."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "თქვენ ჯერჯერობით არცერთი აპლიკაცია არ დაგირეგისტრირებიათ."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "ფაილის ატვირთვა"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"ასატვირთი ფაილი სცდება ფაილის დაშვებულ ზომას. upload_max_filesize დირექტივა "
+"php.ini-ში."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"ასატვირთი ფაილი სცდება MAX_FILE_SIZE დირექტივას, რომელიც მითითებული იყო HTML "
+"ფორმაში."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "ასატვირთი ფაილი მხოლოდ ნაწილობრივ აიტვირთა."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "დროებითი საქაღალდე ვერ მოიძებნა."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "ფაილის დისკზე ჩაწერა ვერ მოხერხდა."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "ფაილის არვირთვა გაჩერდა გაფართოების გამო."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "სისტემური შეცდომა ფაილის ატვირთვისას."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr ""
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "ფაილის ატვირთვა"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "თქვენ არ შეგიძლიათ მომხმარებლის როლის გაუქმება ამ საიტზე."
@@ -4728,7 +5393,7 @@ msgstr "თქვენ არ შეგიძლიათ მომხმარ
msgid "User doesn't have this role."
msgstr "მომხმარებელს არ გააჩნია ეს როლი."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4770,85 +5435,87 @@ msgstr ""
msgid "Save site settings"
msgstr "საიტის პარამეტრების შენახვა"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "აპლიკაციის სანახავად საჭიროა ავროტიზაცია."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "აპლიკაციის პროფილი"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr ""
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "დასახელება"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "ორგანიზაცია"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "აღწერა"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "სტატისტიკა"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "აპლიკაციის მოქმედებები"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "გასაღების და საიდუმლოს გადაყენება"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "წაშლა"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "ინფო აპლიკაციაზე"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "მომხმარებლის გასაღები"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "მომხმარებლის საიდუმლო"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "URL-ის ავტორიზაცია"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4856,37 +5523,44 @@ msgstr ""
"შენიშვნა: ჩვენ მხარს ვუჭერთ HMAC-SHA1 ხელმოწერებს. ჩვენ არ ვუჭერთ მხარს "
"მხოლოდ ტექსტური ხელმოწერის მეთოდს."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"დარწმუნებული ხართ რომ გნებავთ თქვენი მომხმარებლის გასაღების და საიდუმლოს "
"გადაყენება?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%1$s-ის რჩეული შეტყობინებები, გვერდი %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "რჩეული შეტყობინებების გამოთხოვნა ვერ მოხერხდა."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr ""
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr ""
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr ""
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4894,14 +5568,19 @@ msgstr ""
"თქვენ არ აგირჩევიათ არცერთი შეტყობინება. დააწკაპუნეთ ღილაკზე \"რჩეული\", რომ "
"ჩაინიშნოთ შეტყობინება მომავლისთვის ან გაამახვილოთ ყურადღება მასზე."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4909,7 +5588,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr ""
@@ -4927,82 +5607,89 @@ msgid "%1$s group, page %2$d"
msgstr ""
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr ""
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr ""
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "შენიშვნა"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr ""
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr ""
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "წევრები"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(არცერთი)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr ""
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "შექმნილია"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5012,7 +5699,7 @@ msgstr "წევრები"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5025,7 +5712,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5035,30 +5722,30 @@ msgid ""
msgstr ""
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr ""
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr ""
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr ""
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr ""
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr ""
@@ -5074,7 +5761,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5311,17 +5998,18 @@ msgstr "საერთო სასაიტო შეტყობინებ
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "შეინახე საერთოსასაიტო შეტყობინება"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS პარამეტრები"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
@@ -5329,58 +6017,59 @@ msgstr ""
"საშუალებით."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS არ არის ხელმისაწვდომი."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS მისამართი"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "მიმდინარე დადასტურებული SMS გააქტიურებული ტელ. ნომერი."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "ამ ტელ. ნომრის დასტური მოლოდინშია."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "დასტურის კოდი"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "შეიყვანეთ კოდი, რომელიც მიიღეთ თქვენს ტელეფონზე."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "დასტური"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMS ტელეფონის ნომერი"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "ტელ. ნომერი, პუნქტუაციის ან სივრცეების გარეშე, ქვეყნის კოდით."
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMS კონფიგურაცია"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5389,32 +6078,32 @@ msgstr ""
"საგრძნობი გადასახადები დამაკისროს."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "SMS კონფიგურაცია შენახულია."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "ტელეფონის ნომერი არ არის."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "ოპერატორი შერჩეული არ არის."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "ეს უკვე არის ტქვენი ტელეფონის მისამართი."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "ეს ტელეფონის ნომერი სხვას ეკუთვნის."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5424,39 +6113,39 @@ msgstr ""
"ინსტრუქცია გამოყენებისთვის."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "ეს დასტურის კოდი არასწორია."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS დადასტურება გაუქმებულია."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "ეს არ არის თქვენი ნომერი."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "SMS ტელეფონის ნომერი წაშლილია."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "მობილური ოპერატორი"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "აირჩიეთ ოპერატორი"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5467,8 +6156,9 @@ msgstr ""
"გაგვაგებინეთ ამის შესახებ, მოგვწერეთ მისამართზე - %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "კოდი არ არის შეყვანილი"
#. TRANS: Menu item for site administration
@@ -5540,16 +6230,20 @@ msgstr "თქვენ არ გაქვთ გამოწერილი
msgid "Could not save subscription."
msgstr "გამოწერის დამახსოვრება ვერ მოხერხდა."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "ეს მოქმედება მხოლოდ POST მოთხოვნებს იღებს."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
"თქვენ არ შეგიძლიათ გამოიწეროთ 0მბ-იანი 0.1 დაშორებული პროფილი ამ მოქმედებით."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "გამოწერილია"
@@ -5581,7 +6275,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "არის ხალხი, ვინც %s-ს შეტყობინებებს თვალ-ყურს ადევნებს."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5592,7 +6286,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s არ ჰყავს გამომწერები. გინდა გახდე პირველი?"
@@ -5602,7 +6296,7 @@ msgstr "%s არ ჰყავს გამომწერები. გინ
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5635,7 +6329,7 @@ msgstr "ეს არის ხალხი ვის შეტყობინ
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5655,23 +6349,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s არავის უსმენს."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "შეტყობინებების RSS მონიშნული %s-თ (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5704,12 +6399,15 @@ msgstr ""
msgid "Tag %s"
msgstr "სანიშნე %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "მომხმარებლის პროფილი"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "ფოტო"
@@ -5725,6 +6423,11 @@ msgstr ""
"სანიშნეები ამ მომხმარებლისთვის (ასოები, ციფრები, -, ., და _). გამოყავით "
"მძიმით ან სივრცით"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "არასწორი სანიშნე: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5732,10 +6435,6 @@ 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 ""
@@ -5746,6 +6445,7 @@ msgstr ""
msgid "No such tag."
msgstr "ასეთი სანიშნე არ არსებობს."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "თქვენ არ დაგიბლოკავთ ეს მომხმარებელი."
@@ -5766,7 +6466,7 @@ msgstr "არცერთი პროფილის ID არ არის
msgid "Unsubscribed"
msgstr "გამოწერა გაუქმებულია"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5800,12 +6500,11 @@ msgstr "არასწორი მისასალმებელი ტე
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "პროფილი"
@@ -5862,55 +6561,71 @@ msgstr "მიეცეთ თუ არა მომხმარებლებ
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "საიტის პარამეტრების შენახვა"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "გამოწერის ავტორიზაცია"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"გთხოვთ გადახედოთ ამ დეტალებს, რომ დარწმუნდეთ რომ გინდათ ამ მომხმარებლის "
"განახლებების გამოწერა. თუ თქვენ არ გინდოდათ გამოწერა, მაშინ გააჭირეთ ღილაკს "
"\"უარყოფა\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "ლიცენზია"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "მიღება"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "გამოიწერე ეს მომხმარებელი"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "უარყოფა"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "ამ გამოწერის უარყოფა"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "ავტორიზაციის მოთხოვნა არ არის!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "გამოწერა ავტორიზირებულია"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5920,11 +6635,12 @@ msgstr ""
"გადაამოწმეთ საიტის ინსტრუქციებში გამოწერის ავტორიზირების დეტალები. თქვენი "
"გამოწერის ტოკენია:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "გამოწერა უარყოფილია"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5934,48 +6650,73 @@ msgstr ""
"გადაამოწმეთ საიტის ინსტრუქციებში გამოწერის მთლიანად უარყოფის შესახებ "
"დეტალები."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "მსმენელის URI ‘%s’ აქ ვერ მოიძებნა."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
+msgstr "წყაროს URL ძალიან გრძელია."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "პროფილის URL ‘%s’ ლოკალური მომხმარებლისთვისაა განკუთვნილი."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
+msgstr "პროფილის URL ‘%s’ ლოკალური მომხმარებლისთვისაა განკუთვნილი."
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"გამოსაწერი მომხმარებლის ნაკადის ლიცენზია ‘%1$s’ შეუთავსებელია საიტის "
+"ლიცენზიასთან ‘%2$s’."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "ავატარის URL ‘%s’ არ არის სწორი."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "ვერ ვკითხულობ ავატარის URL ‘%s’."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "ავატარის სურათის ფორმატი არასწორია URL ‘%s’."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "პროფილის დიზაინი"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -5983,7 +6724,7 @@ msgstr ""
"აირჩიეთ, როგორ გნებავთ გამოიყურებოდეს თქვენი პროფილი ფონური სურათისა და "
"ფერთა პალიტრის შეცვლით."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "ისიამოვნეთ ჰოთ დოგით!"
@@ -6013,7 +6754,7 @@ msgstr "სცადეთ [ჯგუფების მოძებნა](%%ac
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "%1$s-ს განახლებები %2$s-ზე!"
@@ -6074,7 +6815,7 @@ msgid "Plugins"
msgstr "დამატებები"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "ვერსია"
@@ -6083,32 +6824,32 @@ msgid "Author(s)"
msgstr "ავტორი(ები)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "რჩეული"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s-მა (@%s) დაამატა თქვენი შეტყობინება თავის რჩეულებში"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "ვერ ვამოუშავებ URL '%s'"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "რობინი ფიქრობს რაღაც შეუძლებელია."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6122,7 +6863,7 @@ msgstr[0] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6131,7 +6872,7 @@ msgstr[0] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6140,7 +6881,7 @@ msgstr[0] ""
"ბაიტს."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "ფაილის არასწორი სახელი."
@@ -6198,7 +6939,7 @@ msgid "Could not create login token for %s"
msgstr "შესასვლელი ტოკენის შექმნა %s-სთვის ვერ მოხერხდა."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "ბაზის სახელი ან DSN ვერსად ვერ მოიძებნა."
@@ -6225,23 +6966,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "ასეთი პროფილი (%1$d) შეტყობინებისათვის (%2$d) არ არსებობს."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "ბაზის შეცდომა hashtag-ის ჩასმისას: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "პრობლემა შეტყობინების შენახვისას. ძალიან გრძელია."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "პრობლემა შეტყობინების შენახვისას. მომხმარებელი უცნობია."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6249,7 +6990,7 @@ msgstr ""
"კიდევ დაპოსტეთ."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6258,43 +6999,43 @@ msgstr ""
"რამდენიმე წუთში ისევ დაპოსტეთ."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "თქვენ აგეკრძალათ ამ საიტზე შეტყობინებების დაპოსტვა."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "პრობლემა შეტყობინების შენახვისას."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
#, fuzzy
msgid "Bad type provided to saveKnownGroups."
msgstr "saveKnownGroups-სათვის არასწორი ტიპია მოწოდებული"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "პრობლემა ჯგუფის ინდექსის შენახვისას."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6302,7 +7043,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
@@ -6310,7 +7051,7 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6382,35 +7123,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "გამარჯობა @%2$s, კეთილი იყოს თქვენი მობრძანება %1$s-ზე!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "ერთი მომხმარებელი არ განსაზღვრულა ერთარედთი-მომხმარებლის რეჟიმისთვის."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "ჯგუფის შექმნა ვერ მოხერხდა."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "ჯგუფის URI-ს მინიჭება ვერ მოხერხდა."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "ჯგუფის წევრობის მინიჭება ვერ მოხერხდა."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "თქვენ ვერ შეძლებთ მომხმარებლების წაშლას."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6447,211 +7209,214 @@ msgid "Other"
msgstr "სხვა"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "უსათაურო გვერდი"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "საიტის ძირითადი ნავიგაცია"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "პირადი პროფილი და მეგობრების ნაკადი"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "პირადი"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "შეცვალე ელ. ფოსტა, ავატარი, პაროლი, პროფილი"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "ანგარიში"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "სერვისებთან დაკავშირება"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "კავშირი"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "საიტის კონფიგურაცია"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "ადმინი"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "მოიწვიე მეგობრები და კოლეგები %s-ზე"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "მოწვევა"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "გასვლა საიტიდან"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "გასვლა"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "გახსენი ანგარიში"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "რეგისტრაცია"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "საიტზე შესვლა"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "შესვლა"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "დამეხმარეთ!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "დახმარება"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "მოძებნე ხალხი ან ტექსტი"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "ძიება"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "საიტის შეტყობინება"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "ლოკალური ხედები"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "გვერდის შეტყობინება"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "საიტის მეორადი ნავიგაცია"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "დახმარება"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "საიტის შესახებ"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "ხდკ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "მპ"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "პირადი"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "წყარო"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "კონტაქტი"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "იარლიყი"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet კოდის ლიცენზია"
@@ -6659,7 +7424,7 @@ msgstr "StatusNet კოდის ლიცენზია"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6669,7 +7434,7 @@ msgstr ""
"(%%site.broughtbyurl%%)-ს მიერ."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** არის მიკრობლოგინგის სერვისი."
@@ -6678,7 +7443,7 @@ msgstr "**%%site.name%%** არის მიკრობლოგინგი
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6690,51 +7455,51 @@ msgstr ""
"org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "საიტის შიგთავსის ლიცენზია"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "%1$s ის შიგთავსი და მონაცემები არის პირადული და კონფიდენციალური."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr "შიგთავსი და მონაცემები %1$s-ის საკუთრებაა. ყველა უფლება დაცულია."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"შიგთავსი და მონაცემები წვლილის შემტანების საკუთრებაა. ყველა უფლება დაცულია."
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "%1$s-ს მთლიანი შიგთავსი და მონაცემები ხელმისაწვდომია %2$s ლიცენზიით."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "გვერდებათ დაყოფა"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "შემდეგი"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "წინა"
@@ -6743,10 +7508,80 @@ msgstr "წინა"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "უცნობი ენა \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "ფოტო"
+msgid "Cannot force remote user to subscribe."
+msgstr "მიუთითეთ მომხმარებლის სახელი, რომელსაც გინდათ ყური დაუგდოთ."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "ფაილის ტიპი უცნობია"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "თქვენ უკვე ხართ ამ ჯგუფის წევრი."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "მოძებნე შეტყობინებებში"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "ასეთი მომხმარებელი არ არსებობს."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6818,7 +7653,7 @@ msgid "User configuration"
msgstr "მომხმარებლის კონფიგურაცია"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "მომხმარებელი"
@@ -6864,19 +7699,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6899,28 +7738,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "შეტყობინების ჩასმა ვერ მოხერხდა."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის ჩასმისას."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "ბაზამ დაუშვა შეცდომა OAuth აპლიკაციის მომხმარებლის ჩასმისას."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "ამ აპლიკაციის ხატულა"
@@ -7032,17 +7875,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "უკუგება"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "არ წაშალო ეს შეტყობინება"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "ავტორი"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "მომწოდებელი"
@@ -7073,6 +7922,11 @@ msgstr "პაროლის ცვლილება არ არის ნ
msgid "Block"
msgstr "ბლოკირება"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "დაბლოკე ეს მომხმარებელი"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7187,7 +8041,7 @@ msgstr "სრული სახელი: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "მდებარეობა: %s"
@@ -7195,7 +8049,7 @@ msgstr "მდებარეობა: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "გვერდი: %s"
@@ -7426,26 +8280,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "კონფიგურაციის ფაილი ვერ მოიძებნა. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "კონფიგურაციის ფაილები შემდეგ ადგილებში ვეძებე: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "თუ გინდათ ინსტალატორი გაუშვით ამის გასასწორებლად."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "გადადი ამ ინსტალატორზე."
@@ -7489,14 +8343,19 @@ msgstr "ავტორიზირებული შეერთებულ
msgid "Database error"
msgstr "მონაცემთა ბაზის შეცდომა"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "ამ მომხმარებლის წაშლა"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "ფაილის ატვირთვა"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7517,26 +8376,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "გამორთვა"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "გადაყენება"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "შეცვალე ფერები"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "გამოიყენე პირვანდელი მდგომარეობა"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "დააბრუნე პირვანდელი დიზაინი"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "პირვანდელის პარამეტრების დაბრუნება"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "შეინახე დიზაინი"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "დიზაინის განახლება ვერ მოხერხდა."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "დიზაინის პირველადი პარამეტრები დაბრუნებულია."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "%s აპლიკაციის მიერ ზვდომის გაუქმება ვერ ხერხდება."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "ამოშალე რჩეულებიდან ეს შეტყობინება"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "რჩეულის გაუქმება"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "ჩაამატე რჩეულებში ეს შეტყობინება"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "რჩეული"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7553,6 +8460,18 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr ""
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7587,26 +8506,26 @@ msgstr "წინ"
msgid "Grant this user the \"%s\" role"
msgstr "მიანიჭე ამ მომხმარებელს \"%s\" როლი"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1–64 პატარა ასოები ან ციფრები. პუნქტუაციები ან სივრცეები დაუშვებელია"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "საწყისი გვერდის URL, ან ჯგუფის/თემის ბლოგი"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "აღწერე ჯგუფი ან თემა"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "არწერე ჯგუფი ან თემა %d სიმბოლოთი"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
@@ -7614,7 +8533,7 @@ msgstr ""
"ჯგუფის მდებარეობა არსებობის შემთხვევაში. მაგ.: \"ქალაქი, ქვეყანა (ან რეგიონი)"
"\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7720,54 +8639,55 @@ msgstr "%s ჯგუფის შეტყობინებებში გა
msgid "This page is not available in a media type you accept"
msgstr "ეს გვერდი მიუწვდომელია იმ მედია ფორმატში რომელსაც თქვენ იღებთ"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "სურათის ფორმატი მხარდაჭერილი არ არის."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "ეს ფაილი ძალიან დიდია. ფაილის მაქს. ზომაა %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "ნაწილობრივი ატვირთვა."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "სისტემური შეცდომა ფაილის ატვირთვისას."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "სურათი არ არის, ან ფაილი დაზიანებულია."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "ფაილი დაიკარგა."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "ფაილის ტიპი უცნობია"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
msgstr[0] "მბ"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
msgstr[0] "კბ"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7787,23 +8707,25 @@ msgstr ""
msgid "Leave"
msgstr "დატოვება"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "შედი მომხ. სახელით და პაროლით."
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "ახალი ანგარიშის გერისტრაცია"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "ელ. ფოსტის მისამართის დადასტურება"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7834,14 +8756,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s ამიერიდან ყურს უგდებს თქვენს შეტყობინებებს %2$s-ზე."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7856,7 +8778,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7883,14 +8805,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "ბიოგრაფია: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "%s-ზე დასაპოსტი ახალი ელ. ფოსტის მისამართი"
@@ -7898,7 +8820,7 @@ msgstr "%s-ზე დასაპოსტი ახალი ელ. ფოს
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7921,19 +8843,19 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s სტატუსი"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS დადასტურება"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
@@ -7941,15 +8863,15 @@ msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
-msgstr ""
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
+msgstr "თქვენ აგეკრძალათ გამოწერა."
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7978,7 +8900,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "ახალი პირადი შეტყობინება %s-სგან"
@@ -7987,7 +8909,7 @@ msgstr "ახალი პირადი შეტყობინება %s-
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8022,7 +8944,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s-მა (@%s) დაამატა თქვენი შეტყობინება თავის რჩეულებში"
@@ -8032,7 +8954,7 @@ msgstr "%s-მა (@%s) დაამატა თქვენი შეტყო
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8071,7 +8993,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8084,7 +9006,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s-მა (@%s) გამოაგზავნა შეტყობინება თქვენს საყურადღებოდ"
@@ -8095,7 +9017,7 @@ msgstr "%s-მა (@%s) გამოაგზავნა შეტყობი
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8122,11 +9044,11 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "მხოლოდ მომხმარებელს შეუძლია თავისი ფოსტის წაკითხვა."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8135,10 +9057,6 @@ msgstr ""
"შეტყობინებები, რომ ჩაერთოთ საუბრებში სხვა ხალხთან. ხალხს შეუძლია "
"გამოგიგზავნონ შეტყობინებები მხოლოდ თქვენ დასანახად."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "ვისგან"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "შეტყობინების გაცრა (გა-parse-ვა) ვერ მოხერხდა."
@@ -8167,42 +9085,6 @@ msgstr "შეტყობინების ტიპი არ არის
msgid "There was a database error while saving your file. Please try again."
msgstr "ფაილის შენახვისას მოხდა მონაცემთა ბაზის შეცდომა. გთხოვთ კიდევ სცადოთ."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"ასატვირთი ფაილი სცდება ფაილის დაშვებულ ზომას. upload_max_filesize დირექტივა "
-"php.ini-ში."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"ასატვირთი ფაილი სცდება MAX_FILE_SIZE დირექტივას, რომელიც მითითებული იყო HTML "
-"ფორმაში."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "ასატვირთი ფაილი მხოლოდ ნაწილობრივ აიტვირთა."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "დროებითი საქაღალდე ვერ მოიძებნა."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "ფაილის დისკზე ჩაწერა ვერ მოხერხდა."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "ფაილის არვირთვა გაჩერდა გაფართოების გამო."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8223,7 +9105,7 @@ msgstr "ფაილის MIME ტიპი ვერ დადგინდა.
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8232,7 +9114,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8266,18 +9148,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "გაგზავნა"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "შეტყობინება"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "ვისგან"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "მეტსახელში დასაშვებია მხოლოდ პატარა ასოები და ციფრები."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8292,11 +9183,11 @@ msgstr "შეტყობინების გაგზავნა"
msgid "What's up, %s?"
msgstr "რა არის ახალი %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "ფაილის მიმაგრება"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "მიამაგრე ფაილი"
@@ -8317,55 +9208,59 @@ msgstr ""
"სჭირდება, გთხოვთ სცადოთ მოგვიანებით"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "ჩ"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "ს"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "ა"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "დ"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr ""
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr ""
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "უპასუხე ამ შეტყობინებას"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "პასუხი"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "შეტყობინების წაშლა"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "შეტყობინება გამეორებულია"
@@ -8402,77 +9297,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "პირადი"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "პასუხები"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "პროფილი"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "რჩეულები"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "შემომავალი წერილების ყუთი"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "თქვენი შემომავალი შეტყობინებები"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "გამავალი წერილების ყუთი"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "თქვენი გაგზავნილი წერილები"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "%s-ს შეტყობინებებში გამოყენებული სანიშნეები"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "უცნობი"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "გამოწერები"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "ყველა გამოწერა"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "გამომწერები"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "ყველა გამომწერი"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "მომხმარებლის იდ"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr ""
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "ჯგუფები"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "დღიური საშუალო"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "ყველა ჯგუფი"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "მეთოდი განუხორციელებელია."
@@ -8519,7 +9450,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "ჩამოართვი \"%s\" როლი ამ მომხმარებელს"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "API მეთოდი ვერ მოიძებნა."
@@ -8610,6 +9541,10 @@ msgstr "მოწვევა"
msgid "Invite friends and colleagues to join you on %s"
msgstr "მოიწვიე მეგობრები და კოლეგები %s-ზე"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "გამოიწერე ეს მომხმარებელი"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8724,118 +9659,130 @@ msgstr "გამოწერის გაუქმება"
msgid "User %1$s (%2$d) has no profile record."
msgstr "მომხმარებელს პროფილი არ გააჩნია."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "ავატარის რედაქტირება"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "მომხმარებლის მოქმედებები"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "მომხმარებლის წაშლა პროგრესშია..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "პროფილის პარამეტრების რედაქტირება"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "რედაქტირება"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "გაუგზავნე პირდაპირი შეტყობინება ამ მომხმარებელს"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "შეტყობინება"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "მოდერაცია"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "მომხმარებლის როლი"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "ადმინისტრატორი"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "მოდერატორი"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "ავტორიზებული არ ხართ."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "რამდენიმე წამის წინ"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "დაახლოებით 1 წუთის წინ"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "დაახლოებით 1 საათის წინ"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "დაახლოებით 1 დღის წინ"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "დაახლოებით 1 თვის წინ"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "დაახლოებით 1 წლის წინ"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s არ არის სწორი ფერი!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr ""
@@ -8858,31 +9805,18 @@ msgstr[0] ""
"გააგზავნეთ %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "ზომა არასწორია."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "მომხმარებლის ID მითითებული არ არის."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po
index a93947898d..8cd2084842 100644
--- a/locale/ko/LC_MESSAGES/statusnet.po
+++ b/locale/ko/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Korean (한국어)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Changwoo
@@ -11,17 +11,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:02+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:10+0000\n"
"Language-Team: Korean \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ko\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -76,8 +76,9 @@ msgid "Save access settings"
msgstr "접근 설정을 저장"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -87,13 +88,13 @@ msgstr "접근 설정을 저장"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "저장"
@@ -101,7 +102,7 @@ msgstr "저장"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "해당하는 페이지 없음"
@@ -111,6 +112,8 @@ msgstr "해당하는 페이지 없음"
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -126,13 +129,23 @@ msgstr "해당하는 페이지 없음"
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -140,15 +153,15 @@ msgstr "해당하는 페이지 없음"
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "해당하는 이용자 없음"
@@ -162,9 +175,10 @@ msgstr "%s 및 친구들, %d 페이지"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s 및 친구들"
@@ -273,7 +287,7 @@ msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -305,7 +319,21 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "이용자를 업데이트 할 수 없습니다."
@@ -315,18 +343,23 @@ msgstr "이용자를 업데이트 할 수 없습니다."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "이용자가 프로필을 가지고 있지 않습니다."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "프로필을 저장 할 수 없습니다."
@@ -336,8 +369,8 @@ msgstr "프로필을 저장 할 수 없습니다."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, fuzzy, php-format
msgid ""
@@ -354,13 +387,14 @@ msgstr[0] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "디자인 설정을 저장할 수 없습니다."
@@ -368,48 +402,59 @@ msgstr "디자인 설정을 저장할 수 없습니다."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "디자인을 업데이트 할 수 없습니다."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s 타임라인"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s 구독"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "좋아하는 글들"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "%s 그룹 회원"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "자기 자신은 차단할 수 없습니다."
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "이용자 차단에 실패했습니다."
@@ -464,7 +509,8 @@ msgstr "받는 사용자가 없습니다."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -489,8 +535,9 @@ msgid "This status is already a favorite."
msgstr "이 소식은 이미 관심소식으로 등록되어 있습니다."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "관심소식을 생성할 수 없습니다."
@@ -500,7 +547,8 @@ msgid "That status is not a favorite."
msgstr "이 소식은 관심소식이 아닙니다."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "관심소식을 삭제할 수 없습니다."
@@ -546,9 +594,9 @@ msgstr "타겟 이용자를 찾을 수 없습니다."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
@@ -556,21 +604,22 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "유효한 별명이 아닙니다"
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "홈페이지 주소형식이 올바르지 않습니다."
@@ -578,9 +627,9 @@ msgstr "홈페이지 주소형식이 올바르지 않습니다."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "실명이 너무 깁니다. (최대 255글자)"
@@ -588,14 +637,15 @@ msgstr "실명이 너무 깁니다. (최대 255글자)"
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -605,9 +655,9 @@ msgstr[0] "설명이 너무 깁니다. (최대 %d 글자)"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "위치가 너무 깁니다. (최대 255글자)"
@@ -618,8 +668,8 @@ msgstr "위치가 너무 깁니다. (최대 255글자)"
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -635,18 +685,16 @@ msgstr "사용할 수 없는 별명 : \"%s\""
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "별명 \"%s\" 이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -657,28 +705,32 @@ msgstr ""
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "찾을 수가 없습니다."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "당신은 이미 이 그룹의 멤버입니다."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "이미 차단된 이용자입니다."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "이용자 %1$s 의 그룹 %2$s 가입에 실패했습니다."
@@ -690,9 +742,11 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -729,7 +783,7 @@ msgid "Upload failed."
msgstr "실행 실패"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "허용되지 않는 요청입니다."
@@ -752,20 +806,25 @@ msgid "Request token already authorized."
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "세션토큰에 문제가 있습니다. 다시 시도해주십시오."
@@ -783,18 +842,22 @@ msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "잘못된 폼 제출"
@@ -845,29 +908,31 @@ msgstr "계정"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "별명"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "비밀 번호"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -941,6 +1006,7 @@ msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -960,39 +1026,52 @@ msgstr "자기 자신의 소식은 재전송할 수 없습니다."
msgid "Already repeated that notice."
msgstr "이미 재전송된 소식입니다."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "API 메서드 발견 안 됨."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "지원하지 않는 형식입니다."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "삭제된 소식입니다."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "발견된 ID의 상태가 없습니다."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "이 통지를 지울 수 없습니다."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "통지 삭제"
@@ -1048,7 +1127,7 @@ msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "그룹을 업데이트 할 수 없습니다."
@@ -1069,13 +1148,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s님이 %2$s/%3$s의 업데이트에 답변했습니다."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s 공개 타임라인"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "모두로부터의 업데이트 %s개!"
@@ -1124,202 +1204,269 @@ msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "통지들의 내용 찾기"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "해당 id의 프로필이 없습니다."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API 메서드를 구성중 입니다."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "API 메서드 발견 안 됨."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "해당하는 파일이 없습니다."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "%2$s에 있는 %1$s 및 친구들의 업데이트!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "예약 구독을 추가 할 수 없습니다."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "통지들의 내용 찾기"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "통지들의 내용 찾기"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "알려지지 않은 행동"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "좋아하는 게시글로 추가하기"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "해당하는 파일이 없습니다."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s 그룹 회원"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "%s 사용자가 멤버인 그룹"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "예약 구독을 추가 할 수 없습니다."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "통지들의 내용 찾기"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "알려지지 않은 행동"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "모든 회원"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "해당하는 파일이 없습니다."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "관심소식을 삭제할 수 없습니다."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "그러한 그룹이 없습니다."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "모든 회원"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "API 메서드 발견 안 됨."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "해당하는 파일이 없습니다."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "당신은 이 프로필에 구독되지 않고있습니다."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "구독을 저장할 수 없습니다."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "해당하는 파일이 없습니다."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "당신은 이 프로필에 구독되지 않고있습니다."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "구독을 저장할 수 없습니다."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "%s에 의해 구독되는 사람들"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "알 수 없는 종류의 파일입니다"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "구독하고 있지 않습니다!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1328,11 +1475,15 @@ msgstr "해당하는 첨부파일이 없습니다."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "별명이 없습니다."
@@ -1349,7 +1500,7 @@ msgstr "옳지 않은 크기"
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "아바타"
@@ -1362,42 +1513,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "당신의 개인 아바타를 업로드할 수 있습니다. 최대 파일 크기는 %s 입니다."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "이용자가 프로필을 가지고 있지 않습니다."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "아바타 설정"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "원래 설정"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "미리보기"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "삭제"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1415,31 +1576,72 @@ msgstr "자르기"
msgid "No file uploaded."
msgstr "파일을 업로드하지 않았습니다."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "그림에서 당신의 아바타로 사용할 영역을 지정하십시오."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "파일 데이터를 잃어버렸습니다."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "아바타가 업데이트 되었습니다."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "아바타 업데이트 실패"
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "아바타가 삭제되었습니다."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "배경"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1447,7 +1649,8 @@ msgstr "이미 차단된 이용자입니다."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "사용자를 차단합니다."
@@ -1469,15 +1672,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "아니오"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "이용자를 차단하지 않는다."
#. TRANS: Button label on the user block form.
@@ -1488,15 +1691,15 @@ msgstr "이용자를 차단하지 않는다."
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "예"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "이 사용자 차단하기"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1504,31 +1707,6 @@ msgstr "이 사용자 차단하기"
msgid "Failed to save block information."
msgstr "정보차단을 저장하는데 실패했습니다."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "그러한 그룹이 없습니다."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1600,23 +1778,6 @@ msgstr "인식되지않은 주소유형 %s"
msgid "That address has already been confirmed."
msgstr "그 주소는 이미 승인되었습니다."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "사용자를 업데이트 할 수 없습니다."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1642,11 +1803,85 @@ msgid "Conversation"
msgstr "대화"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "통지"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "이용자를 업데이트 할 수 없습니다."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "아바타가 삭제되었습니다."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "새 계정 만들기"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "인증"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "이용자를 업데이트 할 수 없습니다."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "이용자를 업데이트 할 수 없습니다."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1660,14 +1895,14 @@ msgstr "인증 코드가 없습니다."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "이 응용프로그램 삭제 않기"
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "당신의 세션토큰관련 문제가 있습니다."
@@ -1687,12 +1922,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "이 응용프로그램 삭제 않기"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "이 응용프로그램 삭제"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1702,8 +1939,10 @@ msgid "You must be logged in to delete a group."
msgstr "그룹을 떠나기 위해서는 로그인해야 합니다."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
#, fuzzy
msgid "No nickname or ID."
msgstr "별명이 없습니다."
@@ -1746,25 +1985,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "이 통지를 지울 수 없습니다."
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "이 사용자 삭제"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "로그인하고 있지 않습니다."
@@ -1792,106 +2037,142 @@ msgstr "정말로 통지를 삭제하시겠습니까?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
#, fuzzy
-msgid "Do not delete this notice"
+msgid "Do not delete this notice."
msgstr "이 통지를 지울 수 없습니다."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "이 게시글 삭제하기"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "이용자를 업데이트 할 수 없습니다."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "이용자를 업데이트 할 수 없습니다."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "이용자 삭제"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "이용자 삭제"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "이 통지를 지울 수 없습니다."
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "이 사용자 삭제"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "디자인"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "잘못된 로고 URL 입니다."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "잘못된 로고 URL 입니다."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "인스턴트 메신저를 사용할 수 없습니다."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "로고 변경"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "사이트 로고"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "사이트 로고"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "테마 바꾸기"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "사이트 테마"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "사이트에 대한 테마"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "사용자 지정 테마"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "배경 이미지 바꾸기"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "배경"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1900,98 +2181,107 @@ msgstr ""
"사이트의 배경 이미지를 업로드할 수 있습니다. 최대 파일 크기는 %1$s 입니다."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "켜기"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "끄기"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "배경 이미지를 켜거나 끈다."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "배경 이미지를 반복 나열"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "색상 변경"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "만족하는"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "가장자리 창"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "문자"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "링크"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "고급 검색"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "사용자 정의 CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "기본값 사용"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
+msgstr "기본값 사용"
+
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
msgstr ""
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
-msgstr ""
-
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "저장"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "디자인 저장"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "이 메시지는 favorite이 아닙니다."
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "좋아하는 게시글로 추가하기"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "해당하는 첨부파일이 없습니다."
#. TRANS: Title for "Edit application" form.
@@ -2006,7 +2296,7 @@ msgid "You must be logged in to edit an application."
msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "신규 응용 프로그램"
@@ -2017,64 +2307,74 @@ msgid "Use this form to edit your application."
msgstr "다음 양식을 이용해 그룹을 편집하십시오."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "기관 이름이 필요합니다."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "실명이 너무 깁니다. (최대 255글자)"
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
#, fuzzy
msgid "Name already in use. Try another one."
msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "기관 이름이 필요합니다."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "소스 URL이 너무 깁니다."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "소스 URL이 올바르지 않습니다."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "기관 이름이 필요합니다."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "기관 이름이 너무 깁니다. (최대 255글자)"
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "기관 홈페이지가 필요합니다."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "관심소식을 생성할 수 없습니다."
@@ -2085,14 +2385,17 @@ msgid "Edit %s group"
msgstr "%s 그룹 편집"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "그룹을 만들기 위해서는 로그인해야 합니다."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "관리자만 그룹을 편집할 수 있습니다."
@@ -2103,63 +2406,65 @@ msgstr "다음 양식을 이용해 그룹을 편집하십시오."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "사용할 수 없는 별명 : \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "그룹을 업데이트 할 수 없습니다."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "관심소식을 생성할 수 없습니다."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "옵션을 저장했습니다."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "메일 설정"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "%%site.name%%에서 어떻게 메일을 받을지 정하십시오."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "메일 주소"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "확인된 최신의 메일 계정"
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "제거"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2172,44 +2477,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "\"사용자이름@예제.org\"와 같은 메일 계정"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "추가"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "받은 메일"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "메일로 통보를 포스트합니다."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "새로운 통지를 올리려면 이 주소로 메일을 보내십시오."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "포스팅을 위한 새 메일 계정의 생성; 전 메일 계정은 취소."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2217,87 +2522,89 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "새 게임"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "메일 설정"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "새로운 예약 구독의 통지를 메일로 보내주세요."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "누군가 내게 비밀메시지를 보냈을 때, 메일을 보냅니다."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "누군가 내게 @ 답장을 보냈을 때, 메일을 보냅니다."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "친구들이 내게 메일이나 쪽지를 보낼 수 있도록 허용합니다."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "메일 주소를 위한 MicroID의 생성"
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "메일 설정이 저장되었습니다."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "메일 주소가 없습니다."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "메일 주소를 정규화 할 수 없습니다."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "올바른 메일 주소가 아닙니다."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "그 메일 주소는 이미 귀하의 것입니다."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "그 메일 주소는 이미 다른 사용자의 소유입니다."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "확인 코드를 추가 할 수 없습니다."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2306,243 +2613,305 @@ msgstr ""
"와 사용법을 확인하여 주시기 바랍니다."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "취소 할 대기중인 인증이 없습니다."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
#, fuzzy
msgid "That is the wrong email address."
msgstr "옳지 않은 메신저 계정 입니다."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "메일 승인을 삭제 할 수 없습니다."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "취소 할 대기중인 인증이 없습니다."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "그 메일 주소는 귀하의 것이 아닙니다."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "메일 주소를 지웠습니다."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "받는 메일 주소가 없습니다."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "사용자 기록을 업데이트 할 수 없습니다."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "받는 메일 주소를 지웠습니다."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "새로운 받는 메일 주소를 추가했습니다."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "이 게시글은 이미 좋아하는 게시글입니다."
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "좋아하는글 취소"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "인기있는 게시글"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "인기있는 게시글, %d 페이지"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "사이트에서 지금 가장 인기있는 게시글"
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%s 님의 좋아하는 글"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, fuzzy, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "%2$s에 있는 %1$s의 업데이트!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "인기있는 회원"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "인기있는 회원, %d페이지"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, fuzzy, php-format
-msgid "A selection of some great users on %s"
+msgid "A selection of some great users on %s."
msgstr "%s의 훌륭한 회원의 일부 선택"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "그러한 통지는 없습니다."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "그러한 통지는 없습니다."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "첨부문서 없음"
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "첨부문서 없음"
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "예상치 못한 반응 입니다."
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
#, fuzzy
msgid "User being listened to does not exist."
msgstr "살펴 보고 있는 사용자가 없습니다."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "당신은 로컬 구독을 사용할 수 있습니다."
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "이 사용자는 귀하의 구독을 차단했습니다."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
#, fuzzy
msgid "Could not convert request token to access token."
msgstr "리퀘스트 토큰을 엑세스 토큰으로 변환 할 수 없습니다."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
#, fuzzy
msgid "Remote service uses unknown version of OMB protocol."
msgstr "OMB 프로토콜의 알려지지 않은 버전"
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
#, fuzzy
msgid "Error updating remote profile."
msgstr "리모트 프로필 업데이트 오류"
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "해당하는 파일이 없습니다."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "파일을 읽을 수 없습니다."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
#, fuzzy
msgid "Invalid role."
msgstr "옳지 않은 크기"
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "이용자가 프로필을 가지고 있지 않습니다."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "프로필을 지정하지 않았습니다."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "해당 ID의 프로필이 없습니다."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
#, fuzzy
msgid "No group specified."
msgstr "프로필을 지정하지 않았습니다."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr ""
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "사용자가 귀하를 차단했습니다."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "그룹 이용자는 차단해제"
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "그룹 이용자는 차단해제"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, fuzzy, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2553,162 +2922,192 @@ msgstr ""
"독할 수 없으며, 차단된 이용자로부터 @-답장의 통보를 받지 않게 됩니다."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "이용자를 차단하지 않는다."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "그룹 이용자는 차단해제"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
#, fuzzy
msgid "Database error blocking user from group."
msgstr "그룹 이용자는 차단해제"
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "ID가 없습니다."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
#, fuzzy
msgid "You must be logged in to edit a group."
msgstr "그룹을 만들기 위해서는 로그인해야 합니다."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "프로필 디자인"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "디자인을 수정할 수 없습니다."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "디자인 설정을 저장할 수 없습니다."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "메일 설정이 저장되었습니다."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "그룹 로고"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr ""
"사이트의 배경 이미지를 업로드할 수 있습니다. 최대 파일 크기는 %1$s 입니다."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "올리기"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "자르기"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "이미지에서 로고로 사용할 사각 영역을 지정하세요."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "로고를 업데이트했습니다."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "로고 업데이트에 실패했습니다."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s 그룹 회원"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%s 그룹 회원"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "이 그룹의 회원리스트"
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "관리자"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "차단"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "이 사용자 차단"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "사용자를 그룹의 관리자로 만듭니다"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "관리자 만들기"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, fuzzy, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "%2$s에 있는 %1$s의 업데이트!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "그룹"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "그룹, %d 페이지"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "새 그룹을 만듭니다."
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2717,23 +3116,31 @@ msgstr ""
"%%site.name%%의 사람을 이름, 장소, 관심 거리로 검색합니다. 검색어는 공백으로 "
"구분하고, 적어도 3글자 이상 필요합니다."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "그룹 찾기"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "결과 없음"
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2741,136 +3148,146 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr ""
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "그룹 이용자는 차단해제"
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "차단 제거 에러!"
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "메일 설정"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"당신은 Jabber나 구글토크(%%doc.im%%)를 통해 메시지를 주고받을 수 있습니다. 아"
"래 당신의 주소와 환경설정을 조정하세요."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "인스턴트 메신저를 사용할 수 없습니다."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "SMS 주소"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "확인된 최신의 Jabber/GTalk 계정"
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"이 주소는 인증 대기 중입니다. Jabber/Gtalk로 메시지를 확인해 주십시오.(%s 항"
"목을 추가하셨습니까?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"\"UserName@example.org\" 와 같은 Jabber 또는 GTalk 계정은 귀하의 메신저나 "
"GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "메일 설정"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Jabber/GTalk 로 통지를 보내주세요."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"내가 구독하지 않는 사람으로 부터의 답장을 Jabber/GTalk을 통해 보내주세요."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Jabber/GTalk 계정을 위한 MicroID의 생성"
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "설정이 저장되었습니다."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Jabber ID가 아닙니다."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "그 Jabbar ID를 정규화 할 수 없습니다."
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "유효한 Jabber ID가 아닙니다."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "그 Jabber ID는 이미 귀하의 것입니다."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID가 이미 다른 사용자에 의하여 사용되고 있습니다."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2879,73 +3296,79 @@ msgstr ""
"추가한 메신저 주소로 인증 코드를 보냈습니다. %s 사용자를 허락해야 메시지를 전"
"달할 수 있습니다."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "옳지 않은 메신저 계정 입니다."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "메신저 승인을 삭제 할 수 없습니다."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "확인 코드가 없습니다."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "그 Jabber ID는 귀하의 것이 아닙니다."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "메일 주소를 지웠습니다."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "%1$s 및 친구들, %2$d 페이지"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "%s의 받은쪽지함"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "당신의 받은 쪽지함입니다. 당신이 받은 비밀 메시지가 있습니다."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr ""
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "그룹가입을 위해서는 로그인이 필요합니다."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "올바르지 않은 메일 주소 : %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "초대권을 보냈습니다"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "새 사용자를 초대"
@@ -2953,7 +3376,7 @@ msgstr "새 사용자를 초대"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2961,7 +3384,7 @@ msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다."
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2970,7 +3393,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -2980,7 +3403,7 @@ msgstr[0] "자동 구독 신청이 된 사용자:"
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -2988,7 +3411,7 @@ msgstr[0] "다음 사람들에게 초대권을 보냈습니다:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -2997,33 +3420,34 @@ msgstr ""
"다. 커뮤니티를 키워주셔서 대단히 감사합니다. ^^"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr "다음 양식을 이용해 친구와 동료를 이 서비스에 초대하십시오."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "메일 주소"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "초청할 친구 주소 (한 줄에 한 명씩)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "개인 메시지"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "초대장에 메시지 첨부하기."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "보내기"
@@ -3031,7 +3455,7 @@ msgstr "보내기"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다."
@@ -3041,7 +3465,7 @@ msgstr "%1$s님이 귀하를 %2$s에 초대하였습니다."
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3093,180 +3517,196 @@ msgstr ""
"\n"
"%2$s 보냄\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "그룹가입을 위해서는 로그인이 필요합니다."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s의 상태 (%2$s에서)"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "그룹을 떠나기 위해서는 로그인해야 합니다."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s의 상태 (%2$s에서)"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "라이선스"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "위치가 너무 깁니다. (최대 255글자)"
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
#, fuzzy
msgid "Private"
msgstr "개인정보 취급방침"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "All Rights Reserved"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "크리에이티브 커먼즈 (Creative Commons)"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "종류"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "라이선스 선택"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "라이선스 세부 정보"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "라이선스 이름"
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "라이선스 URL"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "라이선스 이미지 URL"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "저장"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "이미 로그인 하셨습니다."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "틀린 계정 또는 비밀 번호"
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "로그인"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "사이트에 로그인하세요."
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "자동 로그인"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "앞으로는 자동으로 로그인합니다. 공용 컴퓨터에서는 이용하지 마십시오!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "비밀 번호를 잊으셨나요?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
msgstr ""
"보안을 위해 세팅을 저장하기 전에 계정과 비밀 번호를 다시 입력 해 주십시오."
-#: actions/login.php:292
+#: actions/login.php:281
#, fuzzy
msgid "Login with your username and password."
msgstr "사용자 이름과 비밀번호로 로그인"
-#: actions/login.php:295
+#: actions/login.php:284
#, fuzzy, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3305,20 +3745,23 @@ msgid "New application"
msgstr "신규 응용 프로그램"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
#, fuzzy
msgid "Use this form to register a new application."
msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "소스 URL이 필요합니다."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "관심소식을 생성할 수 없습니다."
@@ -3327,11 +3770,22 @@ msgstr "관심소식을 생성할 수 없습니다."
msgid "New group"
msgstr "새로운 그룹"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "당신은 해당 그룹의 멤버가 아닙니다."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "새 그룹을 만들기 위해 이 양식을 사용하세요."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "새로운 메시지입니다."
@@ -3382,7 +3836,9 @@ msgstr "새로운 통지"
msgid "Notice posted"
msgstr "게시글이 등록되었습니다."
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3391,37 +3847,47 @@ msgstr ""
"%%site.name%%의 글 내용을 검색합니다. 검색어는 공백으로 구분하고, 적어도 3글"
"자 이상 필요합니다."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "문자 검색"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "%1$s에서 %2$s까지 메시지"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, 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:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, fuzzy, php-format
msgid "Updates with \"%s\""
msgstr "%2$s에 있는 %1$s의 업데이트!"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "%2$s에 있는 %1$s의 업데이트!"
#: actions/nudge.php:85
@@ -3462,31 +3928,31 @@ msgid "You have not registered any applications yet."
msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "연결한 응용프로그램"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
#, fuzzy
msgid "You are not a user of that application."
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "다음 양식을 이용해 그룹을 편집하십시오."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3494,20 +3960,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "계정에서 사용하도록 허용한 응용 프로그램이 없습니다."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "API 메서드 발견 안 됨."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "API 메서드 발견 안 됨."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "이용자가 프로필을 가지고 있지 않습니다."
@@ -3517,6 +3993,16 @@ msgstr "이용자가 프로필을 가지고 있지 않습니다."
msgid "%1$s's status on %2$s"
msgstr "%1$s의 상태 (%2$s에서)"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "받는 사용자가 없습니다."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3530,16 +4016,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "지원하는 형식의 데이터가 아닙니다."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "사람 찾기"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "통지 검색"
@@ -3553,71 +4040,82 @@ msgid "Manage various other options."
msgstr "여러가지 기타 옵션을 관리합니다."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (무료 서비스)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "URL 줄이기 기능"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "사용할 URL 자동 줄이기 서비스."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "프로필 디자인 보기"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "프로필 디자인 보이거나 감춥니다."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "URL 줄이기 서비스 너무 깁니다. (최대 50글자)"
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
#, fuzzy
msgid "No user ID specified."
msgstr "프로필을 지정하지 않았습니다."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "허용되지 않는 요청입니다."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "허용되지 않는 요청입니다."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "허용되지 않는 요청입니다."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
#, fuzzy
msgid "Login token expired."
msgstr "사이트에 로그인하세요."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "%s 및 친구들, %d 페이지"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "%s의 보낸쪽지함"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "당신의 보낸 쪽지함입니다. 이곳엔 당신이 보냈던 비밀 쪽지가 있습니다."
@@ -3629,7 +4127,8 @@ msgstr "비밀번호 바꾸기"
msgid "Change your password."
msgstr "비밀번호를 변경하세요."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "비밀번호 변경"
@@ -3637,48 +4136,50 @@ msgstr "비밀번호 변경"
msgid "Old password"
msgstr "기존 비밀 번호"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "새로운 비밀 번호"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6글자 이상"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "인증"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "위와 같은 비밀 번호"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "변경"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "비밀번호는 6자리 이상이어야 합니다."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "비밀 번호가 일치하지 않습니다."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "기존 비밀 번호가 틀렸습니다"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "사용자 저장 오류; 무효한 사용자"
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "새 비밀번호를 저장 할 수 없습니다."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "비밀 번호 저장"
@@ -3892,7 +4393,7 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "첨부파일"
@@ -3964,7 +4465,9 @@ msgstr ""
msgid "Save paths"
msgstr "사이트 테마"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3973,7 +4476,8 @@ msgstr ""
"%%site.name%%의 사람을 이름, 장소, 관심 거리로 검색합니다. 검색어는 공백으로 "
"구분하고, 적어도 3글자 이상 필요합니다."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "사람 찾기"
@@ -3997,12 +4501,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "프로필 설정"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4010,33 +4514,34 @@ msgstr ""
"트 할 수 있습니다. "
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "프로필 정보"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "실명"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "홈페이지"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL"
@@ -4044,136 +4549,146 @@ msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
msgstr[0] "%d자 이내에서 자기 소개 및 자기 관심사"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "자기 소개 및 자기 관심사"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "자기소개"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "위치"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "태그"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "언어"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "언어 설정"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "시간대"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "주로 생활하는 곳이 어느 시간대입니까?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr "나에게 구독하는 사람에게 자동 구독 신청"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
msgstr[0] "설명이 너무 깁니다. (최대 %d 글자)"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "타임존이 설정 되지 않았습니다."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "언어가 너무 깁니다. (최대 50글자)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "올바르지 않은 태그: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "자동구독에 사용자를 업데이트 할 수 없습니다."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
+#: actions/profilesettings.php:405
#, fuzzy
-msgid "Couldn't save location prefs."
+msgid "Could not save location prefs."
msgstr "태그를 저장할 수 없습니다."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "프로필을 저장 할 수 없습니다."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "태그를 저장할 수 없습니다."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "설정 저장"
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "새 계정 만들기"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4243,6 +4758,12 @@ msgstr ""
"%%site.name%% 는 마이크로블로깅(http://en.wikipedia.org/wiki/Micro-blogging) "
"서비스 입니다."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "모두로부터의 업데이트 %s개!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4285,231 +4806,267 @@ msgstr ""
msgid "Tag cloud"
msgstr "태그 클라우드"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "당신은 이미 로그인되어 있습니다."
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "그러한 복구 코드는 없습니다."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "복구 코드가 아닙니다."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "알 수 없는 취소를 위한 리커버리 코드"
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "확인 코드 오류"
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "이 인증 코드는 오래됐습니다. 다시 발급 받아 주십시오."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "이 이메일 주소로 사용자를 업데이트 할 수 없습니다."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
#, fuzzy
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. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "비밀 번호 복구"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
#, fuzzy
msgid "Nickname or email address"
msgstr "별명이나 이메일 계정을 입력하십시오."
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "이 서버에서 당신의 닉네임 혹은 당신의 등록된 이메일주소"
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "복구"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "복구"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "비밀 번호 초기화"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "비밀 번호 복구"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "비밀 번호 복구가 요청되었습니다."
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "비밀 번호 저장"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "알려지지 않은 행동"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6글자 이상, 잊어 버리지 마십시오!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "초기화"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "별명이나 이메일 계정을 입력하십시오."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "그러한 이메일 주소나 계정을 가진 사용자는 없습니다."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "그 사용자는 등록된 메일주소가 없습니다."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "주소 확인 저장 에러"
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
msgstr "가입하신 이메일로 비밀 번호 재발급에 관한 안내를 보냈습니다."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "잘못된 비밀 번호 지정"
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "비밀 번호는 6자 이상이어야 합니다."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "비밀 번호가 일치하지 않습니다."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "사용자 세팅 오류"
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr ""
"새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "죄송합니다. 단지 초대된 사람들만 등록할 수 있습니다."
-#: actions/register.php:99
+#: actions/register.php:94
#, fuzzy
msgid "Sorry, invalid invitation code."
msgstr "확인 코드 오류"
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "회원 가입이 성공적입니다."
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "등록"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "가입이 허용되지 않습니다."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "이메일 주소가 이미 존재 합니다."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "사용자 이름이나 비밀 번호가 틀렸습니다."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 "
-"입력."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6글자 이상이 필요합니다."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "위와 같은 비밀 번호. 필수 사항."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "메일"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "업데이트나 공지, 비밀번호 찾기에 사용하세요."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "더욱 긴 이름을 요구합니다."
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라\""
-#: actions/register.php:524
+#: actions/register.php:510
#, fuzzy, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr "%1$s의 컨텐츠와 데이터는 외부 유출을 금지합니다."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "글과 파일의 저작권은 %1$s의 소유입니다"
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, fuzzy, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr "다음 개인정보 제외: 비밀 번호, 메일 주소, 메신저 주소, 전화 번호"
-#: actions/register.php:589
+#: actions/register.php:573
#, fuzzy, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4542,7 +5099,7 @@ msgstr ""
"\n"
"다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4550,7 +5107,7 @@ msgstr ""
"(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습"
"니다.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4561,82 +5118,89 @@ msgstr ""
"register%%)하십시오. 이미 계정이 [호환되는 마이크로블로깅 사이트]((%%doc."
"openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "리모트 구독 예약"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "원격 사용자에 구독"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "이용자 닉네임"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "따라가고 싶은 사용자의 별명"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "프로필 URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "구독"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "옳지 않은 프로필 URL (나쁜 포멧)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr "유효한 프로필 URL이 아닙니다. (YADIS 문서가 없습니다)"
-#: actions/remotesubscribe.php:176
+#: actions/remotesubscribe.php:175
#, fuzzy
-msgid "That’s a local profile! Login to subscribe."
+msgid "That is a local profile! Login to subscribe."
msgstr "그것은 로컬프로필입니다. 구독을 위해서는 로그인하십시오."
-#: actions/remotesubscribe.php:183
+#: actions/remotesubscribe.php:182
#, fuzzy
-msgid "Couldn’t get a request token."
+msgid "Could not get a request token."
msgstr "리퀘스트 토큰을 취득 할 수 없습니다."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
#, fuzzy
msgid "Only logged-in users can repeat notices."
msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
#, fuzzy
msgid "No notice specified."
msgstr "프로필을 지정하지 않았습니다."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "자신의 글은 재전송할 수 없습니다."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "이미 재전송된 소식입니다."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "재전송됨"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "재전송됨!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "%s에 답신"
@@ -4682,11 +5246,103 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "%s에 답신"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "실행 실패"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"업로드 파일이 php.ini 설정 파일의 upload_max_filesize 값을 넘어갔습니다."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "업로드 파일이 HTML 폼에서 지정한 MAX_FILE_SIZE 값을 넘어갔습니다."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "업로드 파일이 일부만 업로드되었습니다."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "임시 폴더가 없습니다"
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "디스크에 파일을 쓰는 데 실패했습니다."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "파일을 올리는데 시스템 오류 발생"
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "모든 회원"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "실행 실패"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다."
@@ -4695,7 +5351,7 @@ msgstr "이 사이트의 이용자에 대해 권한정지 할 수 없습니다."
msgid "User doesn't have this role."
msgstr "이용자가 프로필을 가지고 있지 않습니다."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet %s"
@@ -4737,134 +5393,148 @@ msgstr ""
msgid "Save site settings"
msgstr "접근 설정을 저장"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "응용 프로그램 수정을 위해서는 로그인해야 합니다."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "신규 응용 프로그램"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "아이콘"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "이름"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "기관 이름이 필요합니다."
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "설명"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "통계"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "인증 코드가 없습니다."
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "삭제"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "인증 코드가 없습니다."
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
#, fuzzy
msgid "Authorize URL"
msgstr "작성자"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "정말로 통지를 삭제하시겠습니까?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%s 님의 좋아하는 글"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "좋아하는 게시글을 복구할 수 없습니다."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "%s의 좋아하는 글 피드 (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "%s의 좋아하는 글 피드 (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "%s의 좋아하는 글 피드 (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4872,7 +5542,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "좋아하는 글을 지정하면 자기가 무엇을 좋아하는지 알릴 수 있습니다."
@@ -4890,82 +5561,89 @@ msgid "%1$s group, page %2$d"
msgstr "그룹, %d페이지"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "그룹 프로필"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "설명"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr ""
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "그룹 행동"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "%s 그룹을 위한 공지피드 (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "%s 그룹을 위한 공지피드 (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "%s 그룹을 위한 공지피드 (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "%s의 보낸쪽지함"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "회원"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(없음)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "모든 회원"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "생성됨"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -4975,7 +5653,7 @@ msgstr "회원"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4988,7 +5666,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, fuzzy, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5000,31 +5678,31 @@ msgstr ""
"Micro-blogging)의 사용자 그룹입니다. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
#, fuzzy
msgid "Admins"
msgstr "관리자"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "그러한 메시지가 없습니다."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "오직 발송자가 수신자가 이 메시지를 읽는것이 좋습니다."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "%2$s에서 %1$s까지 메시지"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "%1$s에서 %2$s까지 메시지"
@@ -5041,7 +5719,7 @@ msgid "%1$s tagged %2$s"
msgstr "%s 및 친구들, %d 페이지"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5283,75 +5961,76 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
#, fuzzy
-msgid "Save site notice"
+msgid "Save site notice."
msgstr "사이트 공지"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "메일 설정"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
"당신은 %%site.name%% 로부터 이메일을 통해 SMS메시지를 받을 수 있습니다."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "인스턴트 메신저를 사용할 수 없습니다."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS 주소"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "확인된 최신의 SMS가 가능한 휴대폰 번호"
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "이 전화 번호는 인증 대기중입니다."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "인증 코드"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "휴대폰으로 받으신 인증번호를 입력하십시오."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "확인"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "휴대폰 번호가 없습니다."
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "지역번호와 함께 띄어쓰기 없이 번호를 적어 주세요."
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "메일 설정"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5360,32 +6039,32 @@ msgstr ""
"습니다."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "SMS 설정을 저장했습니다."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "휴대폰 번호가 없습니다."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "통신회사가 선택 되지 않았습니다."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "그 휴대폰 번호는 이미 귀하의 것입니다."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "그 휴대폰 번호는 이미 다른 사용자의 것입니다."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5394,39 +6073,39 @@ msgstr ""
"와 사용법을 확인하여 주시기 바랍니다."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "옳지 않은 인증 번호 입니다."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS 인증"
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "그 휴대폰 번호는 귀하의 것이 아닙니다."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "메일 주소를 지웠습니다."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "휴대전화 사업자"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "통신 회사를 선택 하세요."
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5434,8 +6113,9 @@ msgid ""
msgstr "귀하의 휴대폰의 통신회사는 무엇입니까?"
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "코드가 입력 되지 않았습니다."
#. TRANS: Menu item for site administration
@@ -5511,16 +6191,20 @@ msgstr "당신은 이 프로필에 구독되지 않고있습니다."
msgid "Could not save subscription."
msgstr "구독을 저장할 수 없습니다."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "구독하였습니다."
@@ -5552,7 +6236,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "%s의 통지를 받고 있는 사람"
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5560,7 +6244,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5570,7 +6254,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5601,7 +6285,7 @@ msgstr "%s님이 받고 있는 통지의 사람"
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5615,23 +6299,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "%s 그룹을 위한 공지피드 (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5664,12 +6349,15 @@ msgstr "첨부문서 없음"
msgid "Tag %s"
msgstr "태그 %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "이용자 프로필"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "사진"
@@ -5685,16 +6373,17 @@ msgstr ""
"사용자를 위한 태그 (문자,숫자, -, . ,그리고 _), 콤마 혹은 공백으로 분리하세"
"요."
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "올바르지 않은 태그: \"%s\""
+
#: 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 "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양식을 사용하세요."
@@ -5703,6 +6392,7 @@ msgstr "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양
msgid "No such tag."
msgstr "그러한 태그가 없습니다."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "이미 차단된 이용자입니다."
@@ -5723,7 +6413,7 @@ msgstr "해당 ID의 프로필이 없습니다."
msgid "Unsubscribed"
msgstr "구독취소 되었습니다."
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5754,12 +6444,11 @@ msgstr ""
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "프로필"
@@ -5820,56 +6509,70 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "접근 설정을 저장"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "구독을 허가"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
#, 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”."
+"click \"Reject\"."
msgstr ""
"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소"
"\"를 클릭해 주세요."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "라이센스"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "수락"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "이 회원을 구독합니다."
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "거부"
-#: actions/userauthorization.php:220
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
#, fuzzy
-msgid "Reject this subscription"
+msgid "Reject this subscription."
msgstr "%s 구독"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "허용되지 않는 요청입니다."
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "구독 허가"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
#, fuzzy
msgid ""
"The subscription has been authorized, but no callback URL was passed. Check "
@@ -5879,11 +6582,12 @@ msgstr ""
"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지"
"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : "
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "구독 거부"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
#, fuzzy
msgid ""
"The subscription has been rejected, but no callback URL was passed. Check "
@@ -5893,54 +6597,77 @@ msgstr ""
"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지"
"시를 찾아 구독 해지 방법에 대하여 읽어보십시오."
-#: actions/userauthorization.php:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr ""
-
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
+msgid "Listenee URI \"%s\" is too long."
+msgstr "소스 URL이 너무 깁니다."
+
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, php-format
+msgid "Listenee URI \"%s\" is a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, php-format
+msgid "Profile URL \"%s\" is for a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "소스 URL이 올바르지 않습니다."
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다."
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "%S 잘못된 그림 파일 타입입니다. "
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "프로필 디자인"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -5971,7 +6698,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "%2$s에 있는 %1$s의 업데이트!"
@@ -6031,7 +6758,7 @@ msgid "Plugins"
msgstr "플러그인"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "버전"
@@ -6040,32 +6767,32 @@ msgid "Author(s)"
msgstr "작성자"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "좋아합니다"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "'%s' URL을 처리할 수 없습니다"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6077,7 +6804,7 @@ msgstr[0] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6085,14 +6812,14 @@ msgstr[0] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
msgstr[0] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
#, fuzzy
msgid "Invalid filename."
msgstr "옳지 않은 크기"
@@ -6153,7 +6880,7 @@ msgid "Could not create login token for %s"
msgstr "%s 에 대한 로그인 토큰을 만들 수 없습니다."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6181,24 +6908,24 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "통지를 저장하는데 문제가 발생했습니다."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "게시글 저장문제. 알려지지않은 회원"
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6206,7 +6933,7 @@ msgstr ""
"해보세요."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
#, fuzzy
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
@@ -6216,43 +6943,43 @@ msgstr ""
"해보세요."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "통지를 저장하는데 문제가 발생했습니다."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
#, fuzzy
msgid "Problem saving group inbox."
msgstr "통지를 저장하는데 문제가 발생했습니다."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "새 그룹을 만들 수 없습니다."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6260,14 +6987,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6339,35 +7066,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "%s에 답신"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "새 그룹을 만들 수 없습니다."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "새 그룹을 만들 수 없습니다."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "그룹 맴버십을 세팅할 수 없습니다."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "새 그룹을 만들 수 없습니다."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "이용자를 업데이트 할 수 없습니다."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6405,212 +7153,215 @@ msgid "Other"
msgstr "기타"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "제목없는 페이지"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "주 사이트 네비게이션"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
#, fuzzy
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "개인 프로필과 친구 타임라인"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "개인"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "당신의 메일, 아바타, 비밀 번호, 프로필을 변경하세요."
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "계정"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "연결"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "연결"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "메일 주소 확인"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "관리"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, fuzzy, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다."
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "초대"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "이 사이트에서 로그아웃"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "로그아웃"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "새 계정 만들기"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "등록"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "이 사이트에 로그인"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "로그인"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "도움말"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "도움말"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "사람이나 단어 검색"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "검색"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "사이트 공지"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "로컬 뷰"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "페이지 공지"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "보조 사이트 네비게이션"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "도움말"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "정보"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "자주 묻는 질문"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "서비스 약관"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "개인정보 취급방침"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "소스 코드"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "연락하기"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "배지"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet 소프트웨어 라이선스"
@@ -6618,7 +7369,7 @@ msgstr "StatusNet 소프트웨어 라이선스"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6628,7 +7379,7 @@ msgstr ""
"공하는 마이크로블로깅서비스입니다."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다."
@@ -6637,7 +7388,7 @@ msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6649,51 +7400,51 @@ msgstr ""
"fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "사이트 컨텐츠 라이선스"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "%1$s의 컨텐츠와 데이터는 외부 유출을 금지합니다."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr "컨텐츠와 데이터의 저작권은 %1$s의 소유입니다. All rights reserved."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"컨텐츠와 데이터의 저작권은 각 이용자의 소유입니다. All rights reserved."
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "%1$s의 모든 컨텐츠와 데이터는 %2$s 라이선스에 따라 이용할 수 있습니다."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "페이지수"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "뒷 페이지"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "앞 페이지"
@@ -6702,10 +7453,80 @@ msgstr "앞 페이지"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "알 수 없는 종류의 파일입니다"
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "사진"
+msgid "Cannot force remote user to subscribe."
+msgstr "구독하려는 사용자의 이름을 지정하십시오."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "알 수 없는 종류의 파일입니다"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "당신은 이미 이 그룹의 멤버입니다."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "통지들의 내용 찾기"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "해당하는 이용자 없음"
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6780,7 +7601,7 @@ msgid "User configuration"
msgstr "메일 주소 확인"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "사용자"
@@ -6824,19 +7645,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6859,28 +7684,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "메시지를 삽입할 수 없습니다."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류"
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "OAuth 응용 프로그램 사용자 추가 중 데이터베이스 오류"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "이 응용프로그램 삭제 않기"
@@ -6993,17 +7822,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "제거"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "이 통지를 지울 수 없습니다."
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "작성자"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "미리보기"
@@ -7035,6 +7870,11 @@ msgstr "비밀번호 변경"
msgid "Block"
msgstr "차단하기"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "이 사용자 차단하기"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7148,7 +7988,7 @@ msgstr "전체이름: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "위치: %s"
@@ -7156,7 +7996,7 @@ msgstr "위치: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "홈페이지: %s"
@@ -7387,26 +8227,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "확인 코드가 없습니다."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "다음 사람들에게 초대권을 보냈습니다:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "이 사이트에 로그인"
@@ -7450,14 +8290,19 @@ msgstr "응용프로그램 삭제"
msgid "Database error"
msgstr "데이터베이스 오류"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "이 사용자 삭제"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "실행 실패"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "개인 아바타를 올릴 수 있습니다. 최대 파일 크기는 2MB입니다."
@@ -7476,12 +8321,36 @@ msgctxt "RADIO"
msgid "Off"
msgstr "끄기"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "초기화"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "색상 변경"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "기본값 사용"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "디자인 저장"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "디자인을 수정할 수 없습니다."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
@@ -7489,14 +8358,38 @@ msgstr "초기화"
msgid "Design defaults restored."
msgstr "메일 설정이 저장되었습니다."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "다음 양식을 이용해 그룹을 편집하십시오."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "이 게시글 좋아하기 취소"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "좋아하는글 취소"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "이 게시글을 좋아합니다."
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "좋아합니다"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7513,6 +8406,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "모든 회원"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7548,32 +8454,32 @@ msgstr "이동"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다."
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "응용프로그램 삭제"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "140글자로 그룹이나 토픽 설명하기"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "그룹의 위치, \"시/군/구, 도, 국가\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7677,54 +8583,55 @@ msgstr "%s 그룹 게시글의 태그"
msgid "This page is not available in a media type you accept"
msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다."
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "지원하지 않는 그림 파일 형식입니다."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, fuzzy, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "불완전한 업로드."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "파일을 올리는데 시스템 오류 발생"
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "그림 파일이 아니거나 손상된 파일 입니다."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "파일을 잃어버렸습니다."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "알 수 없는 종류의 파일입니다"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
msgstr[0] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
msgstr[0] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7744,23 +8651,25 @@ msgstr ""
msgid "Leave"
msgstr "떠나기"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "사용자 이름과 비밀번호로 로그인"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "새 계정을 위한 회원가입"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "메일 주소 확인"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7779,14 +8688,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7798,7 +8707,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7819,14 +8728,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "위치: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "%s에 포스팅 할 새로운 메일 주소"
@@ -7834,7 +8743,7 @@ msgstr "%s에 포스팅 할 새로운 메일 주소"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7851,34 +8760,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s 상태"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS 인증"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, fuzzy, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "이 전화 번호는 인증 대기중입니다."
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "%s 사용자가 찔러 봤습니다."
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7896,7 +8805,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다."
@@ -7905,7 +8814,7 @@ msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다."
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7926,7 +8835,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다."
@@ -7936,7 +8845,7 @@ msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -7958,7 +8867,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -7968,7 +8877,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다."
@@ -7979,7 +8888,7 @@ msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8006,20 +8915,16 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "오직 해당 사용자만 자신의 메일박스를 열람할 수 있습니다."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr "방법"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "메시지를 분리할 수 없습니다."
@@ -8046,39 +8951,6 @@ msgstr "지원하지 않는 그림 파일 형식입니다."
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"업로드 파일이 php.ini 설정 파일의 upload_max_filesize 값을 넘어갔습니다."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "업로드 파일이 HTML 폼에서 지정한 MAX_FILE_SIZE 값을 넘어갔습니다."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "업로드 파일이 일부만 업로드되었습니다."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "임시 폴더가 없습니다"
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "디스크에 파일을 쓰는 데 실패했습니다."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8099,7 +8971,7 @@ msgstr "소스 이용자를 확인할 수 없습니다."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8108,7 +8980,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8142,20 +9014,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "보내기"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "메시지"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "방법"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"별명은 반드시 영소문자와 숫자로만 이루어져야 하며 스페이스의 사용이 불가 합니"
"다."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8170,11 +9051,11 @@ msgstr "게시글 보내기"
msgid "What's up, %s?"
msgstr "뭐하세요 %s님?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "첨부"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr ""
@@ -8193,55 +9074,59 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "북"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "남"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "동"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "서"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "위치"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "웹"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "문맥"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "재전송됨"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "이 게시글에 대해 답장하기"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "답장하기"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "이 게시글 삭제하기"
+
+#: lib/noticelist.php:691
#, fuzzy
msgid "Notice repeated"
msgstr "게시글이 등록되었습니다."
@@ -8279,78 +9164,114 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "예약 구독을 추가 할 수 없습니다."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "개인"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "답신"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "프로필"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "좋아하는 글들"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "받은 쪽지함"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "받은 메시지"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "보낸 쪽지함"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "보낸 메시지"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "%s의 게시글의 태그"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
#, fuzzy
msgid "Unknown"
msgstr "알려지지 않은 행동"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "구독"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "모든 예약 구독"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "구독자"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "모든 구독자"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "이용자 ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "가입한 때"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "그룹"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "하루 평균"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "모든 그룹"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8399,7 +9320,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "그룹 이용자는 차단해제"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "API 메서드 발견 안 됨."
@@ -8493,6 +9414,10 @@ msgstr "초대"
msgid "Invite friends and colleagues to join you on %s"
msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다."
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "이 회원을 구독합니다."
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8605,119 +9530,131 @@ msgstr "구독 해제"
msgid "User %1$s (%2$d) has no profile record."
msgstr "이용자가 프로필을 가지고 있지 않습니다."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "아바타 편집"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "사용자 동작"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "프로필 설정"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "편집"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "이 회원에게 직접 메시지를 보냅니다."
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "메시지"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr ""
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
#, fuzzy
msgid "User role"
msgstr "이용자 프로필"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "관리자"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr ""
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "로그인하고 있지 않습니다."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "몇 초 전"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "1분 전"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "1시간 전"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "하루 전"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "1달 전"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "1년 전"
-#: lib/webcolor.php:80
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "홈페이지 주소형식이 올바르지 않습니다."
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "홈페이지 주소형식이 올바르지 않습니다."
@@ -8737,31 +9674,18 @@ msgid_plural "Message too long. Maximum is %1$d characters, you sent %2$d."
msgstr[0] "당신이 보낸 메시지가 너무 길어요. 최대 140글자까지입니다."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "옳지 않은 크기"
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "프로필을 지정하지 않았습니다."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po
index ab36d623bd..fdc9111de8 100644
--- a/locale/mk/LC_MESSAGES/statusnet.po
+++ b/locale/mk/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Macedonian (Македонски)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Bjankuloski06
# Author: Brest
@@ -10,17 +10,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:04+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:13+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -77,8 +77,9 @@ msgid "Save access settings"
msgstr "Зачувај нагодувања на пристап"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -88,13 +89,13 @@ msgstr "Зачувај нагодувања на пристап"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Зачувај"
@@ -102,7 +103,7 @@ msgstr "Зачувај"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Нема таква страница."
@@ -112,6 +113,8 @@ msgstr "Нема таква страница."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -127,13 +130,23 @@ msgstr "Нема таква страница."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -141,15 +154,15 @@ msgstr "Нема таква страница."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Нема таков корисник."
@@ -163,9 +176,10 @@ msgstr "%1$s и пријателите, стр. %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s и пријатели"
@@ -279,7 +293,7 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -313,7 +327,21 @@ msgstr ""
"sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Не можев да го подновам корисникот."
@@ -323,18 +351,23 @@ msgstr "Не можев да го подновам корисникот."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Корисникот нема профил."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Не може да се зачува профил."
@@ -344,8 +377,8 @@ msgstr "Не може да се зачува профил."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -365,13 +398,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Не можам да ги зачувам Вашите нагодувања за изглед."
@@ -379,48 +413,59 @@ msgstr "Не можам да ги зачувам Вашите нагодувањ
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Не може да се поднови Вашиот изглед."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "Главна"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Историја на %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Претплати на %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Бендисани"
+msgstr "%s бендисани"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "Членови на групата %s"
+msgstr "%s членства"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Не можете да се блокирате самите себеси!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Блокирањето на корисникот не успеа."
@@ -476,9 +521,9 @@ msgstr "Примачот не е пронајден."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
-"Неможете да испраќате директни пораки на корисници што не Ви се пријатели."
+"Не можете да испраќате непосредни пораки на корисници што не Ви се пријатели."
#. TRANS: Client error displayed trying to direct message self (403).
#: actions/apidirectmessagenew.php:154
@@ -502,8 +547,9 @@ msgid "This status is already a favorite."
msgstr "Веќе сте го бендисале овој статус."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Не можам да создадам бендисана забелешка."
@@ -513,7 +559,8 @@ msgid "That status is not a favorite."
msgstr "Тој статус не Ви е бендисан."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Не можам да ја избришам бендисаната забелешка."
@@ -559,9 +606,9 @@ msgstr "Не можев да го пронајдам целниот корисн
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Тој прекар е во употреба. Одберете друг."
@@ -569,21 +616,22 @@ msgstr "Тој прекар е во употреба. Одберете друг.
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Неправилен прекар."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Главната страница не е важечка URL-адреса."
@@ -591,23 +639,24 @@ msgstr "Главната страница не е важечка URL-адрес
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Полното име е предолго (највеќе 255 знаци)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -618,9 +667,9 @@ msgstr[1] "Описот е предолг (дозволено е највеќе
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Местоположбата е предолга (највеќе 255 знаци)."
@@ -630,8 +679,8 @@ msgstr "Местоположбата е предолга (највеќе 255 з
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -648,18 +697,16 @@ msgstr "Неважечки алијас: „%s“."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Алијасот „%s“ е зафатен. Одберете друг."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Алијасот не може да биде ист како прекарот."
@@ -670,28 +717,32 @@ msgstr "Алијасот не може да биде ист како прека
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Групата не е пронајдена."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Веќе членувате во таа група."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Блокирани сте од таа група од администраторот."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Не можам да го зачленам корисникот %1$s во групата 2$s."
@@ -703,9 +754,11 @@ msgstr "Не членувате во оваа група."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -742,7 +795,7 @@ msgid "Upload failed."
msgstr "Подигањето не успеа."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Неважечки жетон за барање или потврдник."
@@ -762,20 +815,25 @@ msgid "Request token already authorized."
msgstr "Жетонот за барање е веќе овластен."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Се поајви проблем со Вашиот сесиски жетон. Обидете се повторно."
@@ -792,18 +850,22 @@ msgstr "Грешка во базата при вметнувањето на auth
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Неочекувано поднесување на образец."
@@ -853,29 +915,31 @@ msgstr "Сметка"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Прекар"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Лозинка"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -949,6 +1013,7 @@ msgstr "Не можете да избришете статус на друг к
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -968,38 +1033,50 @@ msgstr "Не можете да ја повторувате сопственат
msgid "Already repeated that notice."
msgstr "Забелешката е веќе повторена."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "HTML-методот не е поддржан."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, php-format
-msgid "Unsupported format: %s"
-msgstr "Неподдржан формат: %s"
+msgid "Unsupported format: %s."
+msgstr "Неподдржан формат: %s."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Статусот е избришан."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Нема пронајдено статус со тој ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Може да се избрише само користејќи го форматот Atom."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
-msgstr "Не може да се избрише оваа забелешка."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
+msgstr "Не можам да ја избришам оваа забелешка."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "Избришана забелешката %d"
@@ -1060,7 +1137,7 @@ msgstr "Подновувања на %1$s бендисани од %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Не можев да создадам канал за групата - %s"
@@ -1081,13 +1158,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s подновувања коишто се одговор на подновувањата од %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Јавна историја на %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s подновуввања од сите!"
@@ -1131,211 +1209,257 @@ msgstr "Само корисникот може да ја надополнува
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
msgstr "Прифаќај само AtomPub за Atom-канали."
-#: actions/apitimelineuser.php:310
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr "Забелешката преку Atom мора да биде Atom-ставка."
+msgstr "Забелешката преку Atom не смее да биде празна."
-#: actions/apitimelineuser.php:315
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr "Забелешката преку Atom мора да биде Atom-ставка."
+msgstr "Забелешката преку Atom мора да биде добро-поставен XML."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr "Забелешката преку Atom мора да биде Atom-ставка."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
-#, fuzzy
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr "Може да работи само со објавувања."
+msgstr "Може да работи само со POST-активности."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
-#, fuzzy, php-format
+#: actions/apitimelineuser.php:345
+#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr "Не може да работи со предмети на активност од типот „%s“"
+msgstr "Не може да работи со предмети на активност од типот „%s“."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Пронајдете содржини на забелешките"
+msgstr "Нема содржина за забелешката %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Веќе постои забелешка со URI „%s“."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr "AtomPub-објава со непознат URI за внимание %s"
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API-методот е во изработка."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Корисникот не е пронајден."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Нема таков профил."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Не може да се внесе нова претплата."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-#, fuzzy
-msgid "Can only handle Favorite activities."
-msgstr "Може да работи само со објавувања."
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Може да работи само со објавувања."
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Непознато"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Додај во бендисани"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "Нема таков профил."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Забелешки на %2$s што ги бендисал(а) %1$s"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "Не можам да додадам туѓа претплата."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "Може да работи само со бендисани активности."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Може само да бендисува забелешки."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Непозната белешка."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Веќе е бендисано."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
+#, php-format
msgid "%s group memberships"
-msgstr "Членови на групата %s"
+msgstr "Членства на групата %s"
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "Групи кадешто членува %s"
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "Групи на %2$s кадешто членува %1$s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "Не можам да додадам туѓо членство."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-#, fuzzy
-msgid "Can only handle Join activities."
-msgstr "Може да работи само со објавувања."
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr "Може да работи само со активности за зачленување."
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Непознато"
+msgstr "Непозната група."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Сите членови"
+msgstr "Веќе членувате."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Блокиран од администратор."
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "Нема таква податотека."
+msgstr "Нема таква бендисана ставка."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "Не можам да ја избришам бендисаната забелешка."
+msgid "Cannot delete someone else's favorite."
+msgstr "Не можам да избришам туѓo бендисанo."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Нема таква група."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "Сите членови"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "HTML-методот не е поддржан."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "Не членувате."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+msgid "Cannot delete someone else's membership."
+msgstr "Не можам да избришам туѓо членство."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Нема таков профил."
+#, php-format
+msgid "No such profile id: %d."
+msgstr "Нема таква назнака на профил: %d."
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Не сте претплатени на тој профил."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Профилот %1$d не е претплатен на профилот %2$d."
-#: actions/atompubshowsubscription.php:154
-#, fuzzy
-msgid "Can't delete someone else's subscription"
-msgstr "Не можам да ја избришам самопретплатата."
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr "Не можам да избришам туѓа претплата."
-#: actions/atompubsubscriptionfeed.php:150
-#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "Луѓе претплатени на %s"
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "Луѓе на %2$s на коишто е претплатен(а) %1$s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
-#, fuzzy
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
-msgstr "Може да работи само со објавувања."
+msgstr "Може да работи само со аквитности за следење."
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Може само да следи луѓе."
-#: actions/atompubsubscriptionfeed.php:262
-#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Непознат тип на податотека"
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "Непознат профил %s."
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "Веќе сте претплатени на %s."
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1345,11 +1469,15 @@ msgstr "Нема таков прилог."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Нема прекар."
@@ -1366,7 +1494,7 @@ msgstr "Погрешна големина."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Аватар"
@@ -1381,41 +1509,51 @@ msgstr ""
"податотеката изнесува %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Корисник без соодветен профил."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Нагодувања на аватарот"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Оригинал"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Преглед"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Избриши"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Подигни"
@@ -1431,31 +1569,74 @@ msgstr "Отсечи"
msgid "No file uploaded."
msgstr "Нема подигнато податотека."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
-msgstr "Одберете квадратна површина од сликата за аватар"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
+msgstr "Одберете квадратна површина од сликата за аватар."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Податоците за податотеката се изгубени."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Аватарот е подновен."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Подновата на аватарот не успеа."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Аватарот е избришан."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Резервна сметка"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr "Само одјавени корисници можат да прават резервна верзија на сметката."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "Не можете да направите резрвна верзија на Вашата сметка."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+"Можете да зачувате резервна верзија на Вашите податоци во сметката во "
+"форматот Activity Streams. Ова е "
+"експериментална функција која прави нецелосна резерва. Во резервата нема да "
+"се зачуваат лични податоци како е-пошта и адреса за IM. Покрај ова, во "
+"резервата не се зачувуваат и подигнатите податотеки и непосредните пораки."
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Резерва"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr "Направете резервна верзија на сметката."
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1463,7 +1644,8 @@ msgstr "Веќе го имате блокирано тој корисник."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Блокирај корисник"
@@ -1487,16 +1669,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Не"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
-msgstr "Не го блокирај корисников"
+#: actions/block.php:158
+msgid "Do not block this user."
+msgstr "Не го блокирај корисников."
#. TRANS: Button label on the user block form.
#. TRANS: Button label on the delete application form.
@@ -1506,47 +1687,21 @@ msgstr "Не го блокирај корисников"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Да"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
-msgstr "Блокирај го корисников"
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "Блокирај го корисников."
#. TRANS: Server error displayed when blocking a user fails.
#: actions/block.php:189
msgid "Failed to save block information."
msgstr "Не можев да ги снимам инофрмациите за блокот."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Нема таква група."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1616,23 +1771,6 @@ msgstr "Непознат тип на адреса %s."
msgid "That address has already been confirmed."
msgstr "Оваа адреса веќе е потврдена."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Не можев да го подновам корисникот."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1657,11 +1795,83 @@ msgid "Conversation"
msgstr "Разговор"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Забелешки"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr "Само најавени корисници можат да си ја избришат сметката."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "Не можете да си ја избришете сметката."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Сигурен сум."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "Во кутијата морате точно да го впишете „%s“ како што е."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "Сметката е избришана."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Избриши сметка"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"Со ова засекогаш ќе ја избришете сметката од опслужувачот."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+"Пред да бришете, сеирозно се препорачува да направите резервна верзија на податоците."
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Потврди"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Внесете го „%s“ за да потврдите дека сакате да ја избришете сметката."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Трајно бришење на сметката"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1675,14 +1885,14 @@ msgstr "Програмот не е пронајден."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Не сте сопственик на овој програм."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Се појави проблем со Вашиот сесиски жетон."
@@ -1705,13 +1915,13 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
-msgstr "Не го бриши овој програм"
+msgid "Do not delete this application."
+msgstr "Не го бриши овој програм."
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
-msgstr "Избриши го програмов"
+msgid "Delete this application."
+msgstr "Избриши го програмов."
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
@@ -1719,8 +1929,10 @@ msgid "You must be logged in to delete a group."
msgstr "Мора да сте најавени за да избришете група."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Нема прекар или ID."
@@ -1762,24 +1974,30 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
-msgstr "Не ја бриши групава"
+msgid "Do not delete this group."
+msgstr "Не ја бриши групава."
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
-msgstr "Избриши ја групава"
+msgid "Delete this group."
+msgstr "Избриши ја групава."
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Не сте најавени."
@@ -1797,7 +2015,7 @@ msgstr ""
#. TRANS: Fieldset legend for the delete notice form.
#: actions/deletenotice.php:117 actions/deletenotice.php:148
msgid "Delete notice"
-msgstr "Бриши забелешка"
+msgstr "Избриши забелешка"
#. TRANS: Message for the delete notice form.
#: actions/deletenotice.php:152
@@ -1806,27 +2024,37 @@ msgstr "Дали сте сигурни дека сакате да ја избр
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
-msgstr "Не ја бриши оваа забелешка"
+msgid "Do not delete this notice."
+msgstr "Не ја бриши оваа забелешка."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
-msgstr "Бриши ја оваа забелешка"
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
+msgstr "Избриши ја забелешкава."
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Не можете да бришете корисници."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Може да бришете само локални корисници."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
-msgstr "Бриши корисник"
+msgstr "Избриши корисник"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Избриши корисник"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1834,78 +2062,100 @@ msgstr ""
"Дали се сигурни дека сакате да го избришете овој корисник? Ова воедно ќе ги "
"избрише сите податоци за корисникот од базата, без да може да се вратат."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr "Не го бриши корисников."
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
-msgstr "Избриши овој корисник"
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "Избриши го корисников."
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Изглед"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Нагодувања на изгледот на ова StatusNet-мрежно место."
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Погрешен URL на лого."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "Неважечка URL-адреса на SSL-логото."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Темата е недостапна: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Промени лого"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Лого на мрежното место"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "SSL-лого"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Промени изглед"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Изглед на мрежното место"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Изглед за мрежното место."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Прилагоден мотив"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Можете да подигнете свој изглед за StatusNet како .ZIP архив."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
-msgstr "Промена на слика на позадина"
+msgstr "Промена на слика за позадина"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Позадина"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1915,99 +2165,104 @@ msgstr ""
"големина на податотеката е %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Вкл."
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Искл."
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Вклучи или исклучи позадинска слика."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Позадината во квадрати"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
-msgstr "Промена на бои"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
+msgstr "Смени бои"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Содржина"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Странична лента"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Текст"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Врски"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Напредно"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Прилагодено CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Користи по основно"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
-msgstr "Врати основно-зададени нагодувања"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
+msgstr "Врати ги изгледите по основно."
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
-msgstr "Врати по основно"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr "Врати по основно."
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Зачувај"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
+msgstr "Зачувај изглед."
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
-msgstr "Зачувај изглед"
-
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Оваа забелешка не Ви е бендисана!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Додај во бендисани"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
-msgstr "Нема документ со наслов „%s“"
+msgid "No such document \"%s\"."
+msgstr "Нема документ со наслов „%s“."
#. TRANS: Title for "Edit application" form.
#. TRANS: Form legend.
@@ -2021,7 +2276,7 @@ msgid "You must be logged in to edit an application."
msgstr "Мора да сте најавени за да можете да уредувате програми."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Нема таков програм."
@@ -2031,61 +2286,71 @@ msgid "Use this form to edit your application."
msgstr "Образецов служи за уредување на програмот."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Треба име."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "Името е предолго (највеќе 255 знаци)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Тоа име е во употреба. Одберете друго."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Треба опис."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Изворната URL-адреса е предолга."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "Изворната URL-адреса е неважечка."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Треба организација."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "Името на организацијата е предолго (највеќе 255 знаци)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Треба домашна страница на организацијата."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Повикувањето е предолго."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "URL-адресата за повикување е неважечка."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Не можев да го подновам програмот."
@@ -2096,14 +2361,17 @@ msgid "Edit %s group"
msgstr "Уреди ја групата %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Мора да сте најавени за да можете да создавате групи."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Мора да сте администратор за да можете да ја уредите групата."
@@ -2114,63 +2382,65 @@ msgstr "ОБразецов служи за уредување на групат
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Неважечки алијас: „%s“"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Не можев да ја подновам групата."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Не можеше да се создадат алијаси."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Нагодувањата се зачувани."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Нагодувања за е-пошта"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Раководење со начинот на кој добивате е-пошта од %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Е-поштенска адреса"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Тековна потврдена е-поштенска адреса."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Отстрани"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2183,135 +2453,137 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Е-пошта, од обликот „UserName@example.org“"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Додај"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Приемна пошта"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Сакам да објавувам забелешки по е-пошта."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Испраќајте е-пошта на оваа адреса за да објавувате нови забелешки."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
"Создај нова е-поштенска адреса за примање објави; ја заменува старата адреса."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
+"За да испраќате забелешки по е-пошта, ќе треба да Ви направиме посебна е-"
+"пошт. адреса на овој опслужувач:"
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Нова"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Нагодувања за е-пошта"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Испраќај ми известувања за нови претплати по е-пошта."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Испраќај ми е-пошта кога некој ќе бендиса моја забелешка."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Испраќај ми е-пошта кога некој ќе ми испрати приватна порака."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Испраќај ми е-пошта кога некој ќе ми испрати „@-одговор“"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
"Дозволи им на пријателите да можат да ме подбуцнуваат и да ми испраќаат е-"
"пошта."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Објави MicroID за мојата е-поштенска адреса."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Нагодувањата за е-пошта се зачувани."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Нема е-поштенска адреса."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
-msgstr "Неможам да ја нормализирам таа е-поштенска адреса"
+#: actions/emailsettings.php:388
+msgid "Cannot normalize that email address."
+msgstr "Не можам да ја нормализирам таа е-поштенска адреса."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Неправилна адреса за е-пошта."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Оваа е-поштенска адреса е веќе Ваша."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Таа е-поштенска адреса е веќе зафатена од друг корисник."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
-msgstr "Потврдниот код не може да се внесе."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
+msgstr "Не можев да го внесам потврдниот код."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2321,89 +2593,102 @@ msgstr ""
"напатствијата за негово користење."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Нема потврди кои може да се откажат."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Ова е погрешна е-поштенска адреса."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
msgstr "Не можев да ја избришам потврдата по е-пошта."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Потврдата на е-пошта е откажана."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Ова не е Вашата е-поштенска адреса."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Е-поштенската адреса е отстранета."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Нема приемна е-поштенска адреса."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr "Не можев да ја подновам корисничката евиденција."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Приемната е-поштенска адреса е отстранета."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Додадена е нова влезна е-поштенска адреса."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Веќе сте ја бендисале оваа забелешка!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
-msgstr "Тргни од бендисани"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
+msgstr "Тргни од бендисани."
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Популарни забелешки"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Популарни забелешки, стр. %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Моментално најпопуларни забелешки на мрежното место."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Бендисаните забелешки се појавуваат на оваа страница, но досега никој нема "
"бендисано ништо."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2412,7 +2697,9 @@ msgstr ""
"Бидете првиот што ќе бендиса забелешка со тоа што ќе кликнете на копчето за "
"бендисување веднаш до забелешката која Ви се допаѓа."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2421,142 +2708,186 @@ msgstr ""
"А зошто не [регистрирате сметка](%%action.register%%) и да бидете први што "
"ќе бендисате забелешка!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Бендисани забелешки на %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Подновувања, бендисани од %1$s на %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Избрани корисници"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Избрани корисници, стр. %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
-msgstr "Некои од пославните корисници на %s"
+msgid "A selection of some great users on %s."
+msgstr "Некои од пославните корисници на %s."
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Нема ID за белешка."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Нема забелешка."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Нема прилози."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Нема подигнато прилози."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Овој одговор не беше очекуван!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Следениот корисник не постои."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Може да ја користите локалната претплата."
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Тој корисник Ве има блокирано од претплаќање."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Не сте овластени."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Не можев да ги претворам жетоните за барање во жетони за пристап."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Далечинската служба користи непозната верзија на OMB протокол."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Грешка во подновувањето на далечинскиот профил."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Нема таква податотека."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Податотеката не може да се прочита."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Погрешна улога."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Оваа улога е резервирана и не може да се зададе."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Не можете да им доделувате улоги на корисниците на ова мрежно место."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Корисникот веќе ја има таа улога."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Нема назначено профил."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Нема профил со тоа ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Нема назначено група."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Само администратор може да блокира членови на група."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Корисникот е веќе блокиран од оваа група."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Корисникот не членува во групата."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Блокирај корисник од група"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2568,34 +2899,40 @@ msgstr ""
"објавува во таа група и да се претплаќа на неа."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
-msgstr "Не го блокирај овој корисник од оваа група"
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
+msgstr "Не го блокирај овој корисник од групава."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
-msgstr "Блокирај го овој корисник од оваа група"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "Блокирај го овој корисник од групава."
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
"Се појави грешка во базата наподатоци при блокирањето на корисникот од "
"групата."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Нема ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Мора да сте најавени за да можете да уредувате група."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Изглед на групата"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2603,22 +2940,25 @@ msgstr ""
"Прилагодете го изгледот на Вашата група со позадинска слика и палета од бои "
"по Ваш избор."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Не можев да го подновам Вашиот изглед."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
+msgstr "Не можам да ги подновам Вашите нагодувања за изглед."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Нагодувањата се зачувани."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Лого на групата"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2626,113 +2966,130 @@ msgstr ""
"Можете да подигнете слика за логото на Вашата група. Максималната дозволена "
"големина на податотеката е %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Подигни"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Отсечи"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Одберете квадратен простор на сликата за лого."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Логото е подновено."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Подновата на логото не успеа."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Членови на групата %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Членови на групата %1$s, стр. %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Список на корисниците на оваа група."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Администратор"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Блокирај"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Блокирај го корисников"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Направи го корисникот администратор на групата"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Назначи за администратор"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Назначи го корисников за администратор"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Подновувања од членови на %1$s на %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr "Групи"
-#: actions/groups.php:64
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
#, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
-msgstr "Групи, стр. %d"
+msgstr "Групи, страница %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Групите на %%%%site.name%%%% Ви овоможуваат да пронајдете луѓе со слични "
-"интереси на Вашите и да зборувате со нив. Откако ќе се придружите во група "
+"интереси на Вашите и да разговарате со нив. Откако ќе се придружите во група "
"ќе можете да испраќате пораки до сите други членови, користејќи ја "
"синтаксата „!groupname“. Не гледате група што Ве интересира? Обидете се да "
-"[ја пронајдете](%%%%action.groupsearch%%%%) или [започнете своја!](%%%%"
-"action.newgroup%%%%)"
+"[ја пронајдете](%%%%action.groupsearch%%%%) или [започнете своја](%%%%action."
+"newgroup%%%%)!"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Создај нова група"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2741,25 +3098,33 @@ msgstr ""
"Пребарајте групи на %%site.name%% по име, местоположба или опис. Одделете ги "
"поимите со празни места; зборовите мора да имаат барем по 3 букви."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Пребарување на групи"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Нема резултати."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Ако не можете да ја пронајдете групата што ја барате, тогаш [создајте ја](%%"
"action.newgroup%%) самите."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2769,137 +3134,143 @@ msgstr ""
"група](%%action.newgroup%%)!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Само администратор може да одблокира членови на група."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Корисникот не е блокиран од групата."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Грешка при отстранување на блокот."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Нагодувања за IM"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-"Можете да примате и праќате забелешки преку Jabber/GTalk [брзи пораки](%%doc."
-"im%%). Подолу "
+"Можете да праќате и примате забелешки преку [непосредни пораки](%%doc.im%%) "
+"на Jabber/Google Talk . Подолу ставете адреса и наместете ги нагодувањата."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM е недостапно."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM адреса"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Моментално потврдена Jabber/GTalk адреса."
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
+msgstr "Моментално потврдена адреса на Jabber/Google Talk."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
-"Чекам потврда за оваа адреса. Проверете ја Вашата Jabber/GTalk сметка за "
-"порака со понатамошни инструкции. (Дали го додадовте %s на Вашиот список со "
-"пријатели?)"
+"Чекам потврда за оваа адреса. Проверете ја Вашата сметка на Jabber/Google "
+"Talk - треба да добиете порака со понатамошни напатствија. (Дали го/ја "
+"додадовте %s на Вашиот список со пријатели?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-"Jabber или GTalk адреса како „KorisnickoIme@example.org“. Но прво додајте го "
-"%s во Вашиот контактен список во Вашиот IM клиент или GTalk."
+"Адреса на Jabber или Google Talk, како на пр. „KorisnickoIme@example.org“. "
+"Но прво додајте го/ја %s во Вашиот контактен список на Вашиот клиент за НП "
+"или Google Talk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "IM нагодувања"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Испраќај ми забелешки преку Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
+msgstr "Испраќај ми забелешки преку Jabber/Google Talk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Објавувај забелешка кога мојот статус на Jabber/GTalk ќе се промени."
-
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
-"Испраќај ми одговори преку Jabber/GTalk од луѓе на кои не сум претплатен."
+"Објавувај забелешка кога ќе се промени мојот статус на Jabber/Google Talk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "Објави MicroID за мојата адреса на Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
+msgstr ""
+"Испраќај ми одговори преку Jabber/Google Talk од луѓе на кои не се имам "
+"претплатено."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr "Објави MicroID за мојата адреса на Jabber/Google Talk."
+
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Нагодувањата се зачувани."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Нема JabberID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
-msgstr "Ова JabberID не може да се нормализира."
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+msgid "Cannot normalize that Jabber ID."
+msgstr "Не можам да го нормализирам овој ID за Jabber."
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
-msgstr "Неправилен JabberID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+msgid "Not a valid Jabber ID."
+msgstr "Ова не е важечки ID за Jabber."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Ова веќе е Вашиот Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Ова Jabber ID му припаѓа на друг корисник."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2908,56 +3279,61 @@ msgstr ""
"Испративме потврден код на IM-адресата што ја додадовте. Ќе мора да му "
"одобрите на %s да Ви испраќа пораки."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Ова е погрешната IM адреса."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
msgstr "Не можев да ја избришам потврдата на IM."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Потврдата на IM е откажана."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Ова не е Вашиот Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "IM-адресата е отстранета."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Приемно сандаче за %1$s - стр. %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Приемно сандаче за %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Ова е Вашето приемно сандаче, кадешто се наведени Вашите добиени приватни "
"пораки."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Поканите се оневозможени."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2965,18 +3341,18 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Неважечка е-поштенска адреса: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Поканите се испратени"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Покани нови корисници"
@@ -2984,7 +3360,7 @@ msgstr "Покани нови корисници"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Веќе сте претплатени на овој корисник:"
@@ -2992,7 +3368,7 @@ msgstr[1] "Веќе сте претплатени на овие корисниц
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3001,7 +3377,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3011,7 +3387,7 @@ msgstr[1] "Овие луѓе веќе се корисници и автомат
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Испратена е покана до следново лице:"
@@ -3019,7 +3395,7 @@ msgstr[1] "Испратени се покани до следниве лица:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3029,7 +3405,7 @@ msgstr ""
"помагате да ја прошириме заедницата!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3037,35 +3413,35 @@ msgstr ""
"место."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Е-поштенски адреси"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
-msgstr "Адреси на пријателите што ги каните (по една во секој ред)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
+msgstr "Адреси на пријателите што ги каните (по една во секој ред)."
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Лична порака"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Можете да додадете и лична порака во поканата."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
-msgstr "Прати"
+msgstr "Испрати"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s Ве покани да се придружите на %2$s"
@@ -3075,7 +3451,7 @@ msgstr "%1$s Ве покани да се придружите на %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3132,44 +3508,51 @@ msgstr ""
"\n"
"Со почит, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Мора да сте најавени за да можете да се зачлените во група."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s се зачлени во групата %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Мора да сте најавени за да можете да ја напуштите групата."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Не членувате во таа група."
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s ја напушти групата %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Лиценца"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Лиценца на ова StatusNet-мрежно место"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Неважечки избор на лиценца."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3177,128 +3560,137 @@ msgstr ""
"Мора да го наведете сопственикот на содржината кога користите лиценца со "
"Сите права задржани."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Неважечки наслов на лиценцата. Дозволени се највеќе 255 знаци."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Неважечка URL-адреса на лиценцата."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Неважечка URL-адреса за сликата на лиценцата."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
"URL-адресата на лиценцата мора да стои празна или да биде важечка адреса."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
"Сликата на лиценцата мора да стои празна или да биде важечка URL-адреса."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Избор на лиценца"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Приватен"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Сите права задржани"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Тип"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Одберете лиценца"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Податоци за лиценцата"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Сопственик"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
"Име и презиме на сопственикот на содржината на мрежното место (ако е "
"применливо)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Наслов на лиценцата"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Насловот на лиценцата."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL-адреса на лиценцата"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL-адреса за повеќе информации во врска со лиценцата."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL-адреса за сликата на лиценцата"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL-адреса за слика што ќе се прикажува со лиценцата."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Зачувај"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Зачувај нагодувања на лиценцата"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Веќе сте најавени."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Неточно корисничко име или лозинка"
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Грешка при поставувањето на корисникот. Веројатно не се заверени."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Најава"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Најавете се"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Запамети ме"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Отсега врши автоматска најава. Не треба да се користи за јавни сметачи!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Ја загубивте или заборавивте лозинката?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3306,11 +3698,11 @@ msgstr ""
"Поради безбедносни причини треба повторно да го внесете Вашето корисничко "
"име и лозинка пред да ги смените Вашите нагодувања."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Најавете се со корисничко име и лозинка."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3346,19 +3738,22 @@ msgid "New application"
msgstr "Нов програм"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Мора да сте најавени за да можете да регистрирате програм."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Овој образец служи за регистрирање на нов програм."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Треба изворна URL-адреса."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Не можеше да се создаде програмот."
@@ -3367,11 +3762,21 @@ msgstr "Не можеше да се создаде програмот."
msgid "New group"
msgstr "Нова група"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr "Не Ви е дозволено да создавате групи на ова мреж. место."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Овој образец служи за создавање нова група."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr "Алијасот не може да биде ист како прекарот."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Нова порака"
@@ -3423,7 +3828,9 @@ msgstr "Ново забелешка"
msgid "Notice posted"
msgstr "Забелешката е објавена"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3432,16 +3839,21 @@ msgstr ""
"Пребарајте забелешки на %%site.name%% според нивната содржина. Поимите "
"одделете ги со празни места; мора да имаат барем по 3 знаци."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Текстуално пребарување"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Резултати од пребарувањето за „%1$s“ на %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3450,7 +3862,9 @@ msgstr ""
"Бидете први што ќе [објавите нешто на оваа тема](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3460,14 +3874,17 @@ msgstr ""
"што ќе [објави нешто на оваа тема](%%%%action.newnotice%%%%?status_textarea=%"
"s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Подновувања со „%s“"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Подновувања кои се совпаѓаат со пребараниот израз „%1$s“ на %2$s!"
#: actions/nudge.php:85
@@ -3508,30 +3925,30 @@ msgid "You have not registered any applications yet."
msgstr "Сè уште немате регистрирано ниеден програм,"
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Поврзани програми"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "За Вашата сметка постојат следниве врски."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Не сте корисник на тој програм."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Не можам да му го одземам пристапот на програмот: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3540,14 +3957,14 @@ msgstr ""
"Успешно одземавте пристап за %1$s и пристапниот жетон што почнува со %2$s."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Му немате дозволено пристап до Вашата сметка на ниеден програм."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3556,6 +3973,16 @@ msgstr ""
"Дали сте програмер? [Регистрирајте клиентски програм за OAuth](%s) за да го "
"користите овој примерок на StatusNet."
+#: actions/oembed.php:64
+#, php-format
+msgid "\"%s\" not found."
+msgstr "„%s“ не е пронајден."
+
+#: actions/oembed.php:76
+#, php-format
+msgid "Notice %s not found."
+msgstr "Забелешката %s не е пронајдена."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Забелешката нема профил."
@@ -3565,6 +3992,16 @@ msgstr "Забелешката нема профил."
msgid "%1$s's status on %2$s"
msgstr "%1$s статус на %2$s"
+#: actions/oembed.php:95
+#, php-format
+msgid "Attachment %s not found."
+msgstr "Прилогот %s не е пронајден."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr "„%s“ не е поддржано за oembed-барања."
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3578,16 +4015,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Ве молиме користете само %s URL-адреси врз прост HTTP-код."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Ова не е поддржан формат на податотека."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Пребарување на луѓе"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Пребарување на забелешки"
@@ -3601,68 +4039,79 @@ msgid "Manage various other options."
msgstr "Раководење со разни други можности."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
-msgstr " (бесплатна услуга)"
+msgstr " (бесплатна служба)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Скратувај URL-адреси со"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Која автоматска служба за скратување да се користи."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Види изгледи на профилот"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
-msgstr "Прикажи или сокриј профилни изгледи."
+msgstr "Прикажи или скриј изгледи на профилот."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Услугата за скратување на URL-адреси е предолга (највеќе до 50 знаци)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Нема назначено кориснички ID."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Нема назначено најавен жетон."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Не е побаран најавен жетон."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Назначен е неважечки најавен жетон."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Најавниот жетон е истечен."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Излезно сандаче за %1$s - стр. %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Излезно сандаче за %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Ова е Вашето излезно сандче, во кое се наведени приватните пораки кои ги "
@@ -3676,7 +4125,8 @@ msgstr "Промени ја лозинката"
msgid "Change your password."
msgstr "Променете си ја лозинката."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Промена на лозинка"
@@ -3684,48 +4134,47 @@ msgstr "Промена на лозинка"
msgid "Old password"
msgstr "Стара лозинка"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Нова лозинка"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
-msgstr "6 или повеќе знаци"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
+msgstr "6 или повеќе знаци."
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Потврди"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Исто како лозинката погоре"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
+msgstr "Исто како лозинката погоре."
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Промени"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Лозинката мора да содржи барем 6 знаци."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Лозинките не се совпаѓаат."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Неточна стара лозинка"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Грешка во зачувувањето на корисникот; неправилен."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
msgstr "Не можам да ја зачувам новата лозинка."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Лозинката е зачувана."
@@ -3931,7 +4380,7 @@ msgstr "Директориумот кадешто се сместени поза
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Прилози"
@@ -3999,7 +4448,9 @@ msgstr "Oпслужувач, кому ќе му се испраќаат SSL-ба
msgid "Save paths"
msgstr "Зачувај патеки"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4009,7 +4460,8 @@ msgstr ""
"одделете ги со празни места. Минималната должина на зборовите изнесува 3 "
"знаци."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Пребарување на луѓе"
@@ -4035,12 +4487,12 @@ msgstr ""
"место „%2$s“."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Нагодувања на профилот"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4048,32 +4500,33 @@ msgstr ""
"повеќе за Вас."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Информации за профил"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 мали букви или бројки, без интерпукциски знаци и празни места."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
-msgstr "Цело име"
+msgstr "Име и презиме"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Домашна страница"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr ""
"URL-адреса на Вашата домашна страница, блог или профил на друго мрежно место."
@@ -4081,7 +4534,7 @@ msgstr ""
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4089,83 +4542,87 @@ msgstr[0] "Опишете се себеси и своите интереси с
msgstr[1] "Опишете се себеси и своите интереси со %d знаци."
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Опишете се себеси и Вашите интереси"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Биографија"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Местоположба"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Каде се наоѓате, на пр. „Град, Област, Земја“."
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
"Прикажувај ја мојата тековна местоположба при објавување на забелешките"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Ознаки"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Ознаки за Вас самите (букви, бројки, -, . и _), одделени со запирка или "
-"празно место"
+"празно место."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Јазик"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+msgid "Preferred language."
msgstr "Претпочитан јазик"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Часовна зона"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Во која часовна зона обично се наоѓате?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Автоматски претплаќај ме на секој што се претплаќа на мене (најдобро за "
-"ботови и сл.)"
+"ботови и сл.)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4173,49 +4630,50 @@ msgstr[0] "Биографијата е предолга (највеќе до %d
msgstr[1] "Биографијата е предолга (највеќе до %d знаци)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Не е избрана часовна зона."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "Јазикот е предолг (највеќе до 50 знаци)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
+#: actions/profilesettings.php:291
#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "Неважечка ознака: „%s“"
+msgid "Invalid tag: \"%s\"."
+msgstr "Неважечка ознака: „%s“."
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
msgstr "Не можев да го подновам корисникот за автопретплата."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
-msgstr "Не можев да ги зачувам нагодувањата за местоположба"
-
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Не можам да го зачувам профилот."
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
+msgstr "Не можев да ги зачувам нагодувањата за местоположба."
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Не можев да ги зачувам ознаките."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Нагодувањата се зачувани"
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr "Врати сметка"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4291,6 +4749,12 @@ msgstr ""
"org/wiki/Микроблогирање) заснована на слободната програмска алатка "
"[StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s подновуввања од сите!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4336,35 +4800,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Облак од ознаки"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Веќе сте најавени!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Нема таков код за спасување."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Ова не е код за спасување."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Код за пронаоѓање за непознат корисник."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Грешка со кодот за потврдување."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Овој код потврден код е престар. Почнете од почеток."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Не можев да го подновам корисникот со потврдена е-поштенска адреса."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4372,69 +4844,98 @@ msgstr ""
"Ако ја имате заборавено или загубено лозинката, можете да побарате да Ви се "
"испрати нова по е-поштата која сте ја назначиле за сметката."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Препознаени сте. Внесете нова лозинка подполу. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Препознаени сте. Внесете нова лозинка подполу."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Враќање на лозинката"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Прекар или е-поштенска адреса"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"Вашиот прекар на овој опслужувач или адресата за е-пошта со која се "
"регистриравте."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Пронајди"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Пронајди"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Рестетирај ја лозинката"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Пронаоѓање на лозинка"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Побарано е пронаоѓање на лозинката"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+msgid "Password saved"
+msgstr "Лозинката е зачувана"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Непознато дејство"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
-msgstr "6 или повеќе знаци и не заборавајте!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
+msgstr "6 или повеќе знаци - не заборавајте!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Врати одново"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Внесете прекар или е-пошта"
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Нема корисник со таа е-поштенска адреса или корисничко име."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Нема регистрирана адреса за е-пошта за тој корисник."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Грешка при зачувувањето на потврдата за адреса."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4442,123 +4943,114 @@ msgstr ""
"Упатството за пронаоѓање на Вашата лозинка е испратено до адресата за е-"
"пошта што е регистрирана со Вашата сметка."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Неочекувано подновување на лозинката."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Лозинката мора да има барем 6 знаци."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Двете лозинки не се совпаѓаат."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Грешка во поставувањето на корисникот."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Новата лозинка е успешно зачувана. Сега сте најавени."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Жалиме, регистрацијата е само со покана."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Жалиме, неважечки код за поканата."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Регистрацијата е успешна"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Регистрирај се"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Регистрирањето не е дозволено."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+msgid "You cannot register if you don't agree to the license."
msgstr "Не може да се регистрирате ако не ја прифаќате лиценцата."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Адресата веќе постои."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Погрешно име или лозинка."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Со овој образец можете да создадете нова сметка. Потоа ќе можете да "
-"објавувате забелешки и да се поврзувате со пријатели и колеги. "
-
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 мали букви или бројки, без интерпункциски знаци и празни места. "
-"Задолжително поле."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "Барем 6 знаци. Задолжително поле."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Исто што и лозинката погоре. Задолжително поле."
+"објавувате забелешки и да се поврзувате со пријатели и колеги."
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Е-пошта"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Се користи само за подновувања, објави и повраќање на лозинка."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
-msgstr "Подолго име, по можност Вашето вистинско име и презиме"
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
+msgstr "Подолго име, по можност Вашето „вистинско“ име и презиме"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL на Вашата домашна страница, блог или профил на друго мрежно место."
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Каде се наоѓате, на пр. „Град, Сојуз. држава (или Област), Земја“."
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr "Сфаќам дека содржината и податоците на %1$s се лични и доверливи."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Авторското правво на мојот текст и податотеки го има %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
"Јас ја задржувам сопственоста на авторското право врз мојот текст и "
"податотеки."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Сите права задржани."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4567,7 +5059,7 @@ msgstr ""
"Мојот текст и податотеки се достапни под %s, освен следниве приватни "
"податоци: лозинка, е-пошта, IM-адреса и телефонски број."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4601,7 +5093,7 @@ msgstr ""
"Ви благодариме што се зачленивте и Ви пожелуваме пријатни мигови со оваа "
"служба."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4609,7 +5101,7 @@ msgstr ""
"(Би требало веднаш да добиете порака по е-пошта, во која стојат напатствија "
"за потврдување на е-поштенската адреса.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4621,79 +5113,82 @@ msgstr ""
"[усогласиво мреж. место за микроблогирање](%%doc.openmublog%%), внесете го "
"URL-то на Вашиот профил подолу."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Оддалечена претплата"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Претплати се на далечински корисник"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Прекар на корисникот"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
msgstr "Прекар на корисникот што сакате да го следите."
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL на профилот"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "URL на Вашиот профил на друга соодветна служба за микроблогирање."
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
+msgstr "!URL на Вашиот профил на друга складна служба за микроблогирање."
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Претплати се"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "Неправилно URL на профил (лош формат)"
+#: actions/remotesubscribe.php:158
+msgid "Invalid profile URL (bad format)."
+msgstr "Неправилна URL на профилот (лош формат)."
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Неважечка URL-адреса на профил (нема YADIS документ или определен е "
"неважечки XRDS)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
-msgstr "Тоа е локален профил! најавете се за да се претплатите."
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
+msgstr "Тоа е локален профил! Најавете се за да се претплатите."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
msgstr "Не можев да добијам жетон за барање."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Само најавени корисници можат да повторуваат забелешки."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Нема назначено забелешка."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
msgstr "Не можете да повторувате сопствена забелешка."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Веќе ја имате повторено таа забелешка."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Повторено"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Повторено!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Одговори испратени до %s"
@@ -4745,11 +5240,106 @@ msgstr ""
"Можете да го [подбуцнете корисникот 1$s](../%2$s) или да [му испратите нешто]"
"(%%%%action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Одговори на %1$s на %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr "Само најавени корисници можат да си ја вратат сметката."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr "Не можете да ја вратите Вашата сметка."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr "Нема подигната податотека."
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Подигнатата податотека ја надминува директивата upload_max_filesize во php."
+"ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Подигнатата податотека ја надминува директивата the MAX_FILE_SIZE назначена "
+"во HTML-образецот."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Подигнатата податотека е само делумно подигната."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Недостасува привремена папка."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Податотеката не може да се запише на дискот."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Подигањето на податотеката е запрено од додатокот."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Системска грешка при подигањето на податотеката."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr "Ова не е Atom-канал."
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+"Каналот е вратен. Вашите стари објави сега треба ги има во пребарувањето и "
+"Вашата профилна страница."
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+"Каналот ќе биде вратен. Почејате некоја минута за да се појават резултатите."
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+"Можете да опдигнете зачувано резервно емитување во форматот Activity Streams."
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "Подигни ја податотеката"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "На ова мрежно место не можете да одземате кориснички улоги."
@@ -4758,7 +5348,7 @@ msgstr "На ова мрежно место не можете да одзема
msgid "User doesn't have this role."
msgstr "Корисникот ја нема оваа улога."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4800,85 +5390,87 @@ msgstr "Вклучи извод од поправка на грешки за с
msgid "Save site settings"
msgstr "Зачувај нагодувања на мреж. место"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Мора да сте најавени за да можете да го видите програмот."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Профил на програмот"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Икона"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Име"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Организација"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Опис"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Статистики"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Создадено од %1$s - основен пристап: %2$s - %3$d корисници"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Дејства на програмот"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Клуч за промена и тајна"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
-msgstr "Бриши"
+msgstr "Избриши"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Инфо за програмот"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Потрошувачки клуч"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Потрошувачка тајна"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL на жетонот на барањето"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL на пристапниот жетон"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Одобри URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4886,36 +5478,43 @@ msgstr ""
"Напомена: Поддржуваме HMAC-SHA1 потписи. Не поддржуваме потпишување со прост "
"текст."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Дали сте сигурни дека сакате да го смените Вашиот кориснички клуч и тајна?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Бендисан забелешки на %1$s, страница %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Не можев да ги повратам бендисаните забелешки."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Канал за бендисани забелешки на %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Канал за бендисани забелешки на %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Канал за бендисани забелешки на %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4924,7 +5523,9 @@ msgstr ""
"бендисување веднаш до самата забелешката што Ви се допаѓа за да ја обележите "
"за подоцна, или за да ѝ дадете на важност."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4933,7 +5534,10 @@ msgstr ""
"%s сè уште нема бендисано ниедна забелешка. Објавете нешто интересно, што "
"корисникот би го бендисал :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4944,7 +5548,8 @@ msgstr ""
"action.register%%%%) и потоа објавите нешто интересно што корисникот би го "
"бендисал :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Ова е начин да го споделите она што Ви се допаѓа."
@@ -4962,81 +5567,88 @@ msgid "%1$s group, page %2$d"
msgstr "Група %1$s, стр. %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Профил на група"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Забелешка"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Алијаси"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Групни дејства"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Канал со забелешки за групата %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Канал со забелешки за групата %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Канал со забелешки за групата%s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF за групата %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Членови"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Нема)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Сите членови"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Создадено"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Членови"
@@ -5045,7 +5657,7 @@ msgstr "Членови"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5064,7 +5676,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5078,30 +5690,30 @@ msgstr ""
"членови си разменуваат кратки пораки за нивниот живот и интереси. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Администратори"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Нема таква порака."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Само испраќачот и примачот можат да ја читаат оваа порака."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Порака за %1$s на %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Порака од %1$s на %2$s"
@@ -5117,7 +5729,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s го/ја означи %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5369,75 +5981,76 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
-msgstr "Зачувај ја објавава"
+msgid "Save site notice."
+msgstr "Зачувај ја објавата на мреж. место."
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Нагодувања за СМС"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Можете да примате СМС пораки по е-пошта од %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "СМС-пораките се недостапни."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "СМС адреса"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Тековен потврден телефонски број со можност за СМС."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Очекувам потврда за овој телефонски број."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Потврден код"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Внесете го кодот што го добивте по телефон."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Потврди"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Телефонски број за СМС"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr ""
-"Телефонски број, без интерпункциски знаци и празни места, со повикувачки код"
+"Телефонски број, без интерпункциски знаци и празни места, со повикувачки "
+"број."
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "СМС нагодувања"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5446,32 +6059,32 @@ msgstr ""
"трошоци."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "СМС нагодувањата се зачувани."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Нема телефонски број."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Немате избрано оператор."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Ова и сега е Вашиот телефонски број."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Тој телефонски број е веќе во употреба од друг корисник."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5480,39 +6093,39 @@ msgstr ""
"го телефонот за да го видите кодот, заедно со напатствија за негова употреба."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Ова е погрешен потврден број."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Потврдата за СМС е откажана."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Тоа не е Вашиот телефонски број."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Телефонскиот број за СМС е отстранет."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Мобилен оператор"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Изберете оператор"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5522,9 +6135,9 @@ msgstr ""
"пошта, но не фигурира овде, известете нè на %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
-msgstr "Нема внесено код"
+#: actions/smssettings.php:535
+msgid "No code entered."
+msgstr "Нема внесено код."
#. TRANS: Menu item for site administration
#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
@@ -5596,16 +6209,20 @@ msgstr "Не сте претплатени на тој профил."
msgid "Could not save subscription."
msgstr "Не можев да ја зачувам претплатата."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Ова дејство прифаќа само POST-барања"
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
"Не можете да се претплатите на OMB 0.1 далечински профил со ова дејство."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Претплатено"
@@ -5637,7 +6254,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Ова се луѓето што ги следат забелешките на %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5647,7 +6264,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s нема претплатници. Сакате да бидете првиот?"
@@ -5657,7 +6274,7 @@ msgstr "%s нема претплатници. Сакате да бидете п
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5690,7 +6307,7 @@ msgstr "Ова се луѓето чии забелешки ги следи %s."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5709,23 +6326,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s не следи никого."
-#: actions/subscriptions.php:178
-#, fuzzy, php-format
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Канал со забелешки за %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "СМС"
@@ -5758,12 +6376,15 @@ msgstr "Нема ID-аргумент."
msgid "Tag %s"
msgstr "Означи %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Кориснички профил"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Фото"
@@ -5779,6 +6400,11 @@ msgstr ""
"Ознаки за овој корисник (букви, бројки, -, . и _), одделени со запирка или "
"празно место"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Неважечка ознака: „%s“"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5786,10 +6412,6 @@ 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 "Со овој образец додавајте ознаки во Вашите претплатници или претплати."
@@ -5798,6 +6420,7 @@ msgstr "Со овој образец додавајте ознаки во Ваш
msgid "No such tag."
msgstr "Нема таква ознака."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Го немате блокирано тој корисник."
@@ -5818,7 +6441,7 @@ msgstr "!Во барањето нема ID на профилот."
msgid "Unsubscribed"
msgstr "Претплатата е откажана"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5851,12 +6474,11 @@ msgstr "Неважечки текст за добредојде. Дозволе
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Неважечки опис по основно: „%1$s“ не е корисник."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Профил"
@@ -5912,55 +6534,65 @@ msgstr "Дали да им е дозволено на корисниците д
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr "Зачувај кориснички нагодувања"
+msgid "Save user settings."
+msgstr "Зачувај кориснички нагодувања."
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Одобрете ја претплатата"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
-"Проверете ги овие податоци за да се осигурате дека сакате да се претплатите "
-"за забелешките на овој корисник. Ако не сакате да се претплатите, едноставно "
-"кликнете на „Одбиј“"
+"Проверете ги овие податоци и видете дали сакате да се претплатите на "
+"забелешките на овој корисник. Ако не сакате да се претплатите, едноставно "
+"стиснете на „Одбиј“."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Лиценца"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Прифати"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
-msgstr "Претплати се на корисников"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
+msgstr "Претплати се на корисников."
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Одбиј"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
-msgstr "Одбиј ја оваа претплата"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
+msgstr "Одбиј ја оваа претплата."
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Нема барање за проверка!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Претплатата е одобрена"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5970,11 +6602,12 @@ msgstr ""
"инструкциите на мрежното место за да дознаете како се одобрува претплата. "
"Жетонот на Вашата претплата е:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Претплатата е одбиена"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5984,48 +6617,73 @@ msgstr ""
"инструкциите на мрежното место за да дознаете како се одбива претплата во "
"потполност."
-#: actions/userauthorization.php:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr "URI-то на следачот „%s“ не е пронајдено тука."
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr "Следениот URI „%s“ е предолг."
+msgid "Listenee URI \"%s\" is too long."
+msgstr "Следеното URI „%s“ е предолго."
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr "Следеното URI „%s“ е за локален корисник."
+msgid "Listenee URI \"%s\" is a local user."
+msgstr "Следеното URI „%s“ е локален корисник."
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+msgid "Profile URL \"%s\" is for a local user."
msgstr "Профилната URL-адреса „%s“ е за локален корисник."
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Лиценцата на каналот на следениот „%1$s“ не е складна на лиценцата на "
+"мрежното место „%2$s“."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "URL-адресата „%s“ за аватар е неважечка."
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
#, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr "Не можам да ја прочитам URL на аватарот „%s“."
+msgid "Cannot read avatar URL \"%s\"."
+msgstr "Не можам да ја прочитам URL-адресата на аватарот „%s“."
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr "Погрешен тип на слика за URL на аватарот „%s“."
+msgid "Wrong image type for avatar URL \"%s\"."
+msgstr "Погрешен тип на слика за аватарот со URL „%s“."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Изглед на профилот"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6033,7 +6691,7 @@ msgstr ""
"Прилагодете го изгледот на Вашиот профил, со позадинска слика и палета од "
"бои по Ваш избор."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Добар апетит!"
@@ -6064,7 +6722,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Подновувања од %1$s на %2$s!"
@@ -6125,7 +6783,7 @@ msgid "Plugins"
msgstr "Приклучоци"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Верзија"
@@ -6134,32 +6792,32 @@ msgid "Author(s)"
msgstr "Автор(и)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Бендисај"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s ја бендиса забелешката %2$s."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Не можам да ја обработам URL-адресата „%s“"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Робин мисли дека нешто е невозможно."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6176,7 +6834,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6188,7 +6846,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6198,7 +6856,7 @@ msgstr[1] ""
"Волку голема податотека ќе го надмине Вашето месечно следување од %d бајти"
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Погрешно податотечно име."
@@ -6256,7 +6914,7 @@ msgid "Could not create login token for %s"
msgstr "Не можам да создадам најавен жетон за"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Никаде не е пронајдено име на базата или DSN."
@@ -6283,23 +6941,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Нема таков профил (%1$d) за забелешката (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Грешка во базата на податоци при вметнувањето на тарабната ознака: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Проблем со зачувувањето на белешката. Премногу долго."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Проблем со зачувувањето на белешката. Непознат корисник."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6307,7 +6965,7 @@ msgstr ""
"неколку минути."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6316,42 +6974,42 @@ msgstr ""
"неколку минути."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Забрането Ви е да објавувате забелешки на ова мрежно место."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Проблем во зачувувањето на белешката."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr "На saveKnownGroups му е укажан погрешен тип."
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Проблем при зачувувањето на групното приемно сандаче."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Не можев да го зачувам одговорот за %1$d, %2$d."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6359,7 +7017,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
@@ -6368,7 +7026,7 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6440,35 +7098,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Добредојдовте на %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Не е зададен корисник за еднокорисничкиот режим."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr "Повикан е еднокориснички режим, но не е овозможен."
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Не можев да ја создадам групата."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Не можев да поставам URI на групата."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Не можев да назначам членство во групата."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Не можев да ги зачувам информациите за локалните групи."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr "Не можам да ја најдам сметката %s."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr "Не можам да најдам XRD за %s."
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr "Нема служба за API на AtomPub за %s."
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6505,211 +7184,214 @@ msgid "Other"
msgstr "Друго"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Страница без наслов"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Повеќе"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Главна навигација"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Личен профил и хронологија на пријатели"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Лично"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Промена на е-пошта, аватар, лозинка, профил"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Сметка"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Поврзи се со услуги"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Поврзи се"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Промена на поставките на мрежното место"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Админ"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Поканете пријатели и колеги да Ви се придружат на %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Покани"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Одјава"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Одјава"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Создај сметка"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Регистрација"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Најава"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Најава"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Напомош!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Помош"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Пребарајте луѓе или текст"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Барај"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Напомена за мрежното место"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Локални прегледи"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Напомена за страницата"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Споредна навигација"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Помош"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
-msgstr "За"
+msgstr "За нас"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "ЧПП"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Услови"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Приватност"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Изворен код"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Контакт"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Значка"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Лиценца на програмот StatusNet"
@@ -6717,7 +7399,7 @@ msgstr "Лиценца на програмот StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6727,7 +7409,7 @@ msgstr ""
"%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** е сервис за микроблогирање."
@@ -6736,7 +7418,7 @@ msgstr "**%%site.name%%** е сервис за микроблогирање."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6748,20 +7430,20 @@ msgstr ""
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Лиценца на содржините на мрежното место"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Содржината и податоците на %1$s се лични и доверливи."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
@@ -6769,7 +7451,7 @@ msgstr ""
"права задржани."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Авторските права на содржината и податоците им припаѓаат на учесниците. Сите "
@@ -6777,25 +7459,25 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "Сите содржини и податоци на %1$s се достапни под лиценцата %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Прелом на страници"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Следно"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Претходно"
@@ -6804,10 +7486,77 @@ msgstr "Претходно"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "Се очекува коренски каналски елемент, но добив цел XML документ."
-#: lib/activity.php:360
-#, fuzzy
-msgid "Post"
-msgstr "Фото"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Непознат глагол: „%s“."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr "Не можам да наметнам претплата од недоверлив корисник."
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr "Не можам да му наметнам на далечинскиот корисник да се претплати."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr "Непознат профил."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr "Оваа активност се чини неповрзана со нашиот корисник."
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr "Далечинскиот профил не е група!"
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr "Корисникот веќе членува во групава."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr "Веќе ми е позната забелешката %1$s и таа има друг автор %2$s."
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr "Не презапишувам авторски податоци за недоверлив корисник."
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr "Нема содржина за забелешката %s."
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "Нема корисник по име %s."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s %2$s %3$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6879,7 +7628,7 @@ msgid "User configuration"
msgstr "Кориснички поставки"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Корисник"
@@ -6925,19 +7674,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Нема програм за тој потрошувачки клуч."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Лош пристапен жетон."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Нема корисник за тој жетон."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Не можевме да Ве потврдиме."
@@ -6958,29 +7711,33 @@ msgid ""
msgstr "Не можев да пронајдам профил и програм поврзан со жетонот за барање."
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "Не можев да го издадам жетонот за пристап."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr ""
"Грешка во базата на податоци при вметнувањето на корисникот на OAuth-"
"програмот."
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr ""
+"Грешка во базата на податоци при подновата на корисникот на OAuth-програмот."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Се обидовте да отповикате непознат жетон."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Не успеав да го избришам отповиканиот жетон."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Икона за овој програм"
@@ -7092,17 +7849,22 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Одземи"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
-msgstr "авторскиот елемент мора да содржи елемент на име."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr "Авторскиот елемент мора да содржи елемент за име."
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr "Не користете го овој метод!"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Автор"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Обезбедувач"
@@ -7131,6 +7893,11 @@ msgstr "Менувањето на лозинки не е дозволено."
msgid "Block"
msgstr "Блокирај"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Блокирај го корисников"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7244,7 +8011,7 @@ msgstr "Име и презиме: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Местоположба: %s"
@@ -7252,7 +8019,7 @@ msgstr "Местоположба: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Домашна страница: %s"
@@ -7527,24 +8294,24 @@ msgstr ""
"tracking - сè уште не е имплементирано.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "Нема пронајдено податотека со поставки."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "Пребарав податотеки со поставки на следниве места:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Препорачуваме да го пуштите инсталатерот за да го поправите ова."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Оди на инсталаторот."
@@ -7585,14 +8352,19 @@ msgstr "Овластени поврзани програми"
msgid "Database error"
msgstr "Грешка во базата на податоци"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Избриши овој корисник"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Подигање"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7611,25 +8383,72 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Искл."
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Врати одново"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Промена на бои"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Користи по основно"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Врати основно-зададени нагодувања"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Врати по основно"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Зачувај изглед"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Не можев да го подновам Вашиот изглед."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Основно-зададениот изглед е вратен."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr "Не можам да пронајдам служби за: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Одбендисај ја забелешкава"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Тргни од бендисани"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Бендисај ја забелешкава"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Бендисај"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7646,6 +8465,18 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr "Ова не е Atom-канал."
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr "Нема автор во емитувањето."
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr "Не можам да увезам без корисник."
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7680,32 +8511,32 @@ msgstr "Оди"
msgid "Grant this user the \"%s\" role"
msgstr "Додели улога „%s“ на корисников"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места."
+msgstr "1-64 мали букви или бројки, без интерпукциски знаци и празни места."
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL на страницата или блогот на групата или темата"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Опишете ја групата или темата"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Опишете ја групата или темата со највеќе %d знак"
msgstr[1] "Опишете ја групата или темата со највеќе %d знаци"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Местоположба на групата (ако има). На пр. „Град, Сој. држава/област, Земја“"
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7814,40 +8645,41 @@ msgstr "Ознаки во забелешките на групата %s"
msgid "This page is not available in a media type you accept"
msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате."
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Неподдржан фомрат на слики."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Податотеката е преголема. Максималната дозволена големина изнесува %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Делумно подигање."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Системска грешка при подигањето на податотеката."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Не е слика или податотеката е пореметена."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Податотеката е изгубена."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Непознат тип на податотека"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7855,7 +8687,7 @@ msgstr[0] "%d МБ"
msgstr[1] "%d МБ"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7863,7 +8695,7 @@ msgstr[0] "%d кБ"
msgstr[1] "%d кБ"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7884,23 +8716,25 @@ msgstr "Непознат извор на приемна пошта %d."
msgid "Leave"
msgstr "Напушти"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Најава со корисничко име и лозинка"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Создај нова сметка"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Потврдување на адресата"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7932,14 +8766,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s сега ги следи Вашите забелешки на %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7954,7 +8788,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7982,14 +8816,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Биографија: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Нова е-поштенска адреса за објавување на %s"
@@ -7997,7 +8831,7 @@ msgstr "Нова е-поштенска адреса за објавување н
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8020,34 +8854,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Статус на %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Потврда за СМС"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: потврдете го како свој телефонскиов број со следниов код:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
+msgid "You have been nudged by %s"
msgstr "%s Ве подбуцна"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8076,7 +8910,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Нова приватна порака од %s"
@@ -8085,7 +8919,7 @@ msgstr "Нова приватна порака од %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8120,7 +8954,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) ја бендиса вашата забелешка"
@@ -8130,7 +8964,7 @@ msgstr "%1$s (@%2$s) ја бендиса вашата забелешка"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8168,7 +9002,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8181,7 +9015,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) Ви испрати забелешка што сака да ја прочитате"
@@ -8192,7 +9026,7 @@ msgstr "%1$s (@%2$s) Ви испрати забелешка што сака да
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8242,11 +9076,11 @@ msgstr ""
"\n"
"П.С. Можете да ги исклучите овие известувања по е-пошта тука: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Само корисникот може да го чита своето сандаче."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8255,10 +9089,6 @@ msgstr ""
"впуштите во разговор со други корисници. Луѓето можат да Ви испраќаат пораки "
"што ќе можете да ги видите само Вие."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "од"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Не можев да ја парсирам пораката."
@@ -8287,42 +9117,6 @@ msgstr ""
"Се појави грешка во базата на податоци при зачувувањето на Вашата "
"податотека. Обидете се повторно."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Подигнатата податотека ја надминува директивата upload_max_filesize во php."
-"ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Подигнатата податотека ја надминува директивата the MAX_FILE_SIZE назначена "
-"во HTML-образецот."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Подигнатата податотека е само делумно подигната."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Недостасува привремена папка."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Податотеката не може да се запише на дискот."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Подигањето на податотеката е запрено од проширувањето."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8343,7 +9137,7 @@ msgstr "Не можев да го утврдам mime-типот на подат
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8354,7 +9148,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "„%s„ не е поддржан податотечен тип на овој опслужувач."
@@ -8384,20 +9178,28 @@ msgstr "Расположиви знаци"
#: lib/messageform.php:185 lib/noticeform.php:237
msgctxt "Send button for sending notice"
msgid "Send"
-msgstr "Прати"
+msgstr "Испрати"
+
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr "Пораки"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "од"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Прекарот мора да има само мали букви и бројки и да нема празни места."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "Прекарот не може да стои празен."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8413,11 +9215,11 @@ msgstr "Испрати забелешка"
msgid "What's up, %s?"
msgstr "Што има ново, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Приложи"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Приложи податотека"
@@ -8438,55 +9240,59 @@ msgstr ""
"Обидете се подоцна."
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "С"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "Ј"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "И"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "З"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "во"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "интернет"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "во контекст"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Повторено од"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Одговори на забелешкава"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Одговор"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Избриши ја оваа забелешка"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Забелешката е повторена"
@@ -8523,77 +9329,108 @@ msgstr "Дуплирана забелешка."
msgid "Couldn't insert new subscription."
msgstr "Не може да се внесе нова претплата."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Личен"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+msgctxt "MENU"
msgid "Replies"
msgstr "Одговори"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Профил"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
msgid "Favorites"
msgstr "Бендисани"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr "Примени"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Ваши приемни пораки"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
msgid "Outbox"
msgstr "За праќање"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Ваши испратени пораки"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Ознаки во забелешките на %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Непознато"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Претплати"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Сите претплати"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Претплатници"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Сите претплатници"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Кориснички ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Член од"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Групи"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Дневен просек"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Сите групи"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Неимплементиран метод."
@@ -8640,7 +9477,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Одземи му ја улогата „%s“ на корисников"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "Страницата не е пронајдена."
@@ -8730,6 +9567,10 @@ msgstr "Покани"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Поканете пријатели и колеги да Ви се придружат на %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Претплати се на корисников"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8844,64 +9685,81 @@ msgstr "Откажи ја претплатата"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Корисникот %1$s (%2$d) нема профилен запис."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Уреди аватар"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Кориснички дејства"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Бришењето на корисникот е во тек..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Уреди нагодувања на профилот"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Уреди"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Испрати му директна порака на корисников"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Порака"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Модерирај"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Корисничка улога"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Администратор"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Модератор"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Не сте најавени."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "пред неколку секунди"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "пред една минута"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8909,12 +9767,12 @@ msgstr[0] "пред околу една минута"
msgstr[1] "пред околу %d минути"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "пред еден час"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8922,12 +9780,12 @@ msgstr[0] "пред околу еден час"
msgstr[1] "пред околу %d часа"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "пред еден ден"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8935,12 +9793,12 @@ msgstr[0] "пред околу еден ден"
msgstr[1] "пред околу %d дена"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "пред еден месец"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8948,18 +9806,13 @@ msgstr[0] "пред околу еден месец"
msgstr[1] "пред околу %d месеци"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "пред една година"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s не е важечка боја!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr ""
@@ -8983,30 +9836,17 @@ msgstr[1] ""
"Пораката е предолга - дозволени се највеќе %1$d знаци, а вие испративте %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "Неважечки XML."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr "Неважечки XML. Нема XRD-корен."
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Земам резерва на податотеката „%s“."
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Нема назначено корисник. Ќе го употребам резервниот корисник."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "Има %d резервна ставка."
-msgstr[1] "Има %d резервни ставки."
diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po
new file mode 100644
index 0000000000..b40dcfd870
--- /dev/null
+++ b/locale/ml/LC_MESSAGES/statusnet.po
@@ -0,0 +1,9449 @@
+# Translation of StatusNet - Core to Malayalam (മലയാളം)
+# Exported from translatewiki.net
+#
+# Author: Praveenp
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Core\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:15+0000\n"
+"Language-Team: Malayalam \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: ml\n"
+"X-Message-Group: #out-statusnet-core\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Page title for Access admin panel that allows configuring site access.
+#. TRANS: Menu item for site administration
+#: actions/accessadminpanel.php:53 lib/adminpanelaction.php:363
+msgid "Access"
+msgstr "അഭിഗമ്യത"
+
+#. TRANS: Page notice.
+#: actions/accessadminpanel.php:64
+msgid "Site access settings"
+msgstr "സൈറ്റ് അഭിഗമ്യതാ സജ്ജീകരണങ്ങൾ"
+
+#. TRANS: Form legend for registration form.
+#: actions/accessadminpanel.php:151
+msgid "Registration"
+msgstr "രെജിസ്റ്ററേഷൻ"
+
+#. TRANS: Checkbox instructions for admin setting "Private".
+#: actions/accessadminpanel.php:155
+msgid "Prohibit anonymous users (not logged in) from viewing site?"
+msgstr "അജ്ഞാത ഉപയോക്താക്കളെ (ലോഗിൻ ചെയ്യാത്തവരെ) സൈറ്റ് കാണുന്നതിൽ നിന്നും വിലക്കണോ?"
+
+#. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
+#: actions/accessadminpanel.php:157
+msgctxt "LABEL"
+msgid "Private"
+msgstr "സ്വകാര്യം"
+
+#. TRANS: Checkbox instructions for admin setting "Invite only".
+#: actions/accessadminpanel.php:164
+msgid "Make registration invitation only."
+msgstr "രജിസ്ട്രേഷൻ ക്ഷണിച്ചിട്ടുള്ളവർക്കു മാത്രം."
+
+#. TRANS: Checkbox label for configuring site as invite only.
+#: actions/accessadminpanel.php:166
+msgid "Invite only"
+msgstr "ക്ഷണിക്കപ്പെട്ടവർക്ക് മാത്രം"
+
+#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations).
+#: actions/accessadminpanel.php:173
+msgid "Disable new registrations."
+msgstr "പുതിയ രജിസ്ട്രേഷനുകൾ വേണ്ട."
+
+#. TRANS: Checkbox label for disabling new user registrations.
+#: actions/accessadminpanel.php:175
+msgid "Closed"
+msgstr "അടച്ചു"
+
+#. TRANS: Title for button to save access settings in site admin panel.
+#: actions/accessadminpanel.php:191
+msgid "Save access settings"
+msgstr "അഭിഗമ്യതാ സജ്ജീകരണങ്ങൾ സേവ് ചെയ്യുക"
+
+#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
+#. TRANS: Button label to save e-mail preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
+#. TRANS: Button text for saving "Other settings" in profile.
+#. TRANS: Button text to store form data in the Paths admin panel.
+#. TRANS: Button to save input in profile settings.
+#. TRANS: Button text for saving site notice in admin panel.
+#. TRANS: Button label to save SMS preferences.
+#. TRANS: Save button for settings for a profile in a subscriptions list.
+#. TRANS: Button text to save user settings in user admin panel.
+#. TRANS: Button label in the "Edit application" form.
+#. TRANS: Button text on profile design page to save settings.
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
+msgctxt "BUTTON"
+msgid "Save"
+msgstr "സേവ് ചെയ്യുക"
+
+#. TRANS: Server error when page not found (404).
+#. TRANS: Server error when page not found (404)
+#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
+#: actions/showfavorites.php:140 actions/tag.php:52
+msgid "No such page."
+msgstr "അത്തരത്തിൽ ഒരു താളില്ല."
+
+#. TRANS: Client error when user not found for an action.
+#. TRANS: Client error when user not found for an rss related action.
+#. TRANS: Client error displayed when no existing user is provided for a user's delivery device setting.
+#. TRANS: Client error displayed if a user could not be found.
+#. TRANS: Client error when user not found updating a profile background image.
+#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
+#. TRANS: Client error when user not found for an API action to remove a block for a user.
+#. TRANS: Client error given when a user was not found (404).
+#. TRANS: Client error when user not found for an API direct message action.
+#. TRANS: Client error given when a user was not found (404).
+#. TRANS: Client error displayed when checking group membership for a non-existing user.
+#. TRANS: Client error displayed when trying to have a non-existing user join a group.
+#. TRANS: Client error displayed when trying to have a non-existing user leave a group.
+#. TRANS: Client error displayed when updating a status for a non-existing user.
+#. TRANS: Client error displayed when requesting a list of followers for a non-existing user.
+#. TRANS: Client error displayed when requesting most recent favourite notices by a user for a non-existing user.
+#. TRANS: Client error displayed when requesting dents of a user and friends for a user that does not exist.
+#. TRANS: Client error displayed when requesting most recent dents by user and friends for a non-existing user.
+#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
+#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
+#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
+#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
+#: actions/all.php:80 actions/allrss.php:69
+#: actions/apiaccountupdatedeliverydevice.php:110
+#: actions/apiaccountupdateprofile.php:103
+#: actions/apiaccountupdateprofilebackgroundimage.php:118
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
+#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
+#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
+#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
+#: actions/apigrouplist.php:70 actions/apistatusesupdate.php:230
+#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
+#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
+#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
+#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
+#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
+#: lib/mailbox.php:80 lib/profileaction.php:77
+msgid "No such user."
+msgstr "അങ്ങനെ ഒരു ഉപയോക്താവില്ല."
+
+#. TRANS: Page title. %1$s is user nickname, %2$d is page number
+#: actions/all.php:91
+#, php-format
+msgid "%1$s and friends, page %2$d"
+msgstr "%1$s ഒപ്പം സുഹൃത്തുക്കളും, താൾ %2$d"
+
+#. TRANS: Page title. %s is user nickname
+#. TRANS: H1 text for page. %s is a user nickname.
+#. TRANS: Message is used as link title. %s is a user nickname.
+#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
+#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
+#: lib/personalgroupnav.php:102
+#, php-format
+msgid "%s and friends"
+msgstr "%s ഒപ്പം സുഹൃത്തുക്കളും"
+
+#. TRANS: %s is user nickname.
+#: actions/all.php:108
+#, php-format
+msgid "Feed for friends of %s (RSS 1.0)"
+msgstr ""
+
+#. TRANS: %s is user nickname.
+#: actions/all.php:117
+#, php-format
+msgid "Feed for friends of %s (RSS 2.0)"
+msgstr ""
+
+#. TRANS: %s is user nickname.
+#: actions/all.php:126
+#, php-format
+msgid "Feed for friends of %s (Atom)"
+msgstr ""
+
+#. TRANS: Empty list message. %s is a user nickname.
+#: actions/all.php:139
+#, php-format
+msgid ""
+"This is the timeline for %s and friends but no one has posted anything yet."
+msgstr ""
+
+#. TRANS: Encouragement displayed on logged in user's empty timeline.
+#. TRANS: This message contains Markdown links. Keep "](" together.
+#: actions/all.php:146
+#, php-format
+msgid ""
+"Try subscribing to more people, [join a group](%%action.groups%%) or post "
+"something yourself."
+msgstr ""
+
+#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@".
+#. TRANS: This message contains Markdown links. Keep "](" together.
+#: actions/all.php:150
+#, php-format
+msgid ""
+"You can try to [nudge %1$s](../%2$s) from their profile or [post something "
+"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)."
+msgstr ""
+
+#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users.
+#. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together.
+#. TRANS: Second sentence of empty message for anonymous users. %s is a user nickname.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:227
+#, php-format
+msgid ""
+"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
+"post a notice to them."
+msgstr ""
+
+#. TRANS: H1 text for page when viewing a list for self.
+#: actions/all.php:188
+msgid "You and friends"
+msgstr "താങ്കളും സുഹൃത്തുക്കളും"
+
+#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
+#. TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name.
+#: actions/allrss.php:122 actions/apitimelinefriends.php:213
+#: actions/apitimelinehome.php:119
+#, php-format
+msgid "Updates from %1$s and friends on %2$s!"
+msgstr ""
+
+#. TRANS: Client error displayed handling a non-existing API method.
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#. TRANS: Client error displayed trying to execute an unknown API method updating profile colours.
+#. TRANS: Client error displayed trying to execute an unknown API method verifying user credentials.
+#. TRANS: Client error given when an API method was not found (404).
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#. TRANS: Client error displayed trying to execute an unknown API method showing friendship.
+#. TRANS: Client error given when an API method was not found (404).
+#. TRANS: Client error displayed trying to execute an unknown API method showing group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method joining a group.
+#. TRANS: Client error displayed trying to execute an unknown API method leaving a group.
+#. TRANS: Client error displayed trying to execute an unknown API method checking group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method listing the latest 20 groups.
+#. TRANS: Client error displayed trying to execute an unknown API method showing group membership.
+#. TRANS: Client error displayed trying to execute an unknown API method showing a group.
+#. TRANS: Client error displayed trying to execute an unknown API method testing API connectivity.
+#. TRANS: Client error displayed trying to execute an unknown API method deleting a status.
+#. TRANS: Client error displayed when trying to handle an unknown API method.
+#: actions/apiaccountratelimitstatus.php:69
+#: actions/apiaccountupdatedeliverydevice.php:92
+#: actions/apiaccountupdateprofile.php:94
+#: actions/apiaccountupdateprofilebackgroundimage.php:92
+#: actions/apiaccountupdateprofilecolors.php:115
+#: actions/apiaccountverifycredentials.php:68 actions/apidirectmessage.php:157
+#: actions/apifavoritecreate.php:98 actions/apifavoritedestroy.php:98
+#: actions/apifriendshipscreate.php:99 actions/apifriendshipsdestroy.php:99
+#: actions/apifriendshipsshow.php:124 actions/apigroupcreate.php:138
+#: actions/apigroupismember.php:115 actions/apigroupjoin.php:160
+#: actions/apigroupleave.php:145 actions/apigrouplist.php:134
+#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:105
+#: actions/apigroupshow.php:114 actions/apihelptest.php:84
+#: actions/apistatusesdestroy.php:101 actions/apistatusesretweets.php:110
+#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
+#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
+#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
+#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
+#: actions/apitimelineretweetedtome.php:118
+#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
+#: actions/apitimelineuser.php:206 actions/apiusershow.php:100
+msgid "API method not found."
+msgstr "എ.പി.ഐ. മെതേഡ് കണ്ടെത്താനായില്ല."
+
+#. TRANS: Client error message. POST is a HTTP command. It should not be translated.
+#. TRANS: Client error. POST is a HTTP command. It should not be translated.
+#: actions/apiaccountupdatedeliverydevice.php:83
+#: actions/apiaccountupdateprofile.php:85
+#: actions/apiaccountupdateprofilebackgroundimage.php:83
+#: actions/apiaccountupdateprofilecolors.php:106
+#: actions/apiaccountupdateprofileimage.php:80 actions/apiblockcreate.php:87
+#: actions/apiblockdestroy.php:85 actions/apidirectmessagenew.php:107
+#: actions/apifavoritecreate.php:88 actions/apifavoritedestroy.php:88
+#: actions/apifriendshipscreate.php:89 actions/apifriendshipsdestroy.php:89
+#: actions/apigroupcreate.php:102 actions/apigroupjoin.php:89
+#: actions/apigroupleave.php:89 actions/apimediaupload.php:66
+#: actions/apistatusesretweet.php:63 actions/apistatusesupdate.php:194
+msgid "This method requires a POST."
+msgstr ""
+
+#. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting.
+#: actions/apiaccountupdatedeliverydevice.php:103
+msgid ""
+"You must specify a parameter named 'device' with a value of one of: sms, im, "
+"none."
+msgstr ""
+
+#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
+#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
+msgid "Could not update user."
+msgstr "ഉപയോക്തൃ വിവരങ്ങൾ പുതുക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Client error displayed if a user profile could not be found.
+#. TRANS: Client error displayed when a user has no profile.
+#. TRANS: Client error displayed a user has no profile updating profile colours.
+#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
+#. TRANS: Client error displayed when requesting user information for a user without a profile.
+#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
+#: actions/apiaccountupdateprofile.php:111
+#: actions/apiaccountupdateprofilebackgroundimage.php:199
+#: actions/apiaccountupdateprofilecolors.php:183
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
+#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
+#: lib/profileaction.php:85
+msgid "User has no profile."
+msgstr ""
+
+#. TRANS: Server error displayed if a user profile could not be saved.
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
+msgid "Could not save profile."
+msgstr ""
+
+#. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
+#. TRANS: %s is the number of bytes of the CONTENT_LENGTH.
+#. TRANS: Form validation error in design settings form. POST should remain untranslated.
+#: actions/apiaccountupdateprofilebackgroundimage.php:108
+#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
+#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
+#: lib/designsettings.php:298
+#, php-format
+msgid ""
+"The server was unable to handle that much POST data (%s byte) due to its "
+"current configuration."
+msgid_plural ""
+"The server was unable to handle that much POST data (%s bytes) due to its "
+"current configuration."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error displayed when saving design settings fails because of an empty id.
+#. TRANS: Client error displayed when saving design settings fails because of an empty result.
+#. TRANS: Client error displayed when a database error occurs inserting profile colours.
+#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
+#: actions/apiaccountupdateprofilebackgroundimage.php:138
+#: actions/apiaccountupdateprofilebackgroundimage.php:149
+#: actions/apiaccountupdateprofilecolors.php:160
+#: actions/apiaccountupdateprofilecolors.php:171
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
+msgid "Unable to save your design settings."
+msgstr "താങ്കളുടെ രൂപകല്പനാ സജ്ജീകരണങ്ങൾ കാത്തുസൂക്ഷിക്കാനായില്ല."
+
+#. TRANS: Error displayed when updating design settings fails.
+#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#: actions/apiaccountupdateprofilebackgroundimage.php:191
+#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
+msgid "Could not update your design."
+msgstr "താങ്കളുടെ രൂപകല്പന പുതുക്കാനായില്ല."
+
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
+msgid "Main"
+msgstr "മുഖ്യം"
+
+#. TRANS: Title for Atom feed. %s is a user nickname.
+#. TRANS: Message is used as link title. %s is a user nickname.
+#. TRANS: Title in atom group notice feed. %s is a group name.
+#. TRANS: Title in atom user notice feed. %s is a user name.
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
+#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
+#: lib/atomusernoticefeed.php:88
+#, php-format
+msgid "%s timeline"
+msgstr "%s എന്ന ഉപയോക്താവിന്റെ സമയരേഖ"
+
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
+#. TRANS: Header for subscriptions overview for a user (first page).
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
+#: actions/subscriptions.php:51
+#, php-format
+msgid "%s subscriptions"
+msgstr "%s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാകലുകൾ"
+
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
+msgid "%s favorites"
+msgstr "%s എന്ന ഉപയോക്താവിന് പ്രിയങ്കരമായവ"
+
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
+msgid "%s memberships"
+msgstr "%s അംഗത്വങ്ങൾ"
+
+#. TRANS: Client error displayed when users try to block themselves.
+#: actions/apiblockcreate.php:105
+msgid "You cannot block yourself!"
+msgstr "താങ്കൾക്ക് താങ്കളെത്തന്നെ തടയാൻ പറ്റില്ല!"
+
+#. TRANS: Server error displayed when blocking a user has failed.
+#: actions/apiblockcreate.php:127
+msgid "Block user failed."
+msgstr "ഉപയോക്താവിനെ തടയൽ പരാജയപ്പെട്ടു."
+
+#. TRANS: Server error displayed when unblocking a user has failed.
+#: actions/apiblockdestroy.php:113
+msgid "Unblock user failed."
+msgstr "ഉപയോക്താവിന്റെ തടയൽ നീക്കൽ പരാജയപ്പെട്ടു."
+
+#. TRANS: Title. %s is a user nickname.
+#: actions/apidirectmessage.php:88
+#, php-format
+msgid "Direct messages from %s"
+msgstr "%s നേരിട്ടയച്ച സന്ദേശങ്ങൾ"
+
+#. TRANS: Subtitle. %s is a user nickname.
+#: actions/apidirectmessage.php:93
+#, php-format
+msgid "All the direct messages sent from %s"
+msgstr "%s നേരിട്ടയച്ച എല്ലാ സന്ദേശങ്ങളും"
+
+#. TRANS: Title. %s is a user nickname.
+#: actions/apidirectmessage.php:102
+#, php-format
+msgid "Direct messages to %s"
+msgstr "%s എന്ന ഉപയോക്താവിന് നേരിട്ടുള്ള സന്ദേശങ്ങൾ"
+
+#. TRANS: Subtitle. %s is a user nickname.
+#: actions/apidirectmessage.php:107
+#, php-format
+msgid "All the direct messages sent to %s"
+msgstr "%s എന്ന ഉപയോക്താവിന് നേരിട്ടുള്ള എല്ലാ സന്ദേശങ്ങളും"
+
+#. TRANS: Client error displayed when no message text was submitted (406).
+#: actions/apidirectmessagenew.php:117
+msgid "No message text!"
+msgstr "സന്ദേശത്തിൽ എഴുത്ത് ഇല്ല!"
+
+#. TRANS: Client error displayed when message content is too long.
+#. TRANS: %d is the maximum number of characters for a message.
+#. TRANS: Form validation error displayed when message content is too long.
+#. TRANS: %d is the maximum number of characters for a message.
+#: actions/apidirectmessagenew.php:127 actions/newmessage.php:152
+#, php-format
+msgid "That's too long. Maximum message size is %d character."
+msgid_plural "That's too long. Maximum message size is %d characters."
+msgstr[0] "അത് വളരെ വലുതാണ്. സന്ദേശത്തിന്റെ പരമാവധി വലിപ്പം %d അക്ഷരമാണ്."
+msgstr[1] "അത് വളരെ വലുതാണ്. സന്ദേശത്തിന്റെ പരമാവധി വലിപ്പം %d അക്ഷരങ്ങളാണ്."
+
+#. TRANS: Client error displayed if a recipient user could not be found (403).
+#: actions/apidirectmessagenew.php:139
+msgid "Recipient user not found."
+msgstr "സ്വീകർത്താവായ ഉപയോക്താവിനെ കണ്ടെത്താനായില്ല."
+
+#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
+#: actions/apidirectmessagenew.php:144
+msgid "Cannot send direct messages to users who aren't your friend."
+msgstr "താങ്കളുടെ സുഹൃത്തുക്കളല്ലാത്ത ഉപയോക്താക്കൾക്ക് നേരിട്ടുള്ള സന്ദേശങ്ങൾ അയയ്ക്കാൻ കഴിയില്ല."
+
+#. TRANS: Client error displayed trying to direct message self (403).
+#: actions/apidirectmessagenew.php:154
+msgid ""
+"Do not send a message to yourself; just say it to yourself quietly instead."
+msgstr "താങ്കൾക്കു തന്നെ സന്ദേശം അയയ്ക്കരുത്; പകരം അത് പതുക്കെ സ്വയം പറയുക."
+
+#. TRANS: Client error displayed when requesting a status with a non-existing ID.
+#. TRANS: Client error displayed when trying to remove a favourite with an invalid ID.
+#. TRANS: Client error displayed trying to delete a status with an invalid ID.
+#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:108
+#: actions/apistatusesdestroy.php:121
+msgid "No status found with that ID."
+msgstr "ആ ഐ.ഡി.യോട് യോജിക്കുന്ന സ്ഥിതിവിവരം കണ്ടെത്താനായില്ല."
+
+#. TRANS: Client error displayed when trying to mark a notice favourite that already is a favourite.
+#: actions/apifavoritecreate.php:120
+msgid "This status is already a favorite."
+msgstr "ഈ സ്ഥിതിവിവരം മുമ്പേ തന്നെ പ്രിയങ്കരമാണ്!"
+
+#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
+#. TRANS: Error message text shown when a favorite could not be set.
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
+msgid "Could not create favorite."
+msgstr "പ്രിയങ്കരങ്ങൾ സൃഷ്ടിക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Client error displayed when trying to remove a favourite that was not a favourite.
+#: actions/apifavoritedestroy.php:122
+msgid "That status is not a favorite."
+msgstr "ഈ സ്ഥിതിവിവരം പ്രിയങ്കരമല്ല."
+
+#. TRANS: Client error displayed when removing a favourite has failed.
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
+msgid "Could not delete favorite."
+msgstr "പ്രിയങ്കരം മായ്ക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Client error displayed when trying follow who's profile could not be found.
+#: actions/apifriendshipscreate.php:109
+msgid "Could not follow user: profile not found."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to follow a user that's already being followed.
+#. TRANS: %s is the nickname of the user that is already being followed.
+#: actions/apifriendshipscreate.php:120
+#, php-format
+msgid "Could not follow user: %s is already on your list."
+msgstr "ഉപയോക്താവിനെ പിന്തുടരാൻ കഴിഞ്ഞില്ല: %s താങ്കളുടെ പട്ടികയിൽ മുമ്പേയുണ്ട്."
+
+#. TRANS: Client error displayed when trying to unfollow a user that cannot be found.
+#: actions/apifriendshipsdestroy.php:109
+msgid "Could not unfollow user: User not found."
+msgstr "ഉപയോക്താവിനെ പിന്തുടരൽ നീക്കംചെയ്യാൻ കഴിഞ്ഞില്ല: ഉപയോക്താവിനെ കണ്ടെത്താനായില്ല."
+
+#. TRANS: Client error displayed when trying to unfollow self.
+#: actions/apifriendshipsdestroy.php:121
+msgid "You cannot unfollow yourself."
+msgstr "താങ്കൾക്ക് താങ്കളെത്തന്നെ പിന്തുടരൽ നീക്കാൻ പറ്റില്ല."
+
+#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
+#: actions/apifriendshipsexists.php:88
+msgid "Two valid IDs or nick names must be supplied."
+msgstr ""
+
+#. TRANS: Client error displayed when a source user could not be determined showing friendship.
+#: actions/apifriendshipsshow.php:131
+msgid "Could not determine source user."
+msgstr "സ്രോതസ്സ് ഉപയോക്താവിനെ നിർണ്ണയിക്കാനായില്ല."
+
+#. TRANS: Client error displayed when a target user could not be determined showing friendship.
+#: actions/apifriendshipsshow.php:140
+msgid "Could not find target user."
+msgstr "ലക്ഷ്യമിട്ട ഉപയോക്താവിനെ കണ്ടെത്താനായില്ല."
+
+#. TRANS: Client error trying to create a group with a nickname this is already in use.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
+msgid "Nickname already in use. Try another one."
+msgstr "വിളിപ്പേര് മുമ്പേ ഉപയോഗത്തിലുണ്ട്. മറ്റൊരെണ്ണം ശ്രമിക്കുക."
+
+#. TRANS: Client error in form for group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
+msgid "Not a valid nickname."
+msgstr "സാധുവായ വിളിപ്പേര് അല്ല."
+
+#. TRANS: Client error in form for group creation.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
+#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
+msgid "Homepage is not a valid URL."
+msgstr "ഹോംപേജിന്റെ യൂ.ആർ.എൽ. സാധുവല്ല."
+
+#. TRANS: Client error in form for group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
+msgid "Full name is too long (maximum 255 characters)."
+msgstr "പൂർണ്ണ നാമത്തിന്റെ നീളം വളരെ കൂടുതലാണ് (പരമാവധി 255 അക്ഷരങ്ങൾ)."
+
+#. TRANS: Client error shown when providing too long a description during group creation.
+#. TRANS: %d is the maximum number of allowed characters.
+#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
+#. TRANS: Group edit form validation error.
+#. TRANS: Form validation error in New application form.
+#. TRANS: %d is the maximum number of characters for the description.
+#. TRANS: Group create form validation error.
+#. TRANS: %d is the maximum number of allowed characters.
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
+#, php-format
+msgid "Description is too long (maximum %d character)."
+msgid_plural "Description is too long (maximum %d characters)."
+msgstr[0] "വിവരണത്തിനു നീളം കൂടുതലാണ് (പരമാവധി %d അക്ഷരം)."
+msgstr[1] "വിവരണത്തിനു നീളം കൂടുതലാണ് (പരമാവധി %d അക്ഷരങ്ങൾ)."
+
+#. TRANS: Client error shown when providing too long a location during group creation.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: Validation error in form for profile settings.
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
+msgid "Location is too long (maximum 255 characters)."
+msgstr ""
+
+#. TRANS: Client error shown when providing too many aliases during group creation.
+#. TRANS: %d is the maximum number of allowed aliases.
+#. TRANS: Group edit form validation error.
+#. TRANS: %d is the maximum number of allowed aliases.
+#. TRANS: Group create form validation error.
+#. TRANS: %d is the maximum number of allowed aliases.
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
+#, php-format
+msgid "Too many aliases! Maximum %d allowed."
+msgid_plural "Too many aliases! Maximum %d allowed."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client error shown when providing an invalid alias during group creation.
+#. TRANS: %s is the invalid alias.
+#: actions/apigroupcreate.php:253
+#, php-format
+msgid "Invalid alias: \"%s\"."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
+#. TRANS: %s is the alias that is already in use.
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
+#, php-format
+msgid "Alias \"%s\" already in use. Try another one."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
+#. TRANS: Group edit form validation error.
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
+msgid "Alias can't be the same as nickname."
+msgstr ""
+
+#. TRANS: Client error displayed when checking group membership for a non-existing group.
+#. TRANS: Client error displayed when trying to join a group that does not exist.
+#. TRANS: Client error displayed when trying to leave a group that does not exist.
+#. TRANS: Client error displayed trying to show group membership on a non-existing group.
+#. TRANS: Client error displayed when trying to show a group that could not be found.
+#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
+#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
+#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
+msgid "Group not found."
+msgstr "സംഘത്തെ കണ്ടെത്താനായില്ല."
+
+#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
+#. TRANS: Error text shown a user tries to join a group they already are a member of.
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
+msgid "You are already a member of that group."
+msgstr "താങ്കൾ ആ സംഘത്തിൽ മുമ്പേ തന്നെ അംഗമാണ്."
+
+#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
+#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
+msgid "You have been blocked from that group by the admin."
+msgstr "ആ സംഘത്തിൽ നിന്നും കാര്യനിർവ്വാഹകൻ താങ്കളെ തടഞ്ഞിരിക്കുന്നു."
+
+#. TRANS: Server error displayed when joining a group fails.
+#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
+#. TRANS: Message given having failed to add a user to a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
+#, php-format
+msgid "Could not join user %1$s to group %2$s."
+msgstr "%2$s എന്ന സംഘത്തിൽ %1$s എന്ന ഉപയോക്താവിനെ ചേർക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Server error displayed when trying to leave a group the user is not a member of.
+#: actions/apigroupleave.php:115
+msgid "You are not a member of this group."
+msgstr "താങ്കൾ ഈ സംഘത്തിൽ അംഗമല്ല."
+
+#. TRANS: Server error displayed when leaving a group fails.
+#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
+#. TRANS: Message given having failed to remove a user from a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
+#: lib/command.php:398
+#, php-format
+msgid "Could not remove user %1$s from group %2$s."
+msgstr "%2$s എന്ന സംഘത്തിൽ നിന്നും %1$s എന്ന ഉപയോക്താവിനെ നീക്കം ചെയ്യാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Used as title in check for group membership. %s is a user name.
+#: actions/apigrouplist.php:94
+#, php-format
+msgid "%s's groups"
+msgstr "%s എന്ന ഉപയോക്താവിന്റെ സംഘങ്ങൾ"
+
+#. TRANS: Used as subtitle in check for group membership. %1$s is a user name, %2$s is the site name.
+#: actions/apigrouplist.php:104
+#, php-format
+msgid "%1$s groups %2$s is a member of."
+msgstr "%2$s അംഗമായ %1$s സംഘങ്ങൾ."
+
+#. TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name.
+#. TRANS: Message is used as a page title. %s is a nick name.
+#: actions/apigrouplistall.php:88 actions/usergroups.php:63
+#, php-format
+msgid "%s groups"
+msgstr "%s സംഘങ്ങൾ"
+
+#. TRANS: Message is used as a subtitle when listing the lastest 20 groups. %s is a site name.
+#: actions/apigrouplistall.php:93
+#, php-format
+msgid "groups on %s"
+msgstr "%s സൈറ്റിലെ സംഘങ്ങൾ"
+
+#. TRANS: Client error displayed when uploading a media file has failed.
+#: actions/apimediaupload.php:101
+msgid "Upload failed."
+msgstr "അപ്ലോഡ് പരാജയപ്പെട്ടു."
+
+#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
+#: actions/apioauthaccesstoken.php:102
+msgid "Invalid request token or verifier."
+msgstr "അസാധുവായ അഭ്യർത്ഥനാ ചീട്ട് അല്ലെങ്കിൽ പരിശോധനോപാധി."
+
+#. TRANS: Client error given when no oauth_token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:107
+msgid "No oauth_token parameter provided."
+msgstr ""
+
+#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:115 actions/apioauthauthorize.php:129
+msgid "Invalid request token."
+msgstr "അസാധുവായ അഭ്യർത്ഥനാ ചീട്ട്."
+
+#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
+#: actions/apioauthauthorize.php:121
+msgid "Request token already authorized."
+msgstr "അഭ്യർത്ഥനാ ചീട്ട് മുമ്പേ തന്നെ അംഗീകരിക്കപ്പെട്ടതാണ്."
+
+#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
+#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
+#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
+#: lib/designsettings.php:310
+msgid "There was a problem with your session token. Try again, please."
+msgstr "താങ്കളുടെ സെഷൻ ചീട്ടിൽ ഒരു ചെറിയ പ്രശ്നം. ദയവായി വീണ്ടും ശ്രമിക്കുക."
+
+#. TRANS: Form validation error given when an invalid username and/or password was passed to the OAuth API.
+#: actions/apioauthauthorize.php:168
+msgid "Invalid nickname / password!"
+msgstr "അസാധുവായ വിളിപ്പേര് / രഹസ്യവാക്ക്!"
+
+#. TRANS: Server error displayed when a database action fails.
+#: actions/apioauthauthorize.php:217
+msgid "Database error inserting oauth_token_association."
+msgstr ""
+
+#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
+#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
+#. TRANS: Client error displayed submitting invalid form data for edit application.
+#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
+#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
+#. TRANS: Message given submitting a form with an unknown action in SMS settings.
+#. TRANS: Unknown form validation error in design settings form.
+#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
+msgid "Unexpected form submission."
+msgstr "അപ്രതീക്ഷിത ഫോം സമർപ്പിക്കൽ."
+
+#. TRANS: Title for a page where a user can confirm/deny account access by an external application.
+#: actions/apioauthauthorize.php:387
+msgid "An application would like to connect to your account"
+msgstr ""
+
+#. TRANS: Fieldset legend.
+#: actions/apioauthauthorize.php:404
+msgid "Allow or deny access"
+msgstr "ലഭ്യത അനുവദിക്കുക അല്ലെങ്കിൽ നിരാകരിക്കുക"
+
+#. TRANS: User notification of external application requesting account access.
+#. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename.
+#: actions/apioauthauthorize.php:425
+#, php-format
+msgid ""
+"An application would like the ability to %3$s your %4$s "
+"account data. You should only give access to your %4$s account to third "
+"parties you trust."
+msgstr ""
+
+#. TRANS: User notification of external application requesting account access.
+#. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application,
+#. TRANS: %3$s is the access type requested, %4$s is the StatusNet sitename.
+#: actions/apioauthauthorize.php:433
+#, php-format
+msgid ""
+"The application %1$s by %2$s would like "
+"the ability to %3$s your %4$s account data. You should only "
+"give access to your %4$s account to third parties you trust."
+msgstr ""
+
+#. TRANS: Fieldset legend.
+#: actions/apioauthauthorize.php:455
+msgctxt "LEGEND"
+msgid "Account"
+msgstr "അംഗത്വം"
+
+#. TRANS: Field label on OAuth API authorisation form.
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for group nickname (dt). Text hidden by default.
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
+msgid "Nickname"
+msgstr "വിളിപ്പേര്"
+
+#. TRANS: Field label on OAuth API authorisation form.
+#. TRANS: Link description in user account settings menu.
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
+msgid "Password"
+msgstr "രഹസ്യവാക്ക്"
+
+#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
+#. TRANS: by an external application.
+#. TRANS: Button label to cancel an e-mail address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
+#. TRANS: Button label to cancel a SMS address confirmation procedure.
+#. TRANS: Button label in the "Edit application" form.
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
+#: lib/applicationeditform.php:351
+msgctxt "BUTTON"
+msgid "Cancel"
+msgstr "റദ്ദാക്കുക"
+
+#. TRANS: Button text that when clicked will allow access to an account by an external application.
+#: actions/apioauthauthorize.php:485
+msgctxt "BUTTON"
+msgid "Allow"
+msgstr "അനുവദിക്കുക"
+
+#. TRANS: Form instructions.
+#: actions/apioauthauthorize.php:502
+msgid "Authorize access to your account information."
+msgstr "താങ്കളുടെ അംഗത്വ വിവരങ്ങളിലേയ്ക്കുള്ള പ്രവേശനത്തിനു അംഗീകാരം നൽകുക."
+
+#. TRANS: Header for user notification after revoking OAuth access to an application.
+#: actions/apioauthauthorize.php:594
+msgid "Authorization canceled."
+msgstr "അംഗീകാരം നൽകൽ റദ്ദാക്കി."
+
+#. TRANS: User notification after revoking OAuth access to an application.
+#. TRANS: %s is an OAuth token.
+#: actions/apioauthauthorize.php:598
+#, php-format
+msgid "The request token %s has been revoked."
+msgstr ""
+
+#. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
+#: actions/apioauthauthorize.php:621
+msgid "You have successfully authorized the application"
+msgstr ""
+
+#. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
+#: actions/apioauthauthorize.php:625
+msgid ""
+"Please return to the application and enter the following security code to "
+"complete the process."
+msgstr ""
+
+#. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth.
+#. TRANS: %s is the authorised application name.
+#: actions/apioauthauthorize.php:632
+#, php-format
+msgid "You have successfully authorized %s"
+msgstr "താങ്കൾ വിജയകരമായി %s അംഗീകരിച്ചിരിക്കുന്നു"
+
+#. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth.
+#. TRANS: %s is the authorised application name.
+#: actions/apioauthauthorize.php:639
+#, php-format
+msgid ""
+"Please return to %s and enter the following security code to complete the "
+"process."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete a status not using POST or DELETE.
+#. TRANS: POST and DELETE should not be translated.
+#: actions/apistatusesdestroy.php:111
+msgid "This method requires a POST or DELETE."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete a status of another user.
+#: actions/apistatusesdestroy.php:136
+msgid "You may not delete another user's status."
+msgstr "മറ്റൊരു ഉപയോക്താവിന്റെ സ്ഥിതിവിവരം മായ്ക്കാൻ താങ്കൾക്ക് കഴിയില്ല."
+
+#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
+#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
+#. TRANS: Error message displayed trying to delete a non-existing notice.
+#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
+#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
+#: actions/shownotice.php:92
+msgid "No such notice."
+msgstr "അത്തരത്തിൽ ഒരു അറിയിപ്പ് ഇല്ല."
+
+#. TRANS: Client error displayed trying to repeat an own notice through the API.
+#. TRANS: Error text shown when trying to repeat an own notice.
+#: actions/apistatusesretweet.php:83 lib/command.php:537
+msgid "Cannot repeat your own notice."
+msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല."
+
+#. TRANS: Client error displayed trying to re-repeat a notice through the API.
+#. TRANS: Error text shown when trying to repeat an notice that was already repeated by the user.
+#: actions/apistatusesretweet.php:92 lib/command.php:543
+msgid "Already repeated that notice."
+msgstr "ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു."
+
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
+#: actions/atompubsubscriptionfeed.php:109
+msgid "HTTP method not supported."
+msgstr "എച്ച്.റ്റി.റ്റി.പി. രീതി പിന്തുണയ്ക്കുന്നില്ല."
+
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
+#, php-format
+msgid "Unsupported format: %s."
+msgstr "പിന്തുണയ്ക്കാത്തയിനം തരം: %s."
+
+#. TRANS: Client error displayed requesting a deleted status.
+#: actions/apistatusesshow.php:155
+msgid "Status deleted."
+msgstr "സ്ഥിതിവിവരക്കുറിപ്പ് മായ്ച്ചിരിക്കുന്നു."
+
+#. TRANS: Client error displayed requesting a status with an invalid ID.
+#: actions/apistatusesshow.php:162
+msgid "No status with that ID found."
+msgstr "ആ ഐ.ഡി.യിൽ ഒരു സ്ഥിതിവിവരം കണ്ടെത്താനായില്ല."
+
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
+msgid "Can only delete using the Atom format."
+msgstr "ആറ്റം ഫോർമാറ്റ് ഉപയോഗിച്ചു മാത്രമേ മായ്ക്കാൻ കഴിയൂ."
+
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
+#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
+msgstr "ഈ അറിയിപ്പ് മായ്ക്കാൻ കഴിയില്ല."
+
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
+#, php-format
+msgid "Deleted notice %d"
+msgstr "%d എന്ന അറിയിപ്പ് മായ്ക്കുക"
+
+#. TRANS: Client error displayed when the parameter "status" is missing.
+#: actions/apistatusesupdate.php:221
+msgid "Client must provide a 'status' parameter with a value."
+msgstr "ക്ലയന്റ് 'status' ചരത്തിന് ഒരു വില നൽകിയിരിക്കണം."
+
+#. TRANS: Client error displayed when the parameter "status" is missing.
+#. TRANS: %d is the maximum number of character for a notice.
+#: actions/apistatusesupdate.php:244 actions/newnotice.php:161
+#: lib/mailhandler.php:60
+#, php-format
+msgid "That's too long. Maximum notice size is %d character."
+msgid_plural "That's too long. Maximum notice size is %d characters."
+msgstr[0] "അത് വളരെ വലുതാണ്. അറിയിപ്പിന്റെ പരമാവധി വലിപ്പം %d അക്ഷരമാണ്."
+msgstr[1] "അത് വളരെ വലുതാണ്. അറിയിപ്പിന്റെ പരമാവധി വലിപ്പം %d അക്ഷരങ്ങളാണ്."
+
+#. TRANS: Client error displayed when replying to a non-existing notice.
+#: actions/apistatusesupdate.php:284
+msgid "Parent notice not found."
+msgstr "മാതൃ അറിയിപ്പ് കണ്ടെത്താനായില്ല."
+
+#. TRANS: Client error displayed exceeding the maximum notice length.
+#. TRANS: %d is the maximum lenth for a notice.
+#: actions/apistatusesupdate.php:308 actions/newnotice.php:184
+#, php-format
+msgid "Maximum notice size is %d character, including attachment URL."
+msgid_plural "Maximum notice size is %d characters, including attachment URL."
+msgstr[0] ""
+"കൂടെ ചേർത്തിരിക്കുന്ന യൂ.ആർ.എൽ. അടക്കം അറിയിപ്പിന്റെ പരമാവധി വലിപ്പം %d അക്ഷരമാണ്."
+msgstr[1] ""
+"കൂടെ ചേർത്തിരിക്കുന്ന യൂ.ആർ.എൽ. അടക്കം അറിയിപ്പിന്റെ പരമാവധി വലിപ്പം %d അക്ഷരങ്ങളാണ്."
+
+#. TRANS: Client error displayed when requesting profiles of followers in an unsupported format.
+#. TRANS: Client error displayed when requesting IDs of followers in an unsupported format.
+#: actions/apisubscriptions.php:228 actions/apisubscriptions.php:258
+msgid "Unsupported format."
+msgstr "പിന്തുണയ്ക്കാത്തയിനം തരം."
+
+#. TRANS: Title for timeline of most recent favourite notices by a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
+#: actions/apitimelinefavorites.php:108
+#, php-format
+msgid "%1$s / Favorites from %2$s"
+msgstr "%1$s / %2$s എന്ന ഉപയോക്താവിന് പ്രിയങ്കരമായവ"
+
+#. TRANS: Subtitle for timeline of most recent favourite notices by a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name,
+#. TRANS: %3$s is a user nickname.
+#: actions/apitimelinefavorites.php:120
+#, php-format
+msgid "%1$s updates favorited by %2$s / %3$s."
+msgstr ""
+
+#. TRANS: Server error displayed when generating an Atom feed fails.
+#. TRANS: %s is the error.
+#: actions/apitimelinegroup.php:134
+#, php-format
+msgid "Could not generate feed for group - %s"
+msgstr "സംഘത്തിനുള്ള ഫീഡ് സൃഷ്ടിക്കാൻ കഴിഞ്ഞില്ല - %s"
+
+#. TRANS: Title for timeline of most recent mentions of a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
+#: actions/apitimelinementions.php:115
+#, php-format
+msgid "%1$s / Updates mentioning %2$s"
+msgstr ""
+
+#. TRANS: Subtitle for timeline of most recent mentions of a user.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname,
+#. TRANS: %3$s is a user's full name.
+#: actions/apitimelinementions.php:131
+#, php-format
+msgid "%1$s updates that reply to updates from %2$s / %3$s."
+msgstr ""
+
+#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
+#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
+#, php-format
+msgid "%s public timeline"
+msgstr "%s സാർവ്വജനിക സമയരേഖ"
+
+#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
+#: actions/apitimelinepublic.php:199
+#, php-format
+msgid "%s updates from everyone!"
+msgstr "%s പദ്ധതിയിൽ എല്ലാവരും അയച്ചിട്ടുള്ള പുതിയവാർത്തകൾ!"
+
+#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'.
+#: actions/apitimelineretweetedbyme.php:71
+msgid "Unimplemented."
+msgstr "പ്രാവർത്തികമാക്കിയിട്ടില്ല."
+
+#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname.
+#: actions/apitimelineretweetedtome.php:108
+#, php-format
+msgid "Repeated to %s"
+msgstr "%s എന്ന ഉപയോക്താവിനായി ആവർത്തിച്ചത്"
+
+#. TRANS: Title of list of repeated notices of the logged in user.
+#. TRANS: %s is the nickname of the logged in user.
+#: actions/apitimelineretweetsofme.php:112
+#, php-format
+msgid "Repeats of %s"
+msgstr "%s എന്ന ഉപയോക്താവിന്റെ ആവർത്തനങ്ങൾ"
+
+#. TRANS: Title for timeline with lastest notices with a given tag.
+#. TRANS: %s is the tag.
+#: actions/apitimelinetag.php:101 actions/tag.php:67
+#, php-format
+msgid "Notices tagged with %s"
+msgstr "%s എന്നു റ്റാഗ് ചെയ്തിട്ടുള്ള അറിയിപ്പുകൾ"
+
+#. TRANS: Subtitle for timeline with lastest notices with a given tag.
+#. TRANS: %1$s is the tag, $2$s is the StatusNet sitename.
+#: actions/apitimelinetag.php:105 actions/tagrss.php:65
+#, php-format
+msgid "Updates tagged with %1$s on %2$s!"
+msgstr ""
+
+#. TRANS: Client error displayed trying to add a notice to another user's timeline.
+#: actions/apitimelineuser.php:297
+msgid "Only the user can add to their own timeline."
+msgstr "ഉപയോക്താവിനു മാത്രമേ അദ്ദേഹത്തിന്റെ സ്വന്തം സമയരേഖ ചേർക്കാൻ കഴിയൂ."
+
+#. TRANS: Client error displayed when using another format than AtomPub.
+#: actions/apitimelineuser.php:304
+msgid "Only accept AtomPub for Atom feeds."
+msgstr ""
+
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
+msgid "Atom post must not be empty."
+msgstr ""
+
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
+msgid "Atom post must be well-formed XML."
+msgstr ""
+
+#. TRANS: Client error displayed when not using an Atom entry.
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
+msgid "Atom post must be an Atom entry."
+msgstr ""
+
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
+msgid "Can only handle POST activities."
+msgstr ""
+
+#. TRANS: Client error displayed when using an unsupported activity object type.
+#. TRANS: %s is the unsupported activity object type.
+#: actions/apitimelineuser.php:345
+#, php-format
+msgid "Cannot handle activity object type \"%s\"."
+msgstr ""
+
+#. TRANS: Client error displayed when posting a notice without content through the API.
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
+msgid "No content for notice %d."
+msgstr "%d എന്ന അറിയിപ്പിനു ഉള്ളടക്കമില്ല"
+
+#. TRANS: Client error displayed when using another format than AtomPub.
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
+#, php-format
+msgid "Notice with URI \"%s\" already exists."
+msgstr "\"%s\" എന്ന യൂ.ആർ.ഐ.യിൽ അറിയിപ്പ് മുമ്പേ നിലവിലുണ്ട്."
+
+#. TRANS: Server error for unfinished API method showTrends.
+#: actions/apitrends.php:85
+msgid "API method under construction."
+msgstr "എ.പി.ഐ. മെഥേഡ് നിർമ്മാണത്തിലാണ്."
+
+#. TRANS: Client error displayed when requesting user information for a non-existing user.
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
+msgid "User not found."
+msgstr "ഉപയോക്താവിനെ കണ്ടത്താനായില്ല."
+
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
+msgstr ""
+
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "%2$s പദ്ധതിയിലെ അറിയിപ്പുകൾ %1$s എന്ന ഉപയോക്താവ് പ്രിയങ്കരമാണെന്ന് കുറിച്ചിട്ടുണ്ട്"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+#, fuzzy
+msgid "Cannot add someone else's subscription."
+msgstr "മറ്റൊരാളുടെ അംഗത്വം മായ്ക്കാനാവില്ല."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "പ്രിയങ്കരമാക്കാനുള്ള പ്രക്രിയകൾ മാത്രം കൈകാര്യം ചെയ്യാനേ കഴിയൂ."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "അറിയിപ്പുകൾ മാത്രമേ പ്രിയങ്കരമാണെന്ന് കുറിക്കാനാവൂ."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "അജ്ഞാതമായ കുറിപ്പ്."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "മുമ്പേ തന്നെ പ്രിയങ്കരമാണ്."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
+#: actions/atompubmembershipfeed.php:144
+#, php-format
+msgid "%s group memberships"
+msgstr "%s സംഘ അംഗത്വങ്ങൾ"
+
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "%2$s സൈറ്റിലെ ഒരു ഭാഗമാണ് %1$s എന്ന സംഘം"
+
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "മറ്റൊരാളുടെ അംഗത്വം കൂട്ടിച്ചേർക്കാനാവില്ല."
+
+#. TRANS: Client error displayed when not using the POST verb.
+#. TRANS: Do not translate POST.
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr "പങ്ക് ചേരൽ പ്രക്രിയകൾ മാത്രം കൈകാര്യം ചെയ്യാനേ കഴിയൂ."
+
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
+msgid "Unknown group."
+msgstr "അജ്ഞാത സംഘം."
+
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
+msgid "Already a member."
+msgstr "ഇപ്പോൾ തന്നെ അംഗമാണ്."
+
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
+msgid "Blocked by admin."
+msgstr "കാര്യനിർവ്വാഹകനാൽ തടയപ്പെട്ടിരിക്കുന്നു."
+
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
+msgid "No such favorite."
+msgstr "അത്തരത്തിൽ പ്രിയങ്കരമാക്കപ്പെട്ട ഒന്നും ഇല്ല."
+
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
+#: actions/atompubshowfavorite.php:151
+msgid "Cannot delete someone else's favorite."
+msgstr "മറ്റൊരാൾക്ക് പ്രിയങ്കരമാണ് എന്നത് മായ്ക്കാനാവില്ല."
+
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
+msgstr "അങ്ങനെ ഒരു സംഘം ഇല്ല."
+
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "അംഗം അല്ല"
+
+#. TRANS: Client exception thrown when deleting someone else's membership.
+#: actions/atompubshowmembership.php:150
+msgid "Cannot delete someone else's membership."
+msgstr "മറ്റൊരാളുടെ അംഗത്വം മായ്ക്കാനാവില്ല."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
+#, fuzzy, php-format
+msgid "No such profile id: %d."
+msgstr "അത്തരത്തിൽ ഒരു അറിയിപ്പ് ഇല്ല."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr "മറ്റൊരാളുടെ വരിക്കാരനാകൽ നീക്കം ചെയ്യാനാകില്ല."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "എല്ലാ വരിക്കാരും"
+
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
+msgid "Can only handle Follow activities."
+msgstr "പിന്തുടരൽ പ്രക്രിയകൾ മാത്രം കൈകാര്യം ചെയ്യാനേ കഴിയൂ."
+
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
+msgid "Can only follow people."
+msgstr "ഉപയോക്താക്കളെ പിന്തുടരാൻ മാത്രമേ കഴിയൂ."
+
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, fuzzy, php-format
+msgid "Unknown profile %s."
+msgstr "അജ്ഞാതമായ കുറിപ്പ്."
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "മുമ്പേ തന്നെ %s എന്ന ഉപയോക്താവിന്റെ വരിക്കാരനാണ്."
+
+#. TRANS: Client error displayed trying to get a non-existing attachment.
+#: actions/attachment.php:73
+msgid "No such attachment."
+msgstr ""
+
+#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
+#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
+#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
+#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
+#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
+#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
+#: actions/grouplogo.php:86 actions/groupmembers.php:76
+#: actions/grouprss.php:89 actions/showgroup.php:116
+msgid "No nickname."
+msgstr "അങ്ങിനെ വിളിപ്പേര് ഇല്ല."
+
+#. TRANS: Client error displayed trying to get an avatar without providing an avatar size.
+#: actions/avatarbynickname.php:66
+msgid "No size."
+msgstr "വലിപ്പം നൽകിയിട്ടില്ല."
+
+#. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size.
+#: actions/avatarbynickname.php:72
+msgid "Invalid size."
+msgstr "അസാധുവായ വലിപ്പം."
+
+#. TRANS: Title for avatar upload page.
+#. TRANS: Label for group avatar (dt). Text hidden by default.
+#. TRANS: Link description in user account settings menu.
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
+#: lib/accountsettingsaction.php:113
+msgid "Avatar"
+msgstr "അവതാരം"
+
+#. TRANS: Instruction for avatar upload page.
+#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
+#: actions/avatarsettings.php:78
+#, php-format
+msgid "You can upload your personal avatar. The maximum file size is %s."
+msgstr ""
+
+#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
+#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
+msgid "User without matching profile."
+msgstr ""
+
+#. TRANS: Avatar upload page form legend.
+#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
+#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
+#: actions/grouplogo.php:261
+msgid "Avatar settings"
+msgstr "അവതാരത്തിന്റെ സജ്ജീകരണം"
+
+#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
+#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
+msgid "Original"
+msgstr "യഥാർത്ഥം"
+
+#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
+#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
+msgid "Preview"
+msgstr "എങ്ങനെയുണ്ടെന്നു കാണുക"
+
+#. TRANS: Button on avatar upload page to delete current avatar.
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
+msgctxt "BUTTON"
+msgid "Delete"
+msgstr "മായ്ക്കുക"
+
+#. TRANS: Button on avatar upload page to upload an avatar.
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
+msgctxt "BUTTON"
+msgid "Upload"
+msgstr "അപ്ലോഡ്"
+
+#. TRANS: Button on avatar upload crop form to confirm a selected crop as avatar.
+#: actions/avatarsettings.php:243
+msgctxt "BUTTON"
+msgid "Crop"
+msgstr "വെട്ടിച്ചെറുതാക്കുക"
+
+#. TRANS: Validation error on avatar upload form when no file was uploaded.
+#: actions/avatarsettings.php:318
+msgid "No file uploaded."
+msgstr "പ്രമാണമൊന്നും അപ്ലോഡ് ചെയ്തിട്ടില്ല."
+
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
+msgstr "ലോഗോ ആക്കാൻ ചിത്രത്തിന്റെ ഒരു സമചതുരത്തിലുള്ള ഭാഗം തിരഞ്ഞെടുക്കുക."
+
+#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
+msgid "Lost our file data."
+msgstr ""
+
+#. TRANS: Success message for having updated a user avatar.
+#: actions/avatarsettings.php:384
+msgid "Avatar updated."
+msgstr "അവതാരം പുതുക്കി."
+
+#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
+#: actions/avatarsettings.php:388
+msgid "Failed updating avatar."
+msgstr "അവതാരം അപ്ലോഡ് ചെയ്യുന്നത് പരാജയപ്പെട്ടു."
+
+#. TRANS: Success message for deleting a user avatar.
+#: actions/avatarsettings.php:412
+msgid "Avatar deleted."
+msgstr ""
+
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "അംഗത്വത്തിന്റെ ബാക്ക്അപ് എടുക്കുക"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr "ലോഗിൻ ചെയ്തിട്ടുള്ള ഉപയോക്താക്കൾക്കു മാത്രമേ അവരുടെ അംഗത്വത്തിന്റെ ബാക്ക്അപ് എടുക്കാനാവു."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "താങ്കൾക്ക് താങ്കളുടെ അംഗത്വത്തിന്റെ ബാക്ക്അപ് എടുക്കാനായേക്കില്ല."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "ബാക്ക്അപ്"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr "താങ്കളുടെ അംഗത്വത്തിന്റെ ബാക്ക്അപ് എടുക്കുക."
+
+#. TRANS: Client error displayed when blocking a user that has already been blocked.
+#: actions/block.php:68
+msgid "You already blocked that user."
+msgstr "താങ്കൾ മുമ്പേ തന്നെ ആ ഉപയോക്താവിനെ തടഞ്ഞിരിക്കുകയാണ്."
+
+#. TRANS: Title for block user page.
+#. TRANS: Legend for block user form.
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
+msgid "Block user"
+msgstr "ഉപയോക്താവിനെ തടയുക"
+
+#. TRANS: Explanation of consequences when blocking a user on the block user page.
+#: actions/block.php:139
+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 ""
+
+#. TRANS: Button label on the user block form.
+#. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
+#. TRANS: Button label on the delete notice form.
+#. TRANS: Button label on the delete user form.
+#. TRANS: Button label on the form to block a user from a group.
+#: actions/block.php:154 actions/deleteapplication.php:157
+#: actions/deletegroup.php:220 actions/deletenotice.php:155
+#: actions/deleteuser.php:154 actions/groupblock.php:187
+msgctxt "BUTTON"
+msgid "No"
+msgstr "അല്ല"
+
+#. TRANS: Submit button title for 'No' when blocking a user.
+#: actions/block.php:158
+msgid "Do not block this user."
+msgstr "ഈ ഉപയോക്താവിനെ തടയരുത്."
+
+#. TRANS: Button label on the user block form.
+#. TRANS: Button label on the delete application form.
+#. TRANS: Button label on the delete group form.
+#. TRANS: Button label on the delete notice form.
+#. TRANS: Button label on the delete user form.
+#. TRANS: Button label on the form to block a user from a group.
+#: actions/block.php:161 actions/deleteapplication.php:164
+#: actions/deletegroup.php:227 actions/deletenotice.php:162
+#: actions/deleteuser.php:161 actions/groupblock.php:194
+msgctxt "BUTTON"
+msgid "Yes"
+msgstr "അതെ"
+
+#. TRANS: Submit button title for 'Yes' when blocking a user.
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "ഈ ഉപയോക്താവിനെ തടയുക."
+
+#. TRANS: Server error displayed when blocking a user fails.
+#: actions/block.php:189
+msgid "Failed to save block information."
+msgstr "തടയലിന്റെ വിവരങ്ങൾ സേവ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു."
+
+#. TRANS: Title for first page with list of users blocked from a group.
+#. TRANS: %s is a group nickname.
+#: actions/blockedfromgroup.php:101
+#, php-format
+msgid "%s blocked profiles"
+msgstr ""
+
+#. TRANS: Title for any but the first page with list of users blocked from a group.
+#. TRANS: %1$s is a group nickname, %2$d is a page number.
+#: actions/blockedfromgroup.php:106
+#, php-format
+msgid "%1$s blocked profiles, page %2$d"
+msgstr ""
+
+#. TRANS: Instructions for list of users blocked from a group.
+#: actions/blockedfromgroup.php:122
+msgid "A list of the users blocked from joining this group."
+msgstr "ഈ സംഘത്തിൽ ചേരുന്നതിൽ നിന്നും തടയപ്പെട്ടിട്ടുള്ള ഉപയോക്താക്കളുടെ പട്ടിക."
+
+#. TRANS: Form legend for unblocking a user from a group.
+#: actions/blockedfromgroup.php:291
+msgid "Unblock user from group"
+msgstr "സംഘത്തിൽ നിന്നും ഉപയോക്താവിനുള്ള തടയൽ നീക്കുക"
+
+#. TRANS: Button text for unblocking a user from a group.
+#: actions/blockedfromgroup.php:323
+msgctxt "BUTTON"
+msgid "Unblock"
+msgstr "തടയൽ നീക്കുക"
+
+#. TRANS: Tooltip for button for unblocking a user from a group.
+#. TRANS: Description of the form to unblock a user.
+#: actions/blockedfromgroup.php:327 lib/unblockform.php:78
+msgid "Unblock this user"
+msgstr "ഈ ഉപയോക്താവിന്റെ തടയൽ നീക്കുക"
+
+#. TRANS: Title for mini-posting window loaded from bookmarklet.
+#. TRANS: %s is the StatusNet site name.
+#: actions/bookmarklet.php:51
+#, php-format
+msgid "Post to %s"
+msgstr ""
+
+#. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action.
+#: actions/confirmaddress.php:74
+msgid "No confirmation code."
+msgstr "സ്ഥിരീകരണ കോഡ് ഇല്ല."
+
+#. TRANS: Client error displayed when providing a non-existing confirmation code in the contact address confirmation action.
+#: actions/confirmaddress.php:80
+msgid "Confirmation code not found."
+msgstr "സ്ഥിരീകരണ കോഡ് കണ്ടെത്താനായില്ല."
+
+#. TRANS: Client error displayed when not providing a confirmation code for another user in the contact address confirmation action.
+#: actions/confirmaddress.php:86
+msgid "That confirmation code is not for you!"
+msgstr "ആ സ്ഥിരീകരണ കോഡ് താങ്കൾക്കുള്ളതല്ല!"
+
+#. TRANS: Server error for a unknow address type %s, which can be 'email', 'jabber', or 'sms'.
+#: actions/confirmaddress.php:92
+#, php-format
+msgid "Unrecognized address type %s."
+msgstr "തിരിച്ചറിയാവാത്ത തരം വിലാസം %s."
+
+#. TRANS: Client error for an already confirmed email/jabber/sms address.
+#: actions/confirmaddress.php:97
+msgid "That address has already been confirmed."
+msgstr "ആ വിലാസം മുമ്പേ തന്നെ സ്ഥിരീകരിക്കപ്പെട്ടതാണ്."
+
+#. TRANS: Server error displayed when an address confirmation code deletion from the
+#. TRANS: database fails in the contact address confirmation action.
+#: actions/confirmaddress.php:132
+msgid "Could not delete address confirmation."
+msgstr "ഇമെയിൽ സ്ഥിരീകരണം നീക്കം ചെയ്യാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Title for the contact address confirmation action.
+#: actions/confirmaddress.php:150
+msgid "Confirm address"
+msgstr "വിലാസം സ്ഥിരീകരിക്കുക"
+
+#. TRANS: Success message for the contact address confirmation action.
+#. TRANS: %s can be 'email', 'jabber', or 'sms'.
+#: actions/confirmaddress.php:166
+#, php-format
+msgid "The address \"%s\" has been confirmed for your account."
+msgstr "താങ്കളുടെ അംഗത്വത്തിന് \"%s\" എന്ന വിലാസം സ്ഥിരീകരിച്ചിരിക്കുന്നു."
+
+#. TRANS: Title for page with a conversion (multiple notices in context).
+#: actions/conversation.php:96
+msgid "Conversation"
+msgstr "സംഭാഷണം"
+
+#. TRANS: Header on conversation page. Hidden by default (h2).
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
+msgid "Notices"
+msgstr "അറിയിപ്പുകൾ"
+
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr "ലോഗിൻ ചെയ്തിട്ടുള്ള ഉപയോക്താക്കൾക്കു മാത്രമേ അവരുടെ അംഗത്വം മായ്ക്കാനാകൂ."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "താങ്കളുടെ അംഗത്വം താങ്കൾക്ക് മായ്ക്കാനാകില്ല."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "എനിക്കുറപ്പാണ്."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "പെട്ടിയിൽ \"%s\" എന്നു തന്നെ താങ്കൾ എഴുതി നൽകണം."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "അംഗത്വം മായ്ച്ചിരിക്കുന്നു."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "അംഗത്വം മായ്ക്കുക"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"ഇത് താങ്കളുടെ അംഗത്വ വിവരങ്ങൾ ഈ സെർവറിൽ നിന്ന് സ്ഥിരമായി മായ്ക്കുന്നതാണ്."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "സ്ഥിരീകരിക്കുക"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "താങ്കളുടെ അംഗത്വം മായ്ക്കണമെന്ന് സ്ഥിരികരിക്കാൻ \"%s\" നൽകുക."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "താങ്കളുടെ അംഗത്വം എന്നെന്നേക്കുമായി മായ്ച്ചുകളയുക"
+
+#. TRANS: Client error displayed trying to delete an application while not logged in.
+#: actions/deleteapplication.php:62
+msgid "You must be logged in to delete an application."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete an application that does not exist.
+#: actions/deleteapplication.php:71
+msgid "Application not found."
+msgstr ""
+
+#. TRANS: Client error displayed trying to delete an application the current user does not own.
+#. TRANS: Client error displayed trying to edit an application while not being its owner.
+#: actions/deleteapplication.php:79 actions/editapplication.php:78
+#: actions/showapplication.php:90
+msgid "You are not the owner of this application."
+msgstr ""
+
+#. TRANS: Client error text when there is a problem with the session token.
+#: actions/deleteapplication.php:102 actions/editapplication.php:131
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
+msgid "There was a problem with your session token."
+msgstr "താങ്കളുടെ സെഷൻ ചീട്ടിൽ ഒരു പ്രശ്നമുണ്ടായിരുന്നു."
+
+#. TRANS: Title for delete application page.
+#. TRANS: Fieldset legend on delete application page.
+#: actions/deleteapplication.php:124 actions/deleteapplication.php:149
+msgid "Delete application"
+msgstr ""
+
+#. TRANS: Confirmation text on delete application page.
+#: actions/deleteapplication.php:152
+msgid ""
+"Are you sure you want to delete this application? This will clear all data "
+"about the application from the database, including all existing user "
+"connections."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting an application.
+#: actions/deleteapplication.php:161
+#, fuzzy
+msgid "Do not delete this application."
+msgstr "ഈ അറിയിപ്പ് മായ്ക്കരുത്"
+
+#. TRANS: Submit button title for 'Yes' when deleting an application.
+#: actions/deleteapplication.php:167
+#, fuzzy
+msgid "Delete this application."
+msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക"
+
+#. TRANS: Client error when trying to delete group while not logged in.
+#: actions/deletegroup.php:64
+msgid "You must be logged in to delete a group."
+msgstr ""
+
+#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
+msgid "No nickname or ID."
+msgstr "വിളിപ്പേരോ ഐ.ഡി.യോ ഇല്ല."
+
+#. TRANS: Client error when trying to delete a group without having the rights to delete it.
+#: actions/deletegroup.php:107
+msgid "You are not allowed to delete this group."
+msgstr ""
+
+#. TRANS: Server error displayed if a group could not be deleted.
+#. TRANS: %s is the name of the group that could not be deleted.
+#: actions/deletegroup.php:150
+#, php-format
+msgid "Could not delete group %s."
+msgstr ""
+
+#. TRANS: Message given after deleting a group.
+#. TRANS: %s is the deleted group's name.
+#: actions/deletegroup.php:159
+#, php-format
+msgid "Deleted group %s"
+msgstr "%s സംഘം മായ്ച്ചിരിക്കുന്നു"
+
+#. TRANS: Title of delete group page.
+#. TRANS: Form legend for deleting a group.
+#: actions/deletegroup.php:176 actions/deletegroup.php:202
+msgid "Delete group"
+msgstr "സംഘം മായ്ക്കുക"
+
+#. TRANS: Warning in form for deleleting a group.
+#: actions/deletegroup.php:206
+msgid ""
+"Are you sure you want to delete this group? This will clear all data about "
+"the group from the database, without a backup. Public posts to this group "
+"will still appear in individual timelines."
+msgstr ""
+
+#. TRANS: Submit button title for 'No' when deleting a group.
+#: actions/deletegroup.php:224
+msgid "Do not delete this group."
+msgstr "ഈ സംഘത്തെ മായ്ക്കരുത്."
+
+#. TRANS: Submit button title for 'Yes' when deleting a group.
+#: actions/deletegroup.php:231
+msgid "Delete this group."
+msgstr "ഈ സംഘത്തെ മായ്ക്കുക."
+
+#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
+#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
+#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
+#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
+#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
+#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
+#: actions/tagother.php:33 actions/unsubscribe.php:52
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
+#: lib/settingsaction.php:72
+msgid "Not logged in."
+msgstr "ലോഗിൻ ചെയ്തിട്ടില്ല"
+
+#. TRANS: Instructions for deleting a notice.
+#: actions/deletenotice.php:110
+msgid ""
+"You are about to permanently delete a notice. Once this is done, it cannot "
+"be undone."
+msgstr ""
+"താങ്കൾ ഒരു അറിയിപ്പ് സ്ഥിരമായി മായ്ക്കാൻ പോകുന്നു. ഒരിക്കൽ ഇത് പൂർത്തിയായാൽ, "
+"പുനഃസ്ഥാപിക്കാനാവില്ല."
+
+#. TRANS: Page title when deleting a notice.
+#. TRANS: Fieldset legend for the delete notice form.
+#: actions/deletenotice.php:117 actions/deletenotice.php:148
+msgid "Delete notice"
+msgstr "അറിയിപ്പ് മായ്ക്കുക"
+
+#. TRANS: Message for the delete notice form.
+#: actions/deletenotice.php:152
+msgid "Are you sure you want to delete this notice?"
+msgstr "ഈ അറിയിപ്പ് ഒഴിവാക്കണമെന്നു താങ്കൾക്ക് ഉറപ്പാണോ?"
+
+#. TRANS: Submit button title for 'No' when deleting a notice.
+#: actions/deletenotice.php:159
+msgid "Do not delete this notice."
+msgstr "ഈ അറിയിപ്പ് മായ്ക്കരുത്."
+
+#. TRANS: Submit button title for 'Yes' when deleting a notice.
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
+msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക."
+
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
+msgid "You cannot delete users."
+msgstr "താങ്കൾക്ക് ഉപയോക്താക്കളെ നീക്കം ചെയ്യാൻ കഴിയില്ല."
+
+#. TRANS: Client error displayed when trying to delete a non-local user.
+#: actions/deleteuser.php:74
+msgid "You can only delete local users."
+msgstr "താങ്കൾക്ക് പ്രാദേശിക ഉപയോക്താക്കളെ മാത്രമേ നീക്കം ചെയ്യാൻ കഴിയൂ."
+
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
+msgid "Delete user"
+msgstr "ഉപയോക്താവിനെ നീക്കം ചെയ്യുക"
+
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "ഉപയോക്താവിനെ നീക്കം ചെയ്യുക"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
+msgid ""
+"Are you sure you want to delete this user? This will clear all data about "
+"the user from the database, without a backup."
+msgstr ""
+"ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യണമെന്ന് താങ്കൾക്ക് തീർച്ചയാണോ? ഇത് ഡേറ്റാബേസിൽ നിന്നും ബാക്ക്അപ് "
+"ഇല്ലാതെ ഉപയോക്താവിനെ കുറിച്ചുള്ള എല്ലാ വിവരങ്ങളും നീക്കം ചെയ്യും."
+
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യരുത്."
+
+#. TRANS: Submit button title for 'Yes' when deleting a user.
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യുക."
+
+#. TRANS: Message used as title for design settings for the site.
+#. TRANS: Link description in user account settings menu.
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
+msgid "Design"
+msgstr "രൂപകല്പന"
+
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
+msgid "Design settings for this StatusNet site"
+msgstr "ഈ സ്റ്റാറ്റസ്നെറ്റ് സൈറ്റിന്റെ രൂപകല്പനാ സജ്ജീകരണങ്ങൾ"
+
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
+msgid "Invalid logo URL."
+msgstr "ലോഗോ യൂ.ആർ.എൽ. അസാധുവാണ്."
+
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
+msgid "Invalid SSL logo URL."
+msgstr "അസാധുവായ എസ്.എസ്.എൽ. ലോഗോ യൂ.ആർ.എൽ."
+
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
+#, php-format
+msgid "Theme not available: %s."
+msgstr "ദൃശ്യരൂപം ലഭ്യമല്ല: %s."
+
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
+msgid "Change logo"
+msgstr "ലോഗോ മാറ്റുക"
+
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
+msgid "Site logo"
+msgstr "സൈറ്റിന്റെ ലോഗോ"
+
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
+msgid "SSL logo"
+msgstr "എസ്.എസ്.എൽ. ലോഗോ"
+
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
+msgid "Change theme"
+msgstr "ദൃശ്യരൂപം മാറ്റുക"
+
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
+msgid "Site theme"
+msgstr "സൈറ്റിന്റെ ദൃശ്യരൂപം"
+
+#. TRANS: Title for field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:487
+msgid "Theme for the site."
+msgstr "ഈ സൈറ്റിന്റെ ദൃശ്യരൂപം."
+
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
+msgid "Custom theme"
+msgstr "ഐച്ഛിക ദൃശ്യരൂപം"
+
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
+msgid "You can upload a custom StatusNet theme as a .ZIP archive."
+msgstr ""
+"താങ്കളുടെ ഇച്ഛാനുസരണം നിർമ്മിച്ച സ്റ്റാറ്റസ്നെറ്റ് ദൃശ്യരൂപം .സിപ് ആർക്കൈവ് ആയി താങ്കൾക്ക് അപ്ലോഡ് "
+"ചെയ്യാവുന്നതാണ്."
+
+#. TRANS: Fieldset legend for theme background image.
+#. TRANS: Fieldset legend on profile design page.
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
+msgid "Change background image"
+msgstr "പശ്ചാത്തലചിത്രം മാറ്റുക"
+
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
+#. TRANS: Label on profile design page for setting a profile page background colour.
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
+#: lib/designsettings.php:183
+msgid "Background"
+msgstr "പശ്ചാത്തലം"
+
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
+#, php-format
+msgid ""
+"You can upload a background image for the site. The maximum file size is %1"
+"$s."
+msgstr ""
+"താങ്കൾക്ക് ഈ സൈറ്റിനുള്ള പശ്ചാത്തല ചിത്രം അപ്ലോഡ് ചെയ്യാവുന്നതാണ്. പ്രമാണത്തിന്റെ പരമാവധി "
+"വലിപ്പം %1$s ആയിരിക്കണം."
+
+#. TRANS: Used as radio button label to add a background image.
+#: actions/designadminpanel.php:558
+msgid "On"
+msgstr "സജ്ജം"
+
+#. TRANS: Used as radio button label to not add a background image.
+#: actions/designadminpanel.php:575
+msgid "Off"
+msgstr "രഹിതം"
+
+#. TRANS: Form guide for turning background image on or off on theme designer page.
+#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
+#. TRANS: use of the uploaded profile image.
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
+msgid "Turn background image on or off."
+msgstr "പശ്ചാത്തലചിത്രം പ്രവർത്തന സജ്ജമാക്കുക അല്ലെങ്കിൽ രഹിതമാക്കുക."
+
+#. TRANS: Checkbox label to title background image on theme designer page.
+#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
+msgid "Tile background image"
+msgstr "പശ്ചാത്തലചിത്രം ആവർത്തിച്ചു ചേർക്കുക"
+
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
+msgstr "നിറങ്ങൾ മാറ്റുക"
+
+#. TRANS: Field label for content color selector.
+#. TRANS: Label on profile design page for setting a profile page content colour.
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
+msgid "Content"
+msgstr "ഉള്ളടക്കം"
+
+#. TRANS: Field label for sidebar color selector.
+#. TRANS: Label on profile design page for setting a profile page sidebar colour.
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
+msgid "Sidebar"
+msgstr "പാർശ്വഭിത്തി"
+
+#. TRANS: Field label for text color selector.
+#. TRANS: Label on profile design page for setting a profile page text colour.
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
+msgid "Text"
+msgstr "എഴുത്ത്"
+
+#. TRANS: Field label for link color selector.
+#. TRANS: Label on profile design page for setting a profile page links colour.
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
+msgid "Links"
+msgstr "കണ്ണികൾ"
+
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
+msgid "Advanced"
+msgstr "വിപുലം"
+
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
+msgid "Custom CSS"
+msgstr "സ്വന്തം സി.എസ്.എസ്."
+
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
+msgid "Use defaults"
+msgstr "സ്വതേയുള്ളവ ഉപയോഗിക്കുക"
+
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
+msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക."
+
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക."
+
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
+msgstr "രൂപകല്പന സേവ് ചെയ്യുക."
+
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
+msgid "This notice is not a favorite!"
+msgstr "ഈ അറിയിപ്പ് പ്രിയങ്കരമാണെന്ന് അടയാളപ്പെടുത്തിയിട്ടില്ല!"
+
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
+msgid "Add to favorites"
+msgstr "പ്രിയങ്കരങ്ങളിലേയ്ക്ക് ചേർക്കുക"
+
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, php-format
+msgid "No such document \"%s\"."
+msgstr "\"%s\" എന്നൊരു രേഖ ഇല്ല."
+
+#. TRANS: Title for "Edit application" form.
+#. TRANS: Form legend.
+#: actions/editapplication.php:54 lib/applicationeditform.php:129
+msgid "Edit application"
+msgstr ""
+
+#. TRANS: Client error displayed trying to edit an application while not logged in.
+#: actions/editapplication.php:66
+msgid "You must be logged in to edit an application."
+msgstr ""
+
+#. TRANS: Client error displayed trying to edit an application that does not exist.
+#: actions/editapplication.php:83 actions/showapplication.php:83
+msgid "No such application."
+msgstr ""
+
+#. TRANS: Instructions for "Edit application" form.
+#: actions/editapplication.php:167
+msgid "Use this form to edit your application."
+msgstr ""
+
+#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
+msgid "Name is required."
+msgstr "പേര് ആവശ്യമാണ്."
+
+#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
+msgid "Name is too long (maximum 255 characters)."
+msgstr "പേരിനു നീളം വളരെ കൂടുതലാണ് (പരമാവധി 255 അക്ഷരങ്ങൾ)."
+
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
+msgid "Name already in use. Try another one."
+msgstr "പേര് മുമ്പേ ഉപയോഗത്തിലുണ്ട്. മറ്റൊരെണ്ണം ശ്രമിക്കുക."
+
+#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
+msgid "Description is required."
+msgstr "വിവരണം ആവശ്യമാണ്."
+
+#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
+#: actions/editapplication.php:209
+msgid "Source URL is too long."
+msgstr "സ്രോതസ്സ് യൂ.ആർ.എൽ. വളരെ വലുതാണ്."
+
+#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
+msgid "Source URL is not valid."
+msgstr "സ്രോതസ്സ് യൂ.ആർ.എൽ. അസാധുവാണ്."
+
+#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
+msgid "Organization is required."
+msgstr "സംഘടനയേതെന്ന് ആവശ്യമാണ്."
+
+#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
+#: actions/editapplication.php:224 actions/newapplication.php:207
+msgid "Organization is too long (maximum 255 characters)."
+msgstr "സംഘടനയുടെ പേരിന്റെ നീളം വളരെക്കൂടുതലാണ് (പരമാവധി 255 അക്ഷരങ്ങൾ)."
+
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
+msgid "Organization homepage is required."
+msgstr "സംഘടനയുടെ പ്രധാനതാൾ ആവശ്യമാണ്."
+
+#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
+msgid "Callback is too long."
+msgstr ""
+
+#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
+msgid "Callback URL is not valid."
+msgstr ""
+
+#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
+#: actions/editapplication.php:284
+msgid "Could not update application."
+msgstr ""
+
+#. TRANS: Title for form to edit a group. %s is a group nickname.
+#: actions/editgroup.php:55
+#, php-format
+msgid "Edit %s group"
+msgstr "%s എന്ന സംഘത്തിൽ മാറ്റം വരുത്തുക"
+
+#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
+#. TRANS: Client error displayed trying to create a group while not logged in.
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
+msgid "You must be logged in to create a group."
+msgstr "ഒരു സംഘം സൃഷ്ടിക്കാൻ താങ്കൾ ലോഗിൻ ചെയ്തിരിക്കണം."
+
+#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
+#: actions/editgroup.php:110 actions/editgroup.php:176
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
+msgid "You must be an admin to edit the group."
+msgstr "സംഘത്തിൽ മാറ്റം വരുത്താൻ താങ്കൾ ഒരു കാര്യനിർവ്വാഹകനായിരിക്കണം."
+
+#. TRANS: Form instructions for group edit form.
+#: actions/editgroup.php:161
+msgid "Use this form to edit the group."
+msgstr "സംഘത്തിൽ മാറ്റം വരുത്താൻ ഈ ഫോം ഉപയോഗിക്കുക."
+
+#. TRANS: Group edit form validation error.
+#. TRANS: Group create form validation error.
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
+#, php-format
+msgid "Invalid alias: \"%s\""
+msgstr ""
+
+#. TRANS: Server error displayed when editing a group fails.
+#: actions/editgroup.php:274
+msgid "Could not update group."
+msgstr ""
+
+#. TRANS: Server error displayed when group aliases could not be added.
+#. TRANS: Server exception thrown when creating group aliases failed.
+#: actions/editgroup.php:281 classes/User_group.php:540
+msgid "Could not create aliases."
+msgstr ""
+
+#. TRANS: Group edit form success message.
+#: actions/editgroup.php:301
+msgid "Options saved."
+msgstr "ഐച്ഛികങ്ങൾ സേവ് ചെയ്തിരിക്കുന്നു."
+
+#. TRANS: Title for e-mail settings.
+#: actions/emailsettings.php:59
+msgid "Email settings"
+msgstr "ഇമെയിൽ സജ്ജീകരണങ്ങൾ"
+
+#. TRANS: E-mail settings page instructions.
+#. TRANS: %%site.name%% is the name of the site.
+#: actions/emailsettings.php:73
+#, php-format
+msgid "Manage how you get email from %%site.name%%."
+msgstr "%%site.name%% സൈറ്റിൽ നിന്നുള്ള ഇമെയിൽ എപ്രകാരമാണ് ലഭിക്കേണ്ടതെന്ന് ക്രമീകരിക്കുക."
+
+#. TRANS: Form legend for e-mail settings form.
+#. TRANS: Field label for e-mail address input in e-mail settings form.
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
+msgid "Email address"
+msgstr "ഇമെയിൽ വിലാസം"
+
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:109
+msgid "Current confirmed email address."
+msgstr "ഇപ്പോൾ സ്ഥിരീകരിക്കപ്പെട്ടിട്ടുള്ള ഇമെയിൽ വിലാസം."
+
+#. TRANS: Button label to remove a confirmed e-mail address.
+#. TRANS: Button label for removing a set sender e-mail address to post notices from.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
+#. TRANS: Button label to remove a confirmed SMS address.
+#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
+msgctxt "BUTTON"
+msgid "Remove"
+msgstr "നീക്കം ചെയ്യുക"
+
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
+msgid ""
+"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
+"a message with further instructions."
+msgstr ""
+"ഈ വിലാസം സ്ഥിരീകരിക്കപ്പെടാൻ അവശേഷിക്കുന്നു. കൂടുതൽ നിർദ്ദേശങ്ങൾക്ക് താങ്കളുടെ ഇൻബോക്സും "
+"(ഒപ്പം സ്പാം ബോക്സും!) പരിശോധിക്കുക."
+
+#. TRANS: Instructions for e-mail address input form. Do not translate
+#. TRANS: "example.org". It is one of the domain names reserved for
+#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
+#. TRANS: Any other domain may be owned by a legitimate person or
+#. TRANS: organization.
+#: actions/emailsettings.php:136
+msgid "Email address, like \"UserName@example.org\""
+msgstr "\"UserName@example.org\" പോലെയുള്ള ഇമെയിൽ വിലാസം"
+
+#. TRANS: Button label for adding an e-mail address in e-mail settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
+#. TRANS: Button label for adding a SMS phone number in SMS settings form.
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
+msgctxt "BUTTON"
+msgid "Add"
+msgstr "കൂട്ടിച്ചേർക്കുക"
+
+#. TRANS: Form legend for incoming e-mail settings form.
+#. TRANS: Form legend for incoming SMS settings form.
+#: actions/emailsettings.php:148 actions/smssettings.php:167
+msgid "Incoming email"
+msgstr "ഇങ്ങോട്ടുള്ള ഇമെയിൽ"
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:154
+msgid "I want to post notices by email."
+msgstr "എനിക്ക് അറിയിപ്പുകൾ ഇമെയിൽ വഴി പ്രസിദ്ധീകരിക്കണം."
+
+#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
+#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
+#: actions/emailsettings.php:176 actions/smssettings.php:174
+msgid "Send email to this address to post new notices."
+msgstr "പുതിയ അറിയിപ്പുകൾ പ്രസിദ്ധീകരിക്കാൻ ഈ വിലാസത്തിൽ ഇമെയിൽ അയയ്ക്കുക."
+
+#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
+#. TRANS: Instructions for incoming SMS e-mail address input form.
+#: actions/emailsettings.php:185 actions/smssettings.php:182
+msgid "Make a new email address for posting to; cancels the old one."
+msgstr "പ്രസിദ്ധീകരിക്കാനായി പുതിയൊരു ഇമെയിൽ വിലാസം സൃഷ്ടിക്കുക; പഴയതു റദ്ദാക്കപ്പെടും."
+
+#. TRANS: Instructions for incoming e-mail address input form.
+#: actions/emailsettings.php:189
+msgid ""
+"To send notices via email, we need to create a unique email address for you "
+"on this server:"
+msgstr ""
+"ഇമെയിൽ വഴി അറിയിപ്പുകൾ അയയ്ക്കാൻ, ഈ സെർവറിൽ താങ്കൾക്കായി ഒരു അനന്യ ഇമെയിൽ വിലാസം "
+"സൃഷ്ടിക്കേണ്ടതുണ്ട്:"
+
+#. TRANS: Button label for adding an e-mail address to send notices from.
+#. TRANS: Button label for adding an SMS e-mail address to send notices from.
+#: actions/emailsettings.php:195 actions/smssettings.php:185
+msgctxt "BUTTON"
+msgid "New"
+msgstr "പുതിയത്"
+
+#. TRANS: Form legend for e-mail preferences form.
+#: actions/emailsettings.php:204
+msgid "Email preferences"
+msgstr "ഇമെയിൽ ക്രമീകരണങ്ങൾ"
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:212
+msgid "Send me notices of new subscriptions through email."
+msgstr ""
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:218
+msgid "Send me email when someone adds my notice as a favorite."
+msgstr ""
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:225
+msgid "Send me email when someone sends me a private message."
+msgstr "ആരെങ്കിലും എനിക്കൊരു സ്വകാര്യ സന്ദേശമയച്ചാൽ എനിക്ക് ഇമെയിൽ അയയ്ക്കുക."
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:231
+msgid "Send me email when someone sends me an \"@-reply\"."
+msgstr "ആരെങ്കിലും എനിക്കൊരു \"@-reply\" അയച്ചാൽ എനിക്ക് ഇമെയിൽ അയയ്ക്കുക."
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:237
+msgid "Allow friends to nudge me and send me an email."
+msgstr ""
+
+#. TRANS: Checkbox label in e-mail preferences form.
+#: actions/emailsettings.php:243
+msgid "Publish a MicroID for my email address."
+msgstr ""
+
+#. TRANS: Confirmation message for successful e-mail preferences save.
+#: actions/emailsettings.php:361
+msgid "Email preferences saved."
+msgstr "ഇമെയിൽ ക്രമീകരണങ്ങൾ സേവ് ചെയ്തിരിക്കുന്നു."
+
+#. TRANS: Message given saving e-mail address without having provided one.
+#: actions/emailsettings.php:380
+msgid "No email address."
+msgstr "ഇമെയിൽ വിലാസം ഇല്ല."
+
+#. TRANS: Message given saving e-mail address that cannot be normalised.
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
+msgstr "സാധുവായ ഇമെയിൽ വിലാസം അല്ല."
+
+#. TRANS: Message given saving e-mail address that not valid.
+#: actions/emailsettings.php:393 actions/register.php:204
+#: actions/siteadminpanel.php:144
+msgid "Not a valid email address."
+msgstr "സാധുവായ ഇമെയിൽ വിലാസം അല്ല."
+
+#. TRANS: Message given saving e-mail address that is already set.
+#: actions/emailsettings.php:397
+msgid "That is already your email address."
+msgstr "അതാണ് താങ്കളുടെ ഇമെയിൽ വിലാസം."
+
+#. TRANS: Message given saving e-mail address that is already set for another user.
+#: actions/emailsettings.php:401
+msgid "That email address already belongs to another user."
+msgstr "ആ ഇമെയിൽ വിലാസം മറ്റൊരു ഉപയോക്താവ് മുമ്പേ ഉപയോഗിക്കുന്നു."
+
+#. TRANS: Server error thrown on database error adding e-mail confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
+#. TRANS: Server error thrown on database error adding SMS confirmation code.
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
+msgstr "സ്ഥിരീകരണ കോഡ് ഉൾപ്പെടുത്താൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Message given saving valid e-mail address that is to be confirmed.
+#: actions/emailsettings.php:425
+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 ""
+"താങ്കൾ ചേർത്തിട്ടുള്ള ഇമെയിൽ വിലാസത്തിലേയ്ക്ക് ഒരു സ്ഥിരീകരണ കോഡ് അയച്ചിട്ടുണ്ട്. കോഡിനും "
+"അതെപ്രകാരം ഉപയോഗിക്കാമെന്ന മാർഗ്ഗനിർദ്ദേശങ്ങൾക്കും താങ്കളുടെ ഇൻബോക്സ് (ഒപ്പം സ്പാം ബോക്സും) "
+"പരിശോധിക്കുക."
+
+#. TRANS: Message given canceling e-mail address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
+#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
+msgid "No pending confirmation to cancel."
+msgstr "റദ്ദാക്കാനായി സ്ഥിരീകരണങ്ങളൊന്നും അവശേഷിക്കുന്നില്ല."
+
+#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
+#: actions/emailsettings.php:450
+msgid "That is the wrong email address."
+msgstr "അത് തെറ്റായ ഇമെയിൽ വിലാസമാണ്."
+
+#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
+#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
+msgstr "ഇമെയിൽ സ്ഥിരീകരണം നീക്കം ചെയ്യാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Message given after successfully canceling e-mail address confirmation.
+#: actions/emailsettings.php:464
+msgid "Email confirmation cancelled."
+msgstr "ഇമെയിൽ സ്ഥിരീകരണം റദ്ദാക്കി."
+
+#. TRANS: Message given trying to remove an e-mail address that is not
+#. TRANS: registered for the active user.
+#: actions/emailsettings.php:483
+msgid "That is not your email address."
+msgstr "അത് താങ്കളുടെ ഇമെയിൽ വിലാസമല്ല."
+
+#. TRANS: Message given after successfully removing a registered e-mail address.
+#: actions/emailsettings.php:504
+msgid "The email address was removed."
+msgstr "ഇമെയിൽ വിലാസം നീക്കം ചെയ്തിരിക്കുന്നു."
+
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
+msgid "No incoming email address."
+msgstr "സ്വീകരിക്കാനുള്ള ഇമെയിൽ വിലാസം ഇല്ല."
+
+#. TRANS: Server error thrown on database error removing incoming e-mail address.
+#. TRANS: Server error thrown on database error adding incoming e-mail address.
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
+msgstr "ഉപയോക്തൃ രേഖകൾ പുതുക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Message given after successfully removing an incoming e-mail address.
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
+msgid "Incoming email address removed."
+msgstr "സ്വീകരിക്കാനുള്ള ഇമെയിൽ വിലാസം നീക്കം ചെയ്തിരിക്കുന്നു."
+
+#. TRANS: Message given after successfully adding an incoming e-mail address.
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
+msgid "New incoming email address added."
+msgstr "സ്വീകരിക്കാനുള്ള പുതിയ ഇമെയിൽ വിലാസം കൂട്ടിച്ചേർത്തിരിക്കുന്നു."
+
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
+msgid "This notice is already a favorite!"
+msgstr "ഈ അറിയിപ്പ് മുമ്പേ തന്നെ പ്രിയങ്കരമാണ്!"
+
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
+msgstr "പ്രിയങ്കരമാണ് എന്നത് നീക്കം ചെയ്യുക."
+
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
+#: actions/favorited.php:65 lib/popularnoticesection.php:62
+#: lib/publicgroupnav.php:93
+msgid "Popular notices"
+msgstr "ജനപ്രിയ അറിയിപ്പുകൾ"
+
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
+#, php-format
+msgid "Popular notices, page %d"
+msgstr "ജനപ്രിയ അറിയിപ്പുകൾ, താൾ %d"
+
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
+msgid "The most popular notices on the site right now."
+msgstr "ഈ സൈറ്റിൽ ഇപ്പോഴുള്ള ഏറ്റവും ജനപ്രിയ അറിയിപ്പുകൾ."
+
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
+msgid "Favorite notices appear on this page but no one has favorited one yet."
+msgstr ""
+"പ്രിയങ്കരമായ അറിയിപ്പുകൾ ഈ താളിലാണ് പ്രത്യക്ഷപ്പെടേണ്ടത് പക്ഷെ ഒന്നും ആരും ഇതുവരെ "
+"പ്രിയങ്കരമാണെന്ന് അടയാളപ്പെടുത്തിയിട്ടില്ല."
+
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
+#: 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 ""
+
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to add a "
+"notice to your favorites!"
+msgstr ""
+
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
+#, php-format
+msgid "%s's favorite notices"
+msgstr "%s എന്ന ഉപയോക്താവിനു പ്രിയങ്കരങ്ങളായ അറിയിപ്പുകൾ"
+
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
+#, php-format
+msgid "Updates favored by %1$s on %2$s!"
+msgstr ""
+
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
+#: actions/featured.php:69 lib/featureduserssection.php:87
+#: lib/publicgroupnav.php:89
+msgid "Featured users"
+msgstr "പ്രമുഖ ഉപയോക്താക്കൾ"
+
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
+#, php-format
+msgid "Featured users, page %d"
+msgstr "പ്രമുഖ ഉപയോക്താക്കൾ, താൾ %d"
+
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, php-format
+msgid "A selection of some great users on %s."
+msgstr "%s പദ്ധതിയിലെ ചില മഹദ് ഉപയോക്താക്കൾ."
+
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
+msgid "No notice ID."
+msgstr "അറിയിപ്പിന്റെ ഐ.ഡി. ഇല്ല."
+
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
+msgid "No notice."
+msgstr "അറിയിപ്പ് ഇല്ല."
+
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
+msgid "No attachments."
+msgstr ""
+
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
+msgid "No uploaded attachments."
+msgstr ""
+
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
+#: actions/finishremotesubscribe.php:69
+msgid "Not expecting this response!"
+msgstr "ഈ പ്രതികരണമല്ല പ്രതീക്ഷിച്ചത്!"
+
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
+msgid "User being listened to does not exist."
+msgstr ""
+
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
+msgid "You can use the local subscription!"
+msgstr ""
+
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
+msgid "That user has blocked you from subscribing."
+msgstr "വരിക്കാരനാകുന്നതിൽ നിന്നും ആ ഉപയോക്താവ് താങ്കളെ തടഞ്ഞിരിക്കുന്നു."
+
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
+msgid "You are not authorized."
+msgstr "താങ്കൾക്ക് അംഗീകാരം ലഭിച്ചിട്ടില്ല."
+
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
+msgid "Could not convert request token to access token."
+msgstr "അഭ്യർത്ഥനാ ചീട്ടിനെ അഭിഗമ്യതാ ചീട്ടാക്കാൻ കഴിയില്ല."
+
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
+msgid "Remote service uses unknown version of OMB protocol."
+msgstr "വിദൂര സേവനം അപരിചിതമായ ഒ.എം.ബി. പ്രോട്ടോകോൾ ഉപയോഗിക്കുന്നു."
+
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
+msgid "Error updating remote profile."
+msgstr ""
+
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
+msgid "No such file."
+msgstr ""
+
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
+msgid "Cannot read file."
+msgstr "പ്രമാണം വായിക്കാനാവില്ല."
+
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
+msgid "Invalid role."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
+#: actions/grantrole.php:66 actions/revokerole.php:66
+msgid "This role is reserved and cannot be set."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
+msgid "You cannot grant user roles on this site."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
+msgid "User already has this role."
+msgstr ""
+
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
+#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
+#: actions/groupblock.php:71 actions/groupunblock.php:71
+#: actions/makeadmin.php:71 actions/subedit.php:49
+#: lib/profileformaction.php:79
+msgid "No profile specified."
+msgstr ""
+
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
+#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
+#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
+msgid "No profile with that ID."
+msgstr ""
+
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
+#: actions/makeadmin.php:81
+msgid "No group specified."
+msgstr "സംഘമൊന്നും വ്യക്തമാക്കിയിട്ടില്ല."
+
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
+msgid "Only an admin can block group members."
+msgstr "സംഘത്തിലെ അംഗങ്ങളെ തടയൻ കാര്യനിർവ്വാഹകനു മാത്രമേ കഴിയൂ."
+
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
+msgid "User is already blocked from group."
+msgstr "ഉപയോക്താവ് സംഘത്തിൽ നിന്നും മുമ്പേ തന്നെ തടയപ്പെട്ടിരിക്കുന്നു."
+
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
+msgid "User is not a member of group."
+msgstr "ഉപയോക്താവ് സംഘത്തിലെ അംഗമല്ല."
+
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
+msgid "Block user from group"
+msgstr "സംഘത്തിൽ നിന്നും ഉപയോക്താവിനെ തടയുക"
+
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
+#, php-format
+msgid ""
+"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
+"will be removed from the group, unable to post, and unable to subscribe to "
+"the group in the future."
+msgstr ""
+"\"%2$s\" എന്ന സംഘത്തിൽ നിന്നും \"%1$s\" എന്ന ഉപയോക്താവിനെ തടയണം എന്ന് ഉറപ്പാണോ? "
+"പിന്നീടിവിടെ എഴുത്ത് ചേർക്കാനും വരിക്കാരാകാനും സാധിക്കാത്ത വിധത്തിൽ അവർ സംഘത്തിൽ നിന്ന് "
+"നീക്കം ചെയ്യപ്പെടും."
+
+#. TRANS: Submit button title for 'No' when blocking a user from a group.
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
+msgstr "ഈ സംഘത്തിൽ നിന്നും ഈ ഉപയോക്താവിനെ തടയരുത്."
+
+#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "ഈ സംഘത്തിൽ നിന്നും ഈ ഉപയോക്താവിനെ തടയുക."
+
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
+msgid "Database error blocking user from group."
+msgstr "സംഘത്തിൽ നിന്നും ഉപയോക്താവിനെ തടയുമ്പോൾ ഡേറ്റാബേസ് പിഴവുണ്ടായി."
+
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
+msgid "No ID."
+msgstr "ഐ.ഡി. ഇല്ല."
+
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
+msgid "You must be logged in to edit a group."
+msgstr "സംഘത്തിൽ മാറ്റങ്ങൾ വരുത്താൻ താങ്കൾ ലോഗിൻ ചെയ്തിരിക്കേണ്ടതാണ്."
+
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
+msgid "Group design"
+msgstr "സംഘത്തിന്റെ രൂപകല്പന"
+
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
+msgid ""
+"Customize the way your group looks with a background image and a colour "
+"palette of your choice."
+msgstr "പശ്ചാത്തല്ല ചിത്രവും വർണ്ണങ്ങളും ചേർത്ത് സംഘത്തിന്റെ ദൃശ്യരൂപം ഇച്ഛാനുസരണമാക്കുക."
+
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
+msgstr "താങ്കളുടെ രൂപകല്പനാ സജ്ജീകരണങ്ങൾ പുതുക്കാനായില്ല."
+
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
+msgid "Design preferences saved."
+msgstr "രൂപകല്പനാ ക്രമീകരണങ്ങൾ സേവ് ചെയ്തിരിക്കുന്നു."
+
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
+msgid "Group logo"
+msgstr "സംഘത്തിന്റെ ലോഗോ"
+
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
+#, php-format
+msgid ""
+"You can upload a logo image for your group. The maximum file size is %s."
+msgstr ""
+"താങ്കൾക്ക് താങ്കളുടെ സംഘത്തിനുള്ള ലോഗോ അപ്ലോഡ് ചെയ്യാവുന്നതാണ്. പ്രമാണത്തിന്റെ പരമാവധി വലിപ്പം "
+"%s ആയിരിക്കണം."
+
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
+msgid "Upload"
+msgstr "അപ്ലോഡ്"
+
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
+msgid "Crop"
+msgstr "വെട്ടിച്ചെറുതാക്കുക"
+
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
+msgid "Pick a square area of the image to be the logo."
+msgstr "ലോഗോ ആക്കാൻ ചിത്രത്തിന്റെ ഒരു സമചതുരത്തിലുള്ള ഭാഗം തിരഞ്ഞെടുക്കുക."
+
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
+msgid "Logo updated."
+msgstr "ലോഗോ പുതുക്കി."
+
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
+msgid "Failed updating logo."
+msgstr "ലോഗോ പുതുക്കൽ പരാജയപ്പെട്ടു."
+
+#. TRANS: Title of the page showing group members.
+#. TRANS: %s is the name of the group.
+#: actions/groupmembers.php:104
+#, php-format
+msgid "%s group members"
+msgstr "%s സംഘ അംഗങ്ങൾ"
+
+#. TRANS: Title of the page showing group members.
+#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
+#: actions/groupmembers.php:109
+#, php-format
+msgid "%1$s group members, page %2$d"
+msgstr "%1$s സംഘത്തിലെ അംഗങ്ങൾ, താൾ %2$d"
+
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
+msgid "A list of the users in this group."
+msgstr "ഈ സംഘത്തിലെ ഉപയോക്താക്കളുടെ പട്ടിക."
+
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
+msgid "Admin"
+msgstr "കാര്യനിർവാഹകൻ"
+
+#. TRANS: Button text for the form that will block a user from a group.
+#: actions/groupmembers.php:397
+msgctxt "BUTTON"
+msgid "Block"
+msgstr "തടയുക"
+
+#. TRANS: Submit button title.
+#: actions/groupmembers.php:401
+msgctxt "TOOLTIP"
+msgid "Block this user"
+msgstr "ഈ ഉപയോക്താവിനെ തടയുക"
+
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
+msgid "Make user an admin of the group"
+msgstr "ഉപയോക്താവിനെ സംഘത്തിന്റെ കാര്യനിർവ്വാഹകനാക്കുക"
+
+#. TRANS: Button text for the form that will make a user administrator.
+#: actions/groupmembers.php:521
+msgctxt "BUTTON"
+msgid "Make Admin"
+msgstr "കാര്യനിർവ്വാഹകനാക്കുക"
+
+#. TRANS: Submit button title.
+#: actions/groupmembers.php:525
+msgctxt "TOOLTIP"
+msgid "Make this user an admin"
+msgstr "ഈ ഉപയോക്താവിനെ കാര്യനിർവ്വാഹകനാക്കുക"
+
+#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
+#: actions/grouprss.php:141
+#, php-format
+msgid "Updates from members of %1$s on %2$s!"
+msgstr "%2$s സൈറ്റിലെ %1$s സംഘാങ്ങളുടെ പുതുക്കലുകൾ!"
+
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
+msgid "Groups"
+msgstr "സംഘങ്ങൾ"
+
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, php-format
+msgctxt "TITLE"
+msgid "Groups, page %d"
+msgstr "സംഘങ്ങൾ, താൾ %d"
+
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, 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 ""
+"സമാന താത്പര്യങ്ങളുള്ള ആൾക്കാരെ കണ്ടെത്താൻ %%%%site.name%%%% സംഘങ്ങൾ സഹായമാവുന്നു. ഒരു "
+"സംഘത്തിൽ ചേർന്നു കഴിഞ്ഞാൽ \"!groupname\" എന്ന് ഉപയോഗിച്ച് സംഘത്തിലെ എല്ലാവർക്കുമായി "
+"സന്ദേശമയയ്ക്കാൻ സാധിക്കും. താങ്കൾക്ക് താത്പര്യമുള്ള സംഘം കണ്ടെത്താനായില്ലേ? [തിരഞ്ഞു നോക്കുക](%%"
+"%%action.groupsearch%%%%) അല്ലെങ്കിൽ [താങ്കൾ തന്നെ ഒരെണ്ണം തുടങ്ങുക!](%%%%action."
+"newgroup%%%%)"
+
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
+msgid "Create a new group"
+msgstr "പുതിയൊരു സംഘം സൃഷ്ടിക്കുക"
+
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
+#, 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%% സൈറ്റിൽ അവയുടെ പേരിനേയോ, പ്രദേശത്തിനേയോ, വിവരണത്തിനേയോ അടിസ്ഥാനമാക്കി "
+"സംഘങ്ങൾ തിരയുക. ഒന്നിലധികം പദങ്ങൾ ഉണ്ടെങ്കിൽ അവയ്ക്കിടയിൽ ഇട നൽകുക; ഓരോ പദത്തിലും മൂന്നോ "
+"അതിലധികമോ അക്ഷരങ്ങൾ ഉണ്ടായിരിക്കണം."
+
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
+msgid "Group search"
+msgstr "സംഘത്തിൽ തിരയുക"
+
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
+msgid "No results."
+msgstr "ഫലങ്ങൾ ഒന്നുമില്ല"
+
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, php-format
+msgid ""
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
+msgstr ""
+"താങ്കൾ അന്വേഷിക്കുന്ന സംഘം കണ്ടെത്താനായില്ലെങ്കിൽ, താങ്കൾക്ക് തന്നെ [അതുണ്ടാക്കാവുന്നതാണ്](%%"
+"action.newgroup%%)."
+
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and [create the group](%%"
+"action.newgroup%%) yourself!"
+msgstr ""
+"എന്തുകൊണ്ട് താങ്കൾക്ക് തന്നെ [അംഗത്വമെടുക്കുകയും](%%action.register%%) [സംഘം സൃഷ്ടിക്കുകയും](%%"
+"action.newgroup%%) ചെയ്തുകൂട!"
+
+#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
+#: actions/groupunblock.php:95
+msgid "Only an admin can unblock group members."
+msgstr "സംഘത്തിലെ അംഗങ്ങളുടെ തടയൽ നീക്കാൻ കാര്യനിർവ്വാഹകനു മാത്രമേ കഴിയൂ."
+
+#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
+#: actions/groupunblock.php:100
+msgid "User is not blocked from group."
+msgstr "ഉപയോക്താവ് സംഘത്തിൽ നിന്നും തടയപ്പെട്ടിട്ടില്ല."
+
+#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
+msgid "Error removing the block."
+msgstr "തടയൽ നീക്കുന്നതിൽ പിഴവുണ്ടായി."
+
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
+msgid "IM settings"
+msgstr "ഐ.എം. സജ്ജീകരണങ്ങൾ"
+
+#. TRANS: Instant messaging settings page instructions.
+#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
+#. TRANS: the order and formatting of link text and link should remain unchanged.
+#: actions/imsettings.php:71
+#, php-format
+msgid ""
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
+msgstr ""
+"ജാബ്ബർ/ജിറ്റോക് [തത്സമയ സന്ദേശങ്ങൾ - instant messages] ഉപയോഗിച്ച് താങ്കൾക്ക് അറിയിപ്പുകൾ "
+"അയയ്ക്കാനും സ്വീകരിക്കാനും കഴിയുന്നതാണ് (%%doc.im%%). താങ്കളുടെ വിലാസവും സജ്ജീകരണങ്ങളും "
+"താഴെ ക്രമീകരിക്കുക."
+
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
+msgid "IM is not available."
+msgstr "ഐ.എം. ലഭ്യമല്ല."
+
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
+msgid "IM address"
+msgstr "ഐ.എം. വിലാസം"
+
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
+msgstr "ഇപ്പോഴത്തെ സ്ഥിരീകരിക്കപ്പെട്ട ജാബ്ബർ/ജിറ്റോക് വിലാസം."
+
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, php-format
+msgid ""
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
+msgstr ""
+"ഈ വിലാസം സ്ഥിരീകരണത്തിന് അവശേഷിക്കുന്നു. കൂടുതൽ നിർദ്ദേശങ്ങൾക്ക് താങ്കളുടെ ജാബ്ബർ/ജിറ്റോക് "
+"അംഗത്വത്തിലുള്ള സന്ദേശം പരിശോധിക്കുക. (%s ഒരു സുഹൃത്തായി താങ്കളുടെ പട്ടികയിലുണ്ടോ?)"
+
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
+#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
+#. TRANS: person or organization.
+#: actions/imsettings.php:139
+#, php-format
+msgid ""
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
+msgstr ""
+"ജാബ്ബർ അല്ലെങ്കിൽ ജിറ്റോക് വിലാസം, \"UserName@example.org\" എന്ന രീതിയിൽ. ആദ്യം %s "
+"താങ്കളുടെ ഐ.എം. ക്ലയന്റിലോ ജിറ്റോക്കിലോ സുഹൃത്തുക്കളുടെ പട്ടികയിലുണ്ടെന്നുറപ്പാക്കുക."
+
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
+msgid "IM preferences"
+msgstr "ഐ.എം. ക്രമീകരണങ്ങൾ"
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
+msgstr "ജാബ്ബർ/ജിറ്റോക് വഴി എനിക്ക് അറിയിപ്പുകൾ അയയ്ക്കുക."
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
+msgstr "എന്റെ ജാബ്ബർ/ജിറ്റോക് സ്ഥിതിവിവരം മാറുമ്പോൾ അറിയിപ്പുകൾ പ്രസിദ്ധീകരിക്കുക."
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
+msgstr ""
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr "ഇപ്പോഴത്തെ സ്ഥിരീകരിക്കപ്പെട്ട ജാബ്ബർ/ജിറ്റോക് വിലാസം"
+
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
+msgid "Preferences saved."
+msgstr "ക്രമീകരണങ്ങൾ സേവ് ചെയ്തു."
+
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
+msgid "No Jabber ID."
+msgstr "ജാബ്ബർ ഐ.ഡി. അല്ല."
+
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
+msgstr "സാധുവായ ഇമെയിൽ വിലാസം അല്ല."
+
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+msgid "Not a valid Jabber ID."
+msgstr "അസാധുവായ ജാബർ ഐ.ഡി.."
+
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
+msgid "That is already your Jabber ID."
+msgstr "അത് ഇപ്പോൾ തന്നെ താങ്കളുടെ ജാബ്ബർ ഐ.ഡി. ആണ്."
+
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
+msgid "Jabber ID already belongs to another user."
+msgstr "ജാബ്ബർ ഐ.ഡി. മുമ്പേ തന്നെ മറ്റൊരു ഉപയോക്താവിന്റേതാണ്."
+
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
+#, 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 അയയ്ക്കേണ്ടതാണ്."
+
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
+msgid "That is the wrong IM address."
+msgstr "ഇത് തെറ്റായ ഐ.എം. വിലാസമാണ്."
+
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
+msgstr "ഐ.എം. സ്ഥിരീകരണം നീക്കം ചെയ്യാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
+msgid "IM confirmation cancelled."
+msgstr "ഐ.എം. സ്ഥിരീകരണം റദ്ദാക്കി."
+
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
+#. TRANS: registered for the active user.
+#: actions/imsettings.php:417
+msgid "That is not your Jabber ID."
+msgstr "അത് താങ്കളുടെ ജാബ്ബർ ഐ.ഡി. അല്ല."
+
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
+msgid "The IM address was removed."
+msgstr "ഐ.എം. വിലാസം നീക്കം ചെയ്തിരിക്കുന്നു."
+
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
+#: actions/inbox.php:59
+#, php-format
+msgid "Inbox for %1$s - page %2$d"
+msgstr "%1$s എന്ന ഉപയോക്താവിന്റെ ഇൻബോക്സ് - താൾ %2$d"
+
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
+#, php-format
+msgid "Inbox for %s"
+msgstr "%s എന്ന ഉപയോക്താവിന്റെ ഇൻബോക്സ്"
+
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
+msgid "This is your inbox, which lists your incoming private messages."
+msgstr "ഇതാണ് താങ്കളുടെ ഇൻബോക്സ്, താങ്കൾക്ക് വരുന്ന സ്വകാര്യസന്ദേശങ്ങൾ ഇവിടെയാണെത്തുക."
+
+#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
+#: actions/invite.php:41
+msgid "Invites have been disabled."
+msgstr "ക്ഷണം പ്രവർത്തന രഹിതമാക്കിയിരിക്കുന്നു."
+
+#. TRANS: Client error displayed when trying to sent invites while not logged in.
+#. TRANS: %s is the StatusNet site name.
+#: actions/invite.php:45
+#, php-format
+msgid "You must be logged in to invite other users to use %s."
+msgstr "%s ഉപയോഗിക്കാൻ മറ്റുപയോക്താക്കളെ ക്ഷണിക്കാൻ താങ്കൾ ലോഗിൻ ചെയ്തിരിക്കണം."
+
+#. TRANS: Form validation message when providing an e-mail address that does not validate.
+#. TRANS: %s is an invalid e-mail address.
+#: actions/invite.php:78
+#, php-format
+msgid "Invalid email address: %s."
+msgstr "അസാധുവായ ഇമെയിൽ വിലാസം: %s."
+
+#. TRANS: Page title when invitations have been sent.
+#: actions/invite.php:117
+msgid "Invitations sent"
+msgstr "ക്ഷണങ്ങൾ അയച്ചിരിക്കുന്നു"
+
+#. TRANS: Page title when inviting potential users.
+#: actions/invite.php:120
+msgid "Invite new users"
+msgstr "പുതിയ ഉപയോക്താക്കളെ ക്ഷണിക്കുക"
+
+#. TRANS: Message displayed inviting users to use a StatusNet site while the inviting user
+#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
+#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
+#. TRANS: Followed by a bullet list.
+#: actions/invite.php:140
+msgid "You are already subscribed to this user:"
+msgid_plural "You are already subscribed to these users:"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
+#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
+#: actions/invite.php:146 actions/invite.php:160
+#, php-format
+msgctxt "INVITE"
+msgid "%1$s (%2$s)"
+msgstr ""
+
+#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
+#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
+#. TRANS: reported already present people. Followed by a bullet list.
+#: actions/invite.php:154
+msgid "This person is already a user and you were automatically subscribed:"
+msgid_plural ""
+"These people are already users and you were automatically subscribed to them:"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
+#. TRANS: based on the number of invitations sent. Followed by a bullet list of
+#. TRANS: e-mail addresses to which invitations were sent.
+#: actions/invite.php:168
+msgid "Invitation sent to the following person:"
+msgid_plural "Invitations sent to the following people:"
+msgstr[0] "താഴെക്കൊടുത്തിരിക്കുന്ന വ്യക്തിയെ ക്ഷണിച്ചിരിക്കുന്നു:"
+msgstr[1] "താഴെക്കൊടുത്തിരിക്കുന്ന വ്യക്തികളെ ക്ഷണിച്ചിരിക്കുന്നു:"
+
+#. TRANS: Generic message displayed after sending out one or more invitations to
+#. TRANS: people to join a StatusNet site.
+#: actions/invite.php:178
+msgid ""
+"You will be notified when your invitees accept the invitation and register "
+"on the site. Thanks for growing the community!"
+msgstr ""
+"താങ്കൾ ക്ഷണിച്ചവർ ക്ഷണം സ്വീകരിച്ച് സൈറ്റിൽ അംഗത്വമെടുക്കുമ്പോൾ താങ്കളെ അറിയിക്കുന്നതാണ്. സമൂഹം "
+"വളർത്തുന്നതിനു നന്ദി!"
+
+#. TRANS: Form instructions.
+#: actions/invite.php:191
+msgid ""
+"Use this form to invite your friends and colleagues to use this service."
+msgstr ""
+"ഈ സേവനം ഉപയോഗിക്കാൻ താങ്കളുടെ സുഹൃത്തുക്കളേയും സഹപ്രവർത്തകരേയും ക്ഷണിക്കാൻ ഈ ഫോം ഉപയോഗിക്കുക."
+
+#. TRANS: Field label for a list of e-mail addresses.
+#: actions/invite.php:218
+msgid "Email addresses"
+msgstr "ഇമെയിൽ വിലാസം"
+
+#. TRANS: Tooltip for field label for a list of e-mail addresses.
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
+msgstr "ക്ഷണിക്കേണ്ട സുഹൃത്തുക്കളുടെ വിലാസം (ഒരു വരിയിൽ ഒന്നു വീതം)."
+
+#. TRANS: Field label for a personal message to send to invitees.
+#: actions/invite.php:225
+msgid "Personal message"
+msgstr "സ്വകാര്യ സന്ദേശം"
+
+#. TRANS: Tooltip for field label for a personal message to send to invitees.
+#: actions/invite.php:228
+msgid "Optionally add a personal message to the invitation."
+msgstr "ക്ഷണത്തിൽ താങ്കളുടെ സ്വന്തം സന്ദേശം കൂടി വേണമെങ്കിൽ കൂട്ടിച്ചേർക്കുക."
+
+#. TRANS: Send button for inviting friends
+#: actions/invite.php:232
+msgctxt "BUTTON"
+msgid "Send"
+msgstr "അയക്കുക"
+
+#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
+#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
+#. TRANS: the StatusNet sitename.
+#: actions/invite.php:264
+#, php-format
+msgid "%1$s has invited you to join them on %2$s"
+msgstr "%1$s താങ്കളെ, അവരോടൊപ്പം %2$s സൈറ്റിൽ ചേരാൻ ക്ഷണിച്ചിരിക്കുന്നു"
+
+#. TRANS: Body text for invitation email. Note that 'them' is correct as a gender-neutral
+#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, %2$s is the
+#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
+#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
+#. TRANS: to register with the StatusNet site.
+#: actions/invite.php:271
+#, php-format
+msgid ""
+"%1$s has invited you to join them on %2$s (%3$s).\n"
+"\n"
+"%2$s is a micro-blogging service that lets you keep up-to-date with people "
+"you know and people who interest you.\n"
+"\n"
+"You can also share news about yourself, your thoughts, or your life online "
+"with people who know about you. It's also great for meeting new people who "
+"share your interests.\n"
+"\n"
+"%1$s said:\n"
+"\n"
+"%4$s\n"
+"\n"
+"You can see %1$s's profile page on %2$s here:\n"
+"\n"
+"%5$s\n"
+"\n"
+"If you'd like to try the service, click on the link below to accept the "
+"invitation.\n"
+"\n"
+"%6$s\n"
+"\n"
+"If not, you can ignore this message. Thanks for your patience and your "
+"time.\n"
+"\n"
+"Sincerely, %2$s\n"
+msgstr ""
+
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
+msgid "You must be logged in to join a group."
+msgstr "ഒരു സംഘത്തിൽ ചേരാൻ താങ്കൾ ലോഗിൻ ചെയ്തിരിക്കേണ്ടതാണ്."
+
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, php-format
+msgctxt "TITLE"
+msgid "%1$s joined group %2$s"
+msgstr "%1$s %2$s എന്ന സംഘത്തിൽ ചേർന്നു"
+
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
+msgid "You must be logged in to leave a group."
+msgstr "ഒരു സംഘത്തിൽ നിന്നും പുറത്തുപോകാൻ താങ്കൾ ലോഗിൻ ചെയ്തിരിക്കേണ്ടതാണ്."
+
+#. TRANS: Client error displayed when trying to join a group while already a member.
+#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
+#: actions/leavegroup.php:103 lib/command.php:386
+msgid "You are not a member of that group."
+msgstr "താങ്കൾ ആ സംഘത്തിൽ അംഗമല്ല."
+
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, php-format
+msgctxt "TITLE"
+msgid "%1$s left group %2$s"
+msgstr "%1$s %2$s എന്ന സംഘത്തിൽ നിന്നും ഒഴിവായി"
+
+#. TRANS: User admin panel title
+#: actions/licenseadminpanel.php:55
+msgctxt "TITLE"
+msgid "License"
+msgstr "അനുമതി"
+
+#: actions/licenseadminpanel.php:65
+msgid "License for this StatusNet site"
+msgstr "ഈ സ്റ്റാറ്റസ്നെറ്റ് സൈറ്റിന്റെ ഉപയോഗാനുമതി"
+
+#: actions/licenseadminpanel.php:134
+msgid "Invalid license selection."
+msgstr "അനുമതി തിരഞ്ഞെടുക്കൽ അസാധുവാണ്."
+
+#: actions/licenseadminpanel.php:144
+msgid ""
+"You must specify the owner of the content when using the All Rights Reserved "
+"license."
+msgstr ""
+"എല്ലാ അവകാശങ്ങളും സംരക്ഷിതമായ ഉള്ളടക്കമാണ് ഉപയോഗിക്കുന്നതെങ്കിൽ ഉടമയെ വ്യക്തമാക്കേണ്ടതാണ്."
+
+#: actions/licenseadminpanel.php:151
+msgid "Invalid license title. Maximum length is 255 characters."
+msgstr "അസാധുവായ അനുമതി തലക്കെട്ട്. പരമാവധി നീളം 255 അക്ഷരങ്ങൾ."
+
+#: actions/licenseadminpanel.php:163
+msgid "Invalid license URL."
+msgstr "അനുമതിയുടെ യു.ആർ.എൽ. അസാധുവാണ്."
+
+#: actions/licenseadminpanel.php:166
+msgid "Invalid license image URL."
+msgstr "അനുമതി ചിത്രത്തിന്റെ യു.ആർ.എൽ. അസാധുവാണ്."
+
+#: actions/licenseadminpanel.php:174
+msgid "License URL must be blank or a valid URL."
+msgstr "അനുമതിപത്ര യൂ.ആർ.എൽ. ശൂന്യമായിരിക്കണം അല്ലെങ്കിൽ സാധുവായ യൂ.ആർ.എൽ. ആയിരിക്കണം."
+
+#: actions/licenseadminpanel.php:182
+msgid "License image must be blank or valid URL."
+msgstr "അനുമതിപത്ര ചിത്രം ശൂന്യമായിരിക്കണം അല്ലെങ്കിൽ സാധുവായ യൂ.ആർ.എൽ. ആയിരിക്കണം."
+
+#: actions/licenseadminpanel.php:232
+msgid "License selection"
+msgstr "അനുമതി തിരഞ്ഞെടുക്കൽ"
+
+#: actions/licenseadminpanel.php:238
+msgid "Private"
+msgstr "സ്വകാര്യം"
+
+#: actions/licenseadminpanel.php:239
+msgid "All Rights Reserved"
+msgstr "എല്ലാ അവകാശങ്ങളും സംരക്ഷിതം"
+
+#: actions/licenseadminpanel.php:240
+msgid "Creative Commons"
+msgstr "ക്രിയേറ്റീവ് കോമൺസ്"
+
+#: actions/licenseadminpanel.php:245
+msgid "Type"
+msgstr "തരം"
+
+#: actions/licenseadminpanel.php:247
+msgid "Select license"
+msgstr "അനുമതി തിരഞ്ഞെടുക്കുക"
+
+#: actions/licenseadminpanel.php:261
+msgid "License details"
+msgstr "അനുമതിയുടെ വിശദാംശങ്ങൾ"
+
+#: actions/licenseadminpanel.php:267
+msgid "Owner"
+msgstr "ഉടമ"
+
+#: actions/licenseadminpanel.php:268
+msgid "Name of the owner of the site's content (if applicable)."
+msgstr "സൈറ്റിന്റെ ഉള്ളടക്കത്തിന്റെ ഉടമയുടെ (സാദ്ധ്യമെങ്കിൽ) പേര്."
+
+#: actions/licenseadminpanel.php:276
+msgid "License Title"
+msgstr "അനുമതിയുടെ തലക്കെട്ട്"
+
+#: actions/licenseadminpanel.php:277
+msgid "The title of the license."
+msgstr "അനുമതിയുടെ ശീർഷകം."
+
+#: actions/licenseadminpanel.php:285
+msgid "License URL"
+msgstr "അനുമതിയുടെ യൂ.ആർ.എൽ."
+
+#: actions/licenseadminpanel.php:286
+msgid "URL for more information about the license."
+msgstr "അനുമതിയെക്കുറിച്ച് കൂടുതൽ വിവരങ്ങൾ നൽകുന്ന യൂ.ആർ.എൽ."
+
+#: actions/licenseadminpanel.php:293
+msgid "License Image URL"
+msgstr "അനുമതി ചിത്ര യൂ.ആർ.എൽ."
+
+#: actions/licenseadminpanel.php:294
+msgid "URL for an image to display with the license."
+msgstr "അനുമതിയോടൊപ്പം പ്രദർശിപ്പിക്കേണ്ട ചിത്രത്തിന്റെ യൂ.ആർ.എൽ.."
+
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "സേവ് ചെയ്യുക"
+
+#: actions/licenseadminpanel.php:311
+msgid "Save license settings"
+msgstr "അനുമതി സജ്ജീകരണങ്ങൾ സേവ് ചെയ്യുക"
+
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
+msgid "Already logged in."
+msgstr "മുമ്പേ തന്നെ ലോഗിൻ ചെയ്തിട്ടുണ്ട്."
+
+#: actions/login.php:142
+msgid "Incorrect username or password."
+msgstr "ഉപയോക്തൃനാമമോ രഹസ്യവാക്കോ തെറ്റാണ്."
+
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
+msgid "Error setting user. You are probably not authorized."
+msgstr "ഉപയോക്തൃ സജ്ജീകരണത്തിൽ പിഴവുണ്ടായി. താങ്കൾക്ക് മിക്കവാറും അനുമതിയുണ്ടാവില്ല."
+
+#: actions/login.php:202 actions/login.php:253
+msgid "Login"
+msgstr "പ്രവേശിക്കുക"
+
+#: actions/login.php:239
+msgid "Login to site"
+msgstr "സൈറ്റിലേക്ക് പ്രവേശിക്കുക"
+
+#: actions/login.php:248 actions/register.php:476
+msgid "Remember me"
+msgstr "എന്നെ ഓർത്തുവെയ്ക്കുക"
+
+#: actions/login.php:249 actions/register.php:478
+msgid "Automatically login in the future; not for shared computers!"
+msgstr "ഭാവിയിൽ സ്വയം ലോഗിൻ ചെയ്യുക; പങ്ക് വെച്ച് ഉപയോഗിക്കുന്ന കമ്പ്യൂട്ടറുകളിൽ പാടില്ല!"
+
+#: actions/login.php:259
+msgid "Lost or forgotten password?"
+msgstr "രഹസ്യവാക്ക് നഷ്ടപ്പെടുകയോ മറക്കുകയോ ചെയ്തോ?"
+
+#: actions/login.php:277
+msgid ""
+"For security reasons, please re-enter your user name and password before "
+"changing your settings."
+msgstr ""
+"സുരക്ഷാകാരണങ്ങളാൽ, താങ്കളുടെ ഉപയോക്തൃനാമവും രഹസ്യവാക്കും സജ്ജീകരണങ്ങളിൽ മാറ്റം വരുത്തുന്നതിനു "
+"മുമ്പ് ഒരു പ്രാവശ്യം നൽകേണ്ടതാണ്."
+
+#: actions/login.php:281
+msgid "Login with your username and password."
+msgstr "താങ്കളുടെ ഉപയോക്തൃനാമവും രഹസ്യവാക്കും ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക."
+
+#: actions/login.php:284
+#, php-format
+msgid ""
+"Don't have a username yet? [Register](%%action.register%%) a new account."
+msgstr "ഇതുവരെ ഒരു ഉപയോക്തൃനാമം ഇല്ലേ?? പുതിയൊരു [അംഗത്വമെടുക്കുക](%%action.register%%)."
+
+#: actions/makeadmin.php:92
+msgid "Only an admin can make another user an admin."
+msgstr "ഒരു കാര്യനിർവ്വാഹകനു മാത്രമേ മറ്റൊരുപയോക്താവിനെ കാര്യനിർവ്വാഹകനാക്കാൻ കഴിയൂ."
+
+#: actions/makeadmin.php:96
+#, php-format
+msgid "%1$s is already an admin for group \"%2$s\"."
+msgstr "%1$s എന്ന ഉപയോക്താവ് \"%2$s\" എന്ന സംഘത്തിൽ മുമ്പേ തന്നെ കാര്യനിർവ്വാഹകനാണ്."
+
+#: actions/makeadmin.php:133
+#, php-format
+msgid "Can't get membership record for %1$s in group %2$s."
+msgstr "%2$s സൈറ്റിലെ %1$s സംഘാംഗങ്ങളുടെ അംഗത്വരേഖ ലഭ്യമായില്ല."
+
+#: actions/makeadmin.php:146
+#, php-format
+msgid "Can't make %1$s an admin for group %2$s."
+msgstr "%1$s എന്ന ഉപയോക്താവിനെ %2$s എന്ന സംഘത്തിലെ കാര്യനിർവ്വാഹകനാക്കാൻ കഴിയില്ല."
+
+#: actions/microsummary.php:69
+msgid "No current status."
+msgstr "തൽസ്ഥിതിവിവരം ഒന്നും ഇല്ല."
+
+#. TRANS: This is the title of the form for adding a new application.
+#: actions/newapplication.php:52
+msgid "New application"
+msgstr ""
+
+#. TRANS: Client error displayed trying to add a new application while not logged in.
+#: actions/newapplication.php:64
+msgid "You must be logged in to register an application."
+msgstr ""
+
+#. TRANS: Form instructions for registering a new application.
+#: actions/newapplication.php:147
+msgid "Use this form to register a new application."
+msgstr ""
+
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
+msgid "Source URL is required."
+msgstr "സ്രോതസ്സ് യു.ആർ.എൽ. ആവശ്യമാണ്."
+
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
+msgid "Could not create application."
+msgstr ""
+
+#. TRANS: Title for form to create a group.
+#: actions/newgroup.php:53
+msgid "New group"
+msgstr "പുതിയ സംഘം"
+
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr "ഈ സൈറ്റിൽ സംഘങ്ങൾ ഉണ്ടാക്കാൻ താങ്കൾക്ക് അനുമതിയില്ല."
+
+#. TRANS: Form instructions for group create form.
+#: actions/newgroup.php:117
+msgid "Use this form to create a new group."
+msgstr "പുതിയൊരു സംഘം സൃഷ്ടിക്കാൻ ഈ ഫോം ഉപയോഗിക്കുക."
+
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
+#: actions/newmessage.php:71 actions/newmessage.php:234
+msgid "New message"
+msgstr "പുതിയ സന്ദേശം"
+
+#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other).
+#: actions/newmessage.php:121 actions/newmessage.php:164 lib/command.php:501
+msgid "You can't send a message to this user."
+msgstr "ഈ ഉപയോക്താവിന് സന്ദേശമയയ്ക്കാൻ താങ്കൾക്കാവില്ല."
+
+#. TRANS: Command exception text shown when trying to send a direct message to another user without content.
+#. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply.
+#: actions/newmessage.php:144 actions/newnotice.php:140 lib/command.php:478
+#: lib/command.php:581
+msgid "No content!"
+msgstr "ഉള്ളടക്കമില്ല!"
+
+#: actions/newmessage.php:161
+msgid "No recipient specified."
+msgstr "സ്വീകർത്താവിനെ വ്യക്തമാക്കിയിട്ടില്ല."
+
+#. TRANS: Error text shown when trying to send a direct message to self.
+#: actions/newmessage.php:167 lib/command.php:505
+msgid ""
+"Don't send a message to yourself; just say it to yourself quietly instead."
+msgstr "താങ്കൾക്കു തന്നെ സന്ദേശം അയയ്ക്കരുത്; പകരം അത് പതുക്കെ സ്വയം പറയുക."
+
+#: actions/newmessage.php:184
+msgid "Message sent"
+msgstr "സന്ദേശം അയച്ചു"
+
+#. TRANS: Message given have sent a direct message to another user.
+#. TRANS: %s is the name of the other user.
+#: actions/newmessage.php:188 lib/command.php:513
+#, php-format
+msgid "Direct message to %s sent."
+msgstr "%s എന്ന ഉപയോക്താവിന് നേരിട്ട് അയച്ച സന്ദേശങ്ങൾ."
+
+#: actions/newmessage.php:213 actions/newnotice.php:264
+msgid "Ajax Error"
+msgstr "അജാക്സ് പിഴവ്"
+
+#: actions/newnotice.php:69
+msgid "New notice"
+msgstr "പുതിയ അറിയിപ്പ്"
+
+#: actions/newnotice.php:230
+msgid "Notice posted"
+msgstr "അറിയിപ്പ് പ്രസിദ്ധീകരിച്ചിരിക്കുന്നു"
+
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
+#, 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 ""
+
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
+msgid "Text search"
+msgstr "എഴുത്തുകളിലെ തിരച്ചിൽ"
+
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
+#, php-format
+msgid "Search results for \"%1$s\" on %2$s"
+msgstr ""
+
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
+#, php-format
+msgid ""
+"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
+"status_textarea=%s)!"
+msgstr ""
+"[ഈ വിഷയത്തിൽ കുറിപ്പിടുന്ന](%%%%action.newnotice%%%%?status_textarea=%s) ആദ്യയാളാകൂ!"
+
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
+#, 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 ""
+"എന്തുകൊണ്ട് [അംഗത്വമെടുക്കുകയും](%%%%action.register%%%%) [ഈ വിഷയത്തിൽ കുറിപ്പിടുന്ന](%%%%"
+"action.newnotice%%%%?status_textarea=%s) ആദ്യയാളാകുകയും ചെയ്തുകൂട!"
+
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
+#, php-format
+msgid "Updates with \"%s\""
+msgstr ""
+
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
+msgstr "%2$s സൈറ്റിലെ %1$s സംഘാങ്ങളുടെ പുതുക്കലുകൾ!"
+
+#: actions/nudge.php:85
+msgid ""
+"This user doesn't allow nudges or hasn't confirmed or set their email "
+"address yet."
+msgstr ""
+
+#: actions/nudge.php:94
+msgid "Nudge sent"
+msgstr ""
+
+#: actions/nudge.php:97
+msgid "Nudge sent!"
+msgstr ""
+
+#. TRANS: Message displayed to an anonymous user trying to view OAuth application list.
+#: actions/oauthappssettings.php:60
+msgid "You must be logged in to list your applications."
+msgstr ""
+
+#. TRANS: Page title for OAuth applications
+#: actions/oauthappssettings.php:76
+msgid "OAuth applications"
+msgstr ""
+
+#. TRANS: Page instructions for OAuth applications
+#: actions/oauthappssettings.php:88
+msgid "Applications you have registered"
+msgstr ""
+
+#. TRANS: Empty list message on page with OAuth applications.
+#: actions/oauthappssettings.php:141
+#, php-format
+msgid "You have not registered any applications yet."
+msgstr ""
+
+#. TRANS: Title for OAuth connection settings.
+#: actions/oauthconnectionssettings.php:70
+msgid "Connected applications"
+msgstr ""
+
+#. TRANS: Instructions for OAuth connection settings.
+#: actions/oauthconnectionssettings.php:81
+msgid "The following connections exist for your account."
+msgstr ""
+
+#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
+#: actions/oauthconnectionssettings.php:166
+msgid "You are not a user of that application."
+msgstr ""
+
+#. TRANS: Client error when revoking access has failed for some reason.
+#. TRANS: %s is the application ID revoking access failed for.
+#: actions/oauthconnectionssettings.php:181
+#, php-format
+msgid "Unable to revoke access for application: %s."
+msgstr ""
+
+#. TRANS: Success message after revoking access for an application.
+#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
+#: actions/oauthconnectionssettings.php:200
+#, php-format
+msgid ""
+"You have successfully revoked access for %1$s and the access token starting "
+"with %2$s."
+msgstr ""
+
+#. TRANS: Empty list message when no applications have been authorised yet.
+#: actions/oauthconnectionssettings.php:211
+msgid "You have not authorized any applications to use your account."
+msgstr ""
+
+#. TRANS: Note for developers in the OAuth connection settings form.
+#. TRANS: This message contains a Markdown link. Do not separate "](".
+#. TRANS: %s is the URL to the OAuth settings.
+#: actions/oauthconnectionssettings.php:231
+#, php-format
+msgid ""
+"Are you a developer? [Register an OAuth client application](%s) to use with "
+"this instance of StatusNet."
+msgstr ""
+
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "ഉപയോക്താവിനെ കണ്ടത്താനായില്ല."
+
+#: actions/oembed.php:76
+#, php-format
+msgid "Notice %s not found."
+msgstr "%s എന്ന അറിയിപ്പ് കണ്ടെത്താനായില്ല."
+
+#: actions/oembed.php:80 actions/shownotice.php:100
+msgid "Notice has no profile."
+msgstr ""
+
+#: actions/oembed.php:83 actions/shownotice.php:172
+#, php-format
+msgid "%1$s's status on %2$s"
+msgstr "%2$s പദ്ധതിയിൽ %1$s എന്ന ഉപയോക്താവിന്റെ സ്ഥിതിവിവരം"
+
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "സ്വീകർത്താവായ ഉപയോക്താവിനെ കണ്ടെത്താനായില്ല."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
+#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
+#: actions/oembed.php:168
+#, php-format
+msgid "Content type %s not supported."
+msgstr "%s എന്ന തരം ഉള്ളടക്കം പിന്തുണയ്ക്കുന്നില്ല."
+
+#. TRANS: Error message displaying attachments. %s is the site's base URL.
+#: actions/oembed.php:172
+#, php-format
+msgid "Only %s URLs over plain HTTP please."
+msgstr ""
+
+#. TRANS: Client error on an API request with an unsupported data format.
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
+msgid "Not a supported data format."
+msgstr "പിന്തുണയില്ലാത്ത തരം ഡേറ്റ."
+
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
+#: actions/opensearch.php:64
+msgid "People Search"
+msgstr "ഉപയോക്താക്കളെ തിരയുക"
+
+#: actions/opensearch.php:68
+msgid "Notice Search"
+msgstr "അറിയിപ്പുകൾ തിരയുക"
+
+#: actions/othersettings.php:59
+msgid "Other settings"
+msgstr "മറ്റ് സജ്ജീകരണങ്ങൾ"
+
+#. TRANS: Instructions for tab "Other" in user profile settings.
+#: actions/othersettings.php:71
+msgid "Manage various other options."
+msgstr "മറ്റ് നിരവധി ഐച്ഛികങ്ങൾ കൈകാര്യം ചെയ്യുക."
+
+#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
+msgid " (free service)"
+msgstr " (സൗജന്യ സേവനം)"
+
+#. TRANS: Label for dropdown with URL shortener services.
+#: actions/othersettings.php:122
+msgid "Shorten URLs with"
+msgstr "യൂ.ആർ.എൽ. ചെറുതാക്കാൻ ഇതുപയോഗിക്കുക"
+
+#. TRANS: Tooltip for for dropdown with URL shortener services.
+#: actions/othersettings.php:124
+msgid "Automatic shortening service to use."
+msgstr "ഉപയോഗിക്കാവുന്ന സ്വയംപ്രവർത്തിത ചെറുതാക്കൽ സേവനം."
+
+#. TRANS: Label for checkbox.
+#: actions/othersettings.php:130
+msgid "View profile designs"
+msgstr ""
+
+#. TRANS: Tooltip for checkbox.
+#: actions/othersettings.php:132
+msgid "Show or hide profile designs."
+msgstr ""
+
+#. TRANS: Form validation error for form "Other settings" in user profile.
+#: actions/othersettings.php:164
+msgid "URL shortening service is too long (maximum 50 characters)."
+msgstr "യൂ.ആർ.എൽ. ചെറുതാക്കൽ സേവനം വളരെ വലുതാണ് (പരമാവധി 50 അക്ഷരങ്ങൾ)."
+
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
+msgid "No user ID specified."
+msgstr "ഉപയോക്തൃ ഐ.ഡി. വ്യക്തമാക്കിയിട്ടില്ല."
+
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
+msgid "No login token specified."
+msgstr "ലോഗിൻ ചീട്ട് വ്യക്തമാക്കിയിട്ടില്ല."
+
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
+msgid "No login token requested."
+msgstr "ലോഗിൻ ചീറ്റ് ആവശ്യപ്പെട്ടിട്ടില്ല."
+
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
+msgid "Invalid login token specified."
+msgstr "വ്യക്തമാക്കിയത് അസാധുവായ ലോഗിൻ ചീട്ട് ആണ്."
+
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
+msgid "Login token expired."
+msgstr "ലോഗിൻ ചീട്ട് കാലഹരണപ്പെട്ടിരിക്കുന്നു."
+
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
+#, php-format
+msgid "Outbox for %1$s - page %2$d"
+msgstr "%1$s എന്ന ഉപയോക്താവിന്റെ ഔട്ട്ബോക്സ് - താൾ %2$d"
+
+#. TRANS: Title for first page of outbox.
+#: actions/outbox.php:61
+#, php-format
+msgid "Outbox for %s"
+msgstr "%s എന്ന ഉപയോക്താവിന്റെ ഔട്ട്ബോക്സ്"
+
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
+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 "താങ്കളുടെ രഹസ്യവാക്ക് മാറ്റുക."
+
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
+msgid "Password change"
+msgstr "രഹസ്യവാക്ക് മാറ്റൽ"
+
+#: actions/passwordsettings.php:104
+msgid "Old password"
+msgstr "പഴയ രഹസ്യവാക്ക്"
+
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
+msgid "New password"
+msgstr "പുതിയ രഹസ്യവാക്ക്"
+
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
+msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ."
+
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
+msgstr "മുകളിൽ നൽകിയ അതേ രഹസ്യവാക്ക്."
+
+#: actions/passwordsettings.php:117
+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 "ഉപയോക്താവിനെ സേവ് ചെയ്യുന്നതിൽ പിഴവുണ്ടായി; അസാധുവാണ്."
+
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
+msgstr "പുതിയ രഹസ്യവാക്ക് സേവ് ചെയ്യാനാവില്ല."
+
+#: actions/passwordsettings.php:191
+msgid "Password saved."
+msgstr "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു."
+
+#. TRANS: Title for Paths admin panel.
+#. TRANS: Menu item for site administration
+#: actions/pathsadminpanel.php:58 lib/adminpanelaction.php:371
+msgid "Paths"
+msgstr ""
+
+#. TRANS: Form instructions for Path admin panel.
+#: actions/pathsadminpanel.php:69
+msgid "Path and server settings for this StatusNet site"
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the directory that could not be read from.
+#: actions/pathsadminpanel.php:155
+#, php-format
+msgid "Theme directory not readable: %s."
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the avatar directory that could not be written to.
+#: actions/pathsadminpanel.php:163
+#, php-format
+msgid "Avatar directory not writable: %s."
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the background directory that could not be written to.
+#: actions/pathsadminpanel.php:171
+#, php-format
+msgid "Background directory not writable: %s."
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the locales directory that could not be read from.
+#: actions/pathsadminpanel.php:181
+#, php-format
+msgid "Locales directory not readable: %s."
+msgstr ""
+
+#. TRANS: Client error in Paths admin panel.
+#. TRANS: %s is the SSL server URL that is too long.
+#: actions/pathsadminpanel.php:189
+msgid "Invalid SSL server. The maximum length is 255 characters."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:235 actions/siteadminpanel.php:58
+msgid "Site"
+msgstr "സൈറ്റ്"
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:241 actions/pathsadminpanel.php:279
+#: actions/pathsadminpanel.php:370 actions/pathsadminpanel.php:425
+msgid "Server"
+msgstr "സെർവർ"
+
+#: actions/pathsadminpanel.php:242
+msgid "Site's server hostname."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:248 actions/pathsadminpanel.php:288
+#: actions/pathsadminpanel.php:379 actions/pathsadminpanel.php:434
+msgid "Path"
+msgstr ""
+
+#: actions/pathsadminpanel.php:249
+msgid "Site path."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:255
+msgid "Locale directory"
+msgstr ""
+
+#: actions/pathsadminpanel.php:256
+msgid "Directory path to locales."
+msgstr ""
+
+#. TRANS: Checkbox label in Paths admin panel.
+#: actions/pathsadminpanel.php:263
+msgid "Fancy URLs"
+msgstr "അലങ്കൃത യൂ.ആർ.എല്ലുകൾ"
+
+#: actions/pathsadminpanel.php:265
+msgid "Use fancy (more readable and memorable) URLs?"
+msgstr "അലങ്കൃത (വായിക്കാനും ഓർത്തിരിക്കാനും എളുപ്പമായവ) യൂ.ആർ.എല്ലുകൾ ഉപയോഗിക്കണോ?"
+
+#: actions/pathsadminpanel.php:272
+msgid "Theme"
+msgstr "ദൃശ്യരൂപം"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:281
+msgid "Server for themes."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:290
+msgid "Web path to themes."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:297 actions/pathsadminpanel.php:388
+#: actions/pathsadminpanel.php:443 actions/pathsadminpanel.php:495
+msgid "SSL server"
+msgstr "എസ്.എസ്.എൽ. സെർവർ"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:299
+msgid "SSL server for themes (default: SSL server)."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:306 actions/pathsadminpanel.php:397
+#: actions/pathsadminpanel.php:452
+msgid "SSL path"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:308
+msgid "SSL path to themes (default: /theme/)."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:315 actions/pathsadminpanel.php:406
+#: actions/pathsadminpanel.php:461
+msgid "Directory"
+msgstr "ഡയറക്ടറി"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:317
+msgid "Directory where themes are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:326
+msgid "Avatars"
+msgstr "അവതാരങ്ങൾ"
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:333
+msgid "Avatar server"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:335
+msgid "Server for avatars."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:342
+msgid "Avatar path"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:344
+msgid "Web path to avatars."
+msgstr ""
+
+#. TRANS: Field label in Paths admin panel.
+#: actions/pathsadminpanel.php:351
+msgid "Avatar directory"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:353
+msgid "Directory where avatars are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:364
+msgid "Backgrounds"
+msgstr "പശ്ചാത്തലം"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:372
+msgid "Server for backgrounds."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:381
+msgid "Web path to backgrounds."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:390
+msgid "Server for backgrounds on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:399
+msgid "Web path to backgrounds on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:408
+msgid "Directory where backgrounds are located."
+msgstr ""
+
+#. TRANS: Fieldset legens in Paths admin panel.
+#. TRANS: DT element label in attachment list.
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
+msgid "Attachments"
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:427
+msgid "Server for attachments."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:436
+msgid "Web path to attachments."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:445
+msgid "Server for attachments on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:454
+msgid "Web path to attachments on SSL pages."
+msgstr ""
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:463
+msgid "Directory where attachments are located."
+msgstr ""
+
+#. TRANS: Fieldset legend in Paths admin panel.
+#: actions/pathsadminpanel.php:472
+msgid "SSL"
+msgstr "എസ്.എസ്.എൽ."
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:477 actions/snapshotadminpanel.php:202
+msgid "Never"
+msgstr "ഒരിക്കലുമരുത്"
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:479
+msgid "Sometimes"
+msgstr "ചിലപ്പോഴൊക്കെ"
+
+#. TRANS: Drop down option in Paths admin panel (option for "When to use SSL").
+#: actions/pathsadminpanel.php:481
+msgid "Always"
+msgstr "എല്ലായ്പ്പോഴും"
+
+#: actions/pathsadminpanel.php:485
+msgid "Use SSL"
+msgstr "എസ്.എസ്.എൽ. ഉപയോഗിക്കുക"
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:487
+msgid "When to use SSL."
+msgstr "എസ്.എസ്.എൽ. എപ്പോഴാണ് ഉപയോഗിക്കേണ്ടത്."
+
+#. TRANS: Tooltip for field label in Paths admin panel.
+#: actions/pathsadminpanel.php:497
+msgid "Server to direct SSL requests to."
+msgstr ""
+
+#. TRANS: Button title text to store form data in the Paths admin panel.
+#: actions/pathsadminpanel.php:514
+msgid "Save paths"
+msgstr ""
+
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
+#, 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 ""
+
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
+msgid "People search"
+msgstr "ആൾക്കാരെ തിരയുക"
+
+#: actions/peopletag.php:68
+#, php-format
+msgid "Not a valid people tag: %s."
+msgstr ""
+
+#: actions/peopletag.php:142
+#, php-format
+msgid "Users self-tagged with %1$s - page %2$d"
+msgstr ""
+
+#: actions/postnotice.php:95
+msgid "Invalid notice content."
+msgstr "അറിയിപ്പിന്റെ ഉള്ളടക്കം അസാധുവാണ്."
+
+#: actions/postnotice.php:101
+#, php-format
+msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’."
+msgstr ""
+"അറിയിപ്പിന്റെ ഉപയോഗാനുമതിയായ് ‘%1$s’ സൈറ്റിന്റെ ഉപയോഗാനുമതിയായ ‘%2$s’ എന്നതുമായി "
+"ചേർന്നു പോകുന്നില്ല."
+
+#. TRANS: Page title for profile settings.
+#: actions/profilesettings.php:59
+msgid "Profile settings"
+msgstr ""
+
+#. TRANS: Usage instructions for profile settings.
+#: actions/profilesettings.php:70
+msgid ""
+"You can update your personal profile info here so people know more about you."
+msgstr ""
+
+#. TRANS: Profile settings form legend.
+#: actions/profilesettings.php:98
+msgid "Profile information"
+msgstr ""
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:109 actions/register.php:419
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
+msgstr ""
+
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for full group name (dt). Text hidden by default.
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
+msgid "Full name"
+msgstr "പൂർണ്ണനാമം"
+
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Form input field label.
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
+msgid "Homepage"
+msgstr "ഹോംപേജ്"
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:121 actions/register.php:448
+msgid "URL of your homepage, blog, or profile on another site."
+msgstr ""
+"താങ്കളുടെ ഹോംപേജിന്റെ, ബ്ലോഗിന്റെ അല്ലെങ്കിൽ മറ്റൊരു സൈറ്റിലെ താങ്കളെക്കുറിച്ചുള്ള "
+"താളിലേയ്ക്കുള്ള യൂ.ആർ.എൽ."
+
+#. TRANS: Tooltip for field label in form for profile settings. Plural
+#. TRANS: is decided by the number of characters available for the
+#. TRANS: biography (%d).
+#: actions/profilesettings.php:129 actions/register.php:457
+#, php-format
+msgid "Describe yourself and your interests in %d character"
+msgid_plural "Describe yourself and your interests in %d characters"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:135 actions/register.php:462
+msgid "Describe yourself and your interests"
+msgstr "താങ്കളെക്കുറിച്ചും താങ്കളുടെ ഇഷ്ടങ്ങളെക്കുറിച്ചും വിവരിക്കുക"
+
+#. TRANS: Text area label in form for profile settings where users can provide.
+#. TRANS: their biography.
+#: actions/profilesettings.php:139 actions/register.php:464
+msgid "Bio"
+msgstr ""
+
+#. TRANS: Field label in form for profile settings.
+#. TRANS: Label for group location (dt). Text hidden by default.
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
+msgid "Location"
+msgstr "സ്ഥലം"
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:148
+msgid "Where you are, like \"City, State (or Region), Country\""
+msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്ന്"
+
+#. TRANS: Checkbox label in form for profile settings.
+#: actions/profilesettings.php:153
+msgid "Share my current location when posting notices"
+msgstr "അറിയിപ്പുകൾ പ്രസിദ്ധീകരിക്കുന്നതിനോടൊപ്പം എന്റെ ഇപ്പോഴത്തെ സ്ഥലവും പങ്കുവെയ്ക്കുക"
+
+#. TRANS: Field label in form for profile settings.
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
+#: actions/tagother.php:209 lib/subscriptionlist.php:106
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
+msgid "Tags"
+msgstr "റ്റാഗുകൾ"
+
+#. TRANS: Tooltip for field label in form for profile settings.
+#: actions/profilesettings.php:164
+msgid ""
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
+msgstr ""
+
+#. TRANS: Dropdownlist label in form for profile settings.
+#: actions/profilesettings.php:169
+msgid "Language"
+msgstr "ഭാഷ"
+
+#. TRANS: Tooltip for dropdown list label in form for profile settings.
+#: actions/profilesettings.php:171
+msgid "Preferred language."
+msgstr "പ്രിയങ്കര ഭാഷ."
+
+#. TRANS: Dropdownlist label in form for profile settings.
+#: actions/profilesettings.php:181
+msgid "Timezone"
+msgstr "സമയ മേഖല"
+
+#. TRANS: Tooltip for dropdown list label in form for profile settings.
+#: actions/profilesettings.php:183
+msgid "What timezone are you normally in?"
+msgstr "താങ്കൾ സാധാരണയുണ്ടാകാറുള്ള സമയമേഖല ഏതാണ്?"
+
+#. TRANS: Checkbox label in form for profile settings.
+#: actions/profilesettings.php:189
+msgid ""
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
+msgstr ""
+
+#. TRANS: Validation error in form for profile settings.
+#. TRANS: Plural form is used based on the maximum number of allowed
+#. TRANS: characters for the biography (%d).
+#: actions/profilesettings.php:258 actions/register.php:221
+#, php-format
+msgid "Bio is too long (maximum %d character)."
+msgid_plural "Bio is too long (maximum %d characters)."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Validation error in form for profile settings.
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
+msgid "Timezone not selected."
+msgstr "സമയമേഖല തിരഞ്ഞെടുത്തിട്ടില്ല."
+
+#. TRANS: Validation error in form for profile settings.
+#: actions/profilesettings.php:277
+msgid "Language is too long (maximum 50 characters)."
+msgstr "ഭാഷയുടെ നീളം വളരെ കൂടുതലാണ് (പരമാവധി 50 അക്ഷരങ്ങൾ)."
+
+#. TRANS: Validation error in form for profile settings.
+#. TRANS: %s is an invalid tag.
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
+msgstr "അസാധുവായ റ്റാഗ്: \"%s\""
+
+#. TRANS: Server error thrown when user profile settings could not be updated to
+#. TRANS: automatically subscribe to any subscriber.
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
+msgstr "ഉപയോക്തൃ വിവരങ്ങൾ പുതുക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Server error thrown when user profile location preference settings could not be updated.
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
+msgstr "സ്ഥാനം സംബന്ധിച്ച ക്രമീകരണങ്ങൾ സേവ് ചെയ്യാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Server error thrown when user profile settings tags could not be saved.
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "റ്റാഗുകൾ സേവ് ചെയ്യാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Confirmation shown when user profile settings are saved.
+#. TRANS: Message after successful saving of administrative settings.
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
+msgid "Settings saved."
+msgstr "സജ്ജീകരണങ്ങൾ സേവ് ചെയ്തിരിക്കുന്നു."
+
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr "അംഗത്വം പുനഃക്രമീകരിക്കുക"
+
+#: actions/public.php:83
+#, php-format
+msgid "Beyond the page limit (%s)."
+msgstr "താളിന്റെ പരിധിയ്ക്ക് (%s) പുറത്താണ്."
+
+#: actions/public.php:92
+msgid "Could not retrieve public stream."
+msgstr ""
+
+#: actions/public.php:130
+#, php-format
+msgid "Public timeline, page %d"
+msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d"
+
+#: actions/public.php:132 lib/publicgroupnav.php:79
+msgid "Public timeline"
+msgstr "സാർവ്വജനിക സമയരേഖ"
+
+#: actions/public.php:160
+msgid "Public Stream Feed (RSS 1.0)"
+msgstr ""
+
+#: actions/public.php:164
+msgid "Public Stream Feed (RSS 2.0)"
+msgstr ""
+
+#: actions/public.php:168
+msgid "Public Stream Feed (Atom)"
+msgstr ""
+
+#: actions/public.php:188
+#, php-format
+msgid ""
+"This is the public timeline for %%site.name%% but no one has posted anything "
+"yet."
+msgstr ""
+
+#: actions/public.php:191
+msgid "Be the first to post!"
+msgstr "പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ വ്യക്തിയാകുക!"
+
+#: actions/public.php:195
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post!"
+msgstr ""
+"എന്തുകൊണ്ട് [അംഗത്വമെടുക്കുകയും](%%action.register%%) പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ വ്യക്തിയാകുകയും "
+"ചെയ്തുകൂട!"
+
+#: actions/public.php:242
+#, 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 ""
+"ഇത് %%site.name%%, സ്വതന്ത്ര സോഫ്റ്റ്വേറായ [സ്റ്റാറ്റസ്നെറ്റ്](http://status.net/) ഉപകരണം "
+"ഉപയോഗിക്കുന്ന [മൈക്രോ-ബ്ലോഗിങ്](http://en.wikipedia.org/wiki/Micro-blogging) "
+"സേവനദാതാവ്. അറിയിപ്പുകൾ സ്വയം താങ്കളുടെ സുഹൃത്തുക്കളുമായും, കുടുംബാംഗങ്ങളുമായും, "
+"സഹപ്രവർത്തകരുമായും പങ്ക് വെയ്ക്കുവാൻ [ഇപ്പോൾ തന്നെ ചേരുക](%%action.register%%)! (കൂടുതൽ "
+"അറിയുക](%%doc.help%%))"
+
+#: actions/public.php:247
+#, 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 ""
+
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s പദ്ധതിയിൽ എല്ലാവരും അയച്ചിട്ടുള്ള പുതിയവാർത്തകൾ!"
+
+#. TRANS: Title for public tag cloud.
+#: actions/publictagcloud.php:57
+msgid "Public tag cloud"
+msgstr ""
+
+#. TRANS: Instructions (more used like an explanation/header).
+#. TRANS: %s is the StatusNet sitename.
+#: actions/publictagcloud.php:65
+#, php-format
+msgid "These are most popular recent tags on %s"
+msgstr "സമീപകാലത്ത് %s സൈറ്റിൽ ഏറ്റവും ജനപ്രിയമായ റ്റാഗുകൾ"
+
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/publictagcloud.php:74
+#, php-format
+msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
+msgstr ""
+
+#. TRANS: Message shown to a logged in user for the public tag cloud
+#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
+#: actions/publictagcloud.php:79
+msgid "Be the first to post one!"
+msgstr "പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ വ്യക്തിയാകുക!"
+
+#. TRANS: Message shown to a anonymous user for the public tag cloud
+#. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag.
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/publictagcloud.php:87
+#, php-format
+msgid ""
+"Why not [register an account](%%action.register%%) and be the first to post "
+"one!"
+msgstr ""
+"എന്തുകൊണ്ട് [അംഗത്വമെടുക്കുകയും](%%action.register%%) പ്രസിദ്ധീകരിക്കുന്ന ആദ്യ വ്യക്തിയാകുകയും "
+"ചെയ്തുകൂട!"
+
+#: actions/publictagcloud.php:146
+msgid "Tag cloud"
+msgstr ""
+
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
+msgid "You are already logged in!"
+msgstr "താങ്കൾ മുമ്പേതന്നെ ലോഗിൻ ചെയ്തിട്ടുണ്ട്!"
+
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
+msgid "No such recovery code."
+msgstr "അത്തരത്തിലൊരു വീണ്ടെടുക്കൽ കോഡ് ഇല്ല."
+
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
+msgid "Not a recovery code."
+msgstr "അതൊരു വീണ്ടെടുക്കൽ കോഡ് അല്ല."
+
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
+msgid "Recovery code for unknown user."
+msgstr "അജ്ഞാത ഉപയോക്താവിന്റെ വീണ്ടെടുക്കൽ കോഡ് ആണ്."
+
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
+msgid "Error with confirmation code."
+msgstr "സ്ഥിരീകരണ കോഡിൽ പിഴവുണ്ട്."
+
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
+msgid "This confirmation code is too old. Please start again."
+msgstr "ഈ സ്ഥിരീകരണ കോഡ് വളരെ പഴക്കമേറിയതാണ്. ദയവായി ആദ്യം മുതൽ വീണ്ടും ശ്രമിക്കുക."
+
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
+msgid "Could not update user with confirmed email address."
+msgstr "സ്ഥിരീകരിച്ച ഇമെയിൽ വിലാസത്തോടെ ഉപയോക്തൃവിവരങ്ങൾ പുതുക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
+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:167
+msgid "You have been identified. Enter a new password below."
+msgstr "താങ്കൾ തിരിച്ചറിയപ്പെട്ടിരിക്കുന്നു. താഴെ പുതിയ രഹസ്യവാക്ക് നൽകുക."
+
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
+msgid "Password recovery"
+msgstr "രഹസ്യവാക്ക് വീണ്ടെടുക്കൽ"
+
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
+msgid "Nickname or email address"
+msgstr "വിളിപ്പേര് അല്ലെങ്കിൽ ഇമെയിൽ വിലാസം"
+
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
+msgid "Your nickname on this server, or your registered email address."
+msgstr ""
+"ഈ സെർവറിലെ താങ്കളുടെ വിളിപ്പേര്, അഥവാ താങ്കൾ രജിസ്റ്റർ ചെയ്തിട്ടുള്ള ഇമെയിൽ വിലാസം."
+
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
+msgid "Recover"
+msgstr "വീണ്ടെടുക്കുക"
+
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "വീണ്ടെടുക്കുക"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
+msgid "Reset password"
+msgstr "രഹസ്യവാക്ക് പുനഃക്രമീകരിക്കുക"
+
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
+msgid "Recover password"
+msgstr "രഹസ്യവാക്ക് വീണ്ടെടുക്കുക"
+
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
+msgid "Password recovery requested"
+msgstr "രഹസ്യവാക്ക് വീണ്ടെടുക്കൽ ആവശ്യപ്പെട്ടിരിക്കുന്നു"
+
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+msgid "Password saved"
+msgstr "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
+msgid "Unknown action"
+msgstr "അജ്ഞാതമായ പ്രവൃത്തി"
+
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
+msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ, അത് മറക്കരുത്!"
+
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
+msgid "Reset"
+msgstr "പുനഃക്രമീകരിക്കുക"
+
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
+msgid "Enter a nickname or email address."
+msgstr "ഒരു വിളിപ്പേരോ ഇമെയിൽ വിലാസമോ നൽകുക."
+
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
+msgid "No user with that email address or username."
+msgstr "ആ ഇമെയിൽ വിലാസമോ ഉപയോക്തൃനാമമോ ഉപയോഗിക്കുന്ന ഒരു ഉപയോക്താവും ഇല്ല."
+
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
+msgid "No registered email address for that user."
+msgstr "ആ ഉപയോക്താവ് ഇമെയിൽ വിലാസമൊന്നും നൽകിയിട്ടില്ല."
+
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
+msgid "Error saving address confirmation."
+msgstr "വിലാസത്തിന്റെ സ്ഥിരീകരണം സേവ് ചെയ്യുമ്പോൾ പിഴവുണ്ടായി."
+
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
+msgid ""
+"Instructions for recovering your password have been sent to the email "
+"address registered to your account."
+msgstr ""
+"താങ്കളുടെ രഹസ്യവാക്ക് പുനഃസ്ഥാപിക്കാനുള്ള നിർദ്ദേശങ്ങൾ താങ്കളുടെ അംഗതത്തോടൊപ്പം നൽകിയിട്ടുള്ള "
+"ഇമെയിൽ വിലാസത്തിലേയ്ക്ക് അയച്ചിട്ടുണ്ട്."
+
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
+msgid "Unexpected password reset."
+msgstr "അപ്രതീക്ഷിത രഹസ്യവാക്ക് പുനഃക്രമീകരണം."
+
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
+msgid "Password must be 6 characters or more."
+msgstr "രഹസ്യവാക്കിന് ആറോ അതിലധികമോ അക്ഷരങ്ങളുണ്ടായിരിക്കണം."
+
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
+msgid "Password and confirmation do not match."
+msgstr "രഹസ്യവാക്കും സ്ഥിരീകരണവും യോജിക്കുന്നില്ല."
+
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
+msgid "Error setting user."
+msgstr "ഉപയോക്താവിനെ സജ്ജീകരിക്കുന്നതിൽ പിഴവുണ്ടായി."
+
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
+msgid "New password successfully saved. You are now logged in."
+msgstr "പുതിയ രഹസ്യവാക്ക് വിജയകരമായി സേവ് ചെയ്തു. താങ്കൾക്ക് ലോഗിൻ ചെയ്യാവുന്നതാണ്."
+
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
+msgid "Sorry, only invited people can register."
+msgstr "ക്ഷമിക്കുക, ക്ഷണിക്കപ്പെട്ടവർക്കു മാത്രമേ അംഗത്വമെടുക്കാനാകൂ."
+
+#: actions/register.php:94
+msgid "Sorry, invalid invitation code."
+msgstr "ക്ഷമിക്കുക, ക്ഷണത്തിന്റെ കോഡ് അസാധുവാണ്."
+
+#: actions/register.php:113
+msgid "Registration successful"
+msgstr "അംഗത്വമെടുക്കൽ വിജയകരം"
+
+#: actions/register.php:115 actions/register.php:497
+msgid "Register"
+msgstr "അംഗത്വമെടുക്കുക"
+
+#: actions/register.php:135
+msgid "Registration not allowed."
+msgstr "അംഗത്വമെടുക്കൽ അനുവദിച്ചിട്ടില്ല."
+
+#: actions/register.php:201
+msgid "You cannot register if you don't agree to the license."
+msgstr "താങ്കൾ അനുവാദ പത്രം അംഗീകരിക്കുകയില്ലെങ്കിൽ ഭാഗമാകാനാകില്ല."
+
+#: actions/register.php:210
+msgid "Email address already exists."
+msgstr "ഇമെയിൽ വിലാസം മുമ്പേ നിലവിലുണ്ട്."
+
+#: actions/register.php:243 actions/register.php:265
+msgid "Invalid username or password."
+msgstr "ഉപയോക്തൃനാമമോ രഹസ്യവാക്കോ അസാധുവാണ്."
+
+#: actions/register.php:340
+msgid ""
+"With this form you can create a new account. You can then post notices and "
+"link up to friends and colleagues."
+msgstr ""
+"ഈ ഫോം ഉപയോഗിച്ച് താങ്കൾക്ക് പുതിയൊരു അംഗത്വം സൃഷ്ടിക്കാനാകും. പിന്നീട് താങ്കൾക്ക് അറിയിപ്പുകൾ "
+"പ്രസിദ്ധീകരിക്കാനും സുഹൃത്തുക്കളേയും സഹപ്രവർത്തകരേയും കണ്ണിചേർക്കാനുമാകും."
+
+#. TRANS: Link description in user account settings menu.
+#: actions/register.php:431 actions/register.php:435
+#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
+msgid "Email"
+msgstr "ഇമെയിൽ"
+
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
+msgstr ""
+"പുതുക്കൽ വിവരങ്ങൾക്കും, അറിയിപ്പുകൾക്കും, രഹസ്യവാക്ക് വീണ്ടെടുക്കൽ പ്രവർത്തനത്തിനും മാത്രം "
+"ഉപയോഗിച്ചത്."
+
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
+msgstr "വലിയ പേര്, താങ്കളുടെ \"യഥാർത്ഥ\" പേര് നൽകാൻ താത്പര്യപ്പെടുന്നു."
+
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "താങ്കളെവിടെയാണ്, അതായത് \"നഗരം, സംസ്ഥാനം (അഥവ പ്രദേശം), രാജ്യം\" എന്നിവ."
+
+#: actions/register.php:510
+#, php-format
+msgid ""
+"I understand that content and data of %1$s are private and confidential."
+msgstr ""
+
+#: actions/register.php:520
+#, php-format
+msgid "My text and files are copyright by %1$s."
+msgstr ""
+
+#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
+#: actions/register.php:524
+msgid "My text and files remain under my own copyright."
+msgstr "എന്റെ എഴുത്തുകളും പ്രമാണങ്ങളും എന്റെ സ്വന്തം പകർപ്പവകാശത്തിലായിരിക്കും."
+
+#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
+#: actions/register.php:527
+msgid "All rights reserved."
+msgstr "എല്ലാ അവകാശങ്ങളും സംരക്ഷിതം."
+
+#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
+#: actions/register.php:532
+#, php-format
+msgid ""
+"My text and files are available under %s except this private data: password, "
+"email address, IM address, and phone number."
+msgstr ""
+
+#: actions/register.php:573
+#, php-format
+msgid ""
+"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
+"want to...\n"
+"\n"
+"* Go to [your profile](%2$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 ""
+
+#: actions/register.php:597
+msgid ""
+"(You should receive a message by email momentarily, with instructions on how "
+"to confirm your email address.)"
+msgstr ""
+"(അല്പസമയത്തിനകം, താങ്കളുടെ ഇമെയിൽ വിലാസം എങ്ങനെ സ്ഥിരീകരിക്കാം എന്ന നിർദ്ദേശങ്ങളടങ്ങിയ "
+"സന്ദേശം താങ്കളുടെ ഇമെയിലിൽ ലഭിക്കും.)"
+
+#: actions/remotesubscribe.php:97
+#, 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 ""
+
+#: actions/remotesubscribe.php:111
+msgid "Remote subscribe"
+msgstr ""
+
+#: actions/remotesubscribe.php:123
+msgid "Subscribe to a remote user"
+msgstr ""
+
+#: actions/remotesubscribe.php:128
+msgid "User nickname"
+msgstr "ഉപയോക്തൃ വിളിപ്പേര്"
+
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
+msgstr "താങ്കൾക്ക് പിന്തുടരേണ്ട ഉപയോക്താവിന്റെ വിളിപ്പേര്."
+
+#: actions/remotesubscribe.php:132
+msgid "Profile URL"
+msgstr ""
+
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
+msgstr ""
+
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
+msgid "Subscribe"
+msgstr "വരിക്കാരാകുക"
+
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
+msgstr "പ്രമാണത്തിന്റെ പേര് അസാധുവാണ്."
+
+#: actions/remotesubscribe.php:167
+msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
+msgstr ""
+
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
+msgstr "വരിക്കാരനാകുന്നതിൽ നിന്നും ആ ഉപയോക്താവ് താങ്കളെ തടഞ്ഞിരിക്കുന്നു."
+
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
+msgstr "അഭ്യർത്ഥനാ ചീട്ട് ലഭ്യമാക്കാനായില്ല."
+
+#: actions/repeat.php:56
+msgid "Only logged-in users can repeat notices."
+msgstr "ലോഗിൻ ചെയ്തിട്ടുള്ള ഉപയോക്താക്കൾക്കു മാത്രമേ അറിയിപ്പ് ആവർത്തിക്കാനാവൂ."
+
+#: actions/repeat.php:63 actions/repeat.php:70
+msgid "No notice specified."
+msgstr "അറിയിപ്പുകളൊന്നും വ്യക്തമാക്കിയിട്ടില്ല."
+
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
+msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല."
+
+#: actions/repeat.php:89
+msgid "You already repeated that notice."
+msgstr "താങ്കൾ ആ അറിയിപ്പ് മുമ്പേ തന്നെ ആവർത്തിച്ചിരിക്കുന്നു."
+
+#: actions/repeat.php:112 lib/noticelist.php:692
+msgid "Repeated"
+msgstr "ആവർത്തിച്ചു"
+
+#: actions/repeat.php:117
+msgid "Repeated!"
+msgstr "ആവർത്തിച്ചു!"
+
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
+#: actions/replies.php:126 actions/repliesrss.php:68
+#: lib/personalgroupnav.php:109
+#, php-format
+msgid "Replies to %s"
+msgstr "%s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ"
+
+#: actions/replies.php:128
+#, php-format
+msgid "Replies to %1$s, page %2$d"
+msgstr "%1$s എന്ന ഉപയോക്താവിനുള്ള മറുപടികൾ, താൾ %2$d"
+
+#: actions/replies.php:145
+#, php-format
+msgid "Replies feed for %s (RSS 1.0)"
+msgstr ""
+
+#: actions/replies.php:152
+#, php-format
+msgid "Replies feed for %s (RSS 2.0)"
+msgstr ""
+
+#: actions/replies.php:159
+#, php-format
+msgid "Replies feed for %s (Atom)"
+msgstr ""
+
+#: actions/replies.php:199
+#, php-format
+msgid ""
+"This is the timeline showing replies to %1$s but %2$s hasn't received a "
+"notice to them yet."
+msgstr ""
+
+#: actions/replies.php:204
+#, php-format
+msgid ""
+"You can engage other users in a conversation, subscribe to more people or "
+"[join groups](%%action.groups%%)."
+msgstr ""
+
+#: actions/replies.php:206
+#, php-format
+msgid ""
+"You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action."
+"newnotice%%%%?status_textarea=%3$s)."
+msgstr ""
+
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
+msgstr "%2$s സംരംഭത്തിൽ %1$s എന്ന ഉപയോക്താവിന് അയച്ച മറുപടികൾ!"
+
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr "ലോഗിൻ ചെയ്തിട്ടുള്ള ഉപയോക്താക്കൾക്കു മാത്രമേ അവരുടെ അംഗത്വം പുനഃസ്ഥാപിക്കാനാകൂ."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr "താങ്കൾക്ക് താങ്കളുടെ അംഗത്വം പുനഃസ്ഥാപിക്കാനായേക്കില്ല."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr "പ്രമാണമൊന്നും അപ്ലോഡ് ചെയ്തിട്ടില്ല."
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "അപ്ലോഡ് ചെയ്യപ്പെട്ട പ്രമാണം ഭാഗികമായി മാത്രമേ അപ്ലോഡ് ചെയ്യപ്പെട്ടിട്ടുള്ളു."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "താത്കാലിക ഫോൾഡർ കാണുന്നില്ല."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "ഒരു അനുബന്ധം പ്രമാണം അപ്ലോഡ് ചെയ്യുന്നത് തടഞ്ഞു."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "പ്രമാണം അപ്ലോഡ് ചെയ്തുകൊണ്ടിരിക്കെ സിസ്റ്റം പിഴവുണ്ടായി."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല."
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "പ്രമാണം അപ്ലോഡ് ചെയ്യുക"
+
+#: actions/revokerole.php:75
+msgid "You cannot revoke user roles on this site."
+msgstr ""
+
+#: actions/revokerole.php:82
+msgid "User doesn't have this role."
+msgstr ""
+
+#: actions/rsd.php:142 actions/version.php:159
+msgid "StatusNet"
+msgstr "സ്റ്റാറ്റസ്നെറ്റ്"
+
+#: actions/sandbox.php:65 actions/unsandbox.php:65
+msgid "You cannot sandbox users on this site."
+msgstr ""
+
+#: actions/sandbox.php:72
+msgid "User is already sandboxed."
+msgstr ""
+
+#. TRANS: Menu item for site administration
+#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170
+#: lib/adminpanelaction.php:379
+msgid "Sessions"
+msgstr ""
+
+#: actions/sessionsadminpanel.php:65
+msgid "Session settings for this StatusNet site"
+msgstr "ഈ സ്റ്റാറ്റസ്നെറ്റ് സൈറ്റിന്റെ സെഷൻ സജ്ജീകരണങ്ങൾ"
+
+#: actions/sessionsadminpanel.php:175
+msgid "Handle sessions"
+msgstr ""
+
+#: actions/sessionsadminpanel.php:177
+msgid "Whether to handle sessions ourselves."
+msgstr ""
+
+#: actions/sessionsadminpanel.php:181
+msgid "Session debugging"
+msgstr ""
+
+#: actions/sessionsadminpanel.php:183
+msgid "Turn on debugging output for sessions."
+msgstr ""
+
+#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
+msgid "Save site settings"
+msgstr "സൈറ്റ് സജ്ജീകരണങ്ങൾ ചേവ് ചെയ്യുക"
+
+#: actions/showapplication.php:78
+msgid "You must be logged in to view an application."
+msgstr ""
+
+#: actions/showapplication.php:151
+msgid "Application profile"
+msgstr ""
+
+#. TRANS: Form input field label for application icon.
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
+msgid "Icon"
+msgstr "ഐകോൺ"
+
+#. TRANS: Form input field label for application name.
+#: actions/showapplication.php:163 actions/version.php:197
+#: lib/applicationeditform.php:190
+msgid "Name"
+msgstr "പേര്"
+
+#. TRANS: Form input field label.
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
+msgid "Organization"
+msgstr "സംഘടന"
+
+#. TRANS: Form input field label.
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
+msgid "Description"
+msgstr "വിവരണം"
+
+#. TRANS: Header for group statistics on a group page (h2).
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
+msgid "Statistics"
+msgstr "സ്ഥിതിവിവരക്കണക്കുകൾ"
+
+#: actions/showapplication.php:197
+#, php-format
+msgid "Created by %1$s - %2$s access by default - %3$d users"
+msgstr ""
+
+#: actions/showapplication.php:207
+msgid "Application actions"
+msgstr ""
+
+#: actions/showapplication.php:230
+msgid "Reset key & secret"
+msgstr "പുനഃക്രമീകരണ ചാവിയും രഹസ്യവും"
+
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
+msgid "Delete"
+msgstr "മായ്ക്കുക"
+
+#: actions/showapplication.php:255
+msgid "Application info"
+msgstr ""
+
+#: actions/showapplication.php:257
+msgid "Consumer key"
+msgstr ""
+
+#: actions/showapplication.php:262
+msgid "Consumer secret"
+msgstr "ഉപയോക്തൃ രഹസ്യം"
+
+#: actions/showapplication.php:267
+msgid "Request token URL"
+msgstr "അഭ്യർത്ഥനാ ചീട്ടിന്റെ യൂ.ആർ.എൽ."
+
+#: actions/showapplication.php:272
+msgid "Access token URL"
+msgstr "അഭിഗമ്യതാ ചീട്ടിന്റെ യൂ.ആർ.എൽ."
+
+#: actions/showapplication.php:277
+msgid "Authorize URL"
+msgstr "അംഗീകരണത്തിനുള്ള യൂ.ആർ.എൽ."
+
+#: actions/showapplication.php:282
+msgid ""
+"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
+"signature method."
+msgstr ""
+"ശ്രദ്ധിക്കുക: HMAC-SHA1 ഒപ്പുകളാണ് ഞങ്ങൾ പിന്തുണയ്ക്കുന്നത്. പ്ലെയിൻ-ടെക്സ്റ്റ് ഒപ്പ് രീതി ഞങ്ങൾ "
+"പിന്തുണയ്ക്കുന്നില്ല."
+
+#: actions/showapplication.php:302
+msgid "Are you sure you want to reset your consumer key and secret?"
+msgstr "ഉപയോക്തൃ ചാവിയും രഹസ്യവും പുനഃക്രമീകരണം എന്ന് താങ്കൾക്ക് തീർച്ചയാണോ?"
+
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
+#, php-format
+msgid "%1$s's favorite notices, page %2$d"
+msgstr "%1$s എന്ന ഉപയോക്താവിന് പ്രിയങ്കരങ്ങളായ അറിയിപ്പുകൾ, താൾ %2$d"
+
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
+msgid "Could not retrieve favorite notices."
+msgstr "പ്രിയങ്കരങ്ങളായ അറിയിപ്പുകൾ ശേഖരിക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
+#, php-format
+msgid "Feed for favorites of %s (RSS 1.0)"
+msgstr ""
+
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
+#, php-format
+msgid "Feed for favorites of %s (RSS 2.0)"
+msgstr ""
+
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
+#, php-format
+msgid "Feed for favorites of %s (Atom)"
+msgstr ""
+
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
+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 ""
+"താങ്കളിതുവരെ പ്രിയങ്കരങ്ങലായ അറിയിപ്പുകൾ തിരഞ്ഞെടുത്തിട്ടില്ല. താങ്കളിഷ്ടപ്പെടുന്ന "
+"അറിയിപ്പുകളിൽ പ്രിയങ്കരമെന്നു കുറിക്കാനുള്ള ബട്ടൺ ഞെക്കിയാൽ അവ ബുക്ക്മാർക്ക് ചെയ്യാനും "
+"അവയിലേയ്ക്ക് ശ്രദ്ധ ക്ഷണിക്കാനും സാധിക്കും."
+
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
+#, php-format
+msgid ""
+"%s hasn't added any favorite notices yet. Post something interesting they "
+"would add to their favorites :)"
+msgstr ""
+
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
+#, php-format
+msgid ""
+"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
+"action.register%%%%) and then post something interesting they would add to "
+"their favorites :)"
+msgstr ""
+
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
+msgid "This is a way to share what you like."
+msgstr "താങ്കളാഗ്രഹിക്കുന്നത് പങ്ക് വെയ്ക്കാനുള്ള ഒരു മാർഗ്ഗമാണിത്."
+
+#. TRANS: Page title for first group page. %s is a group name.
+#: actions/showgroup.php:75
+#, php-format
+msgid "%s group"
+msgstr "%s സംഘം"
+
+#. TRANS: Page title for any but first group page.
+#. TRANS: %1$s is a group name, $2$s is a page number.
+#: actions/showgroup.php:79
+#, php-format
+msgid "%1$s group, page %2$d"
+msgstr "%1$s സംഘം, താൾ %2$d"
+
+#. TRANS: Group profile header (h2). Text hidden by default.
+#: actions/showgroup.php:223
+msgid "Group profile"
+msgstr ""
+
+#. TRANS: Label for group URL (dt). Text hidden by default.
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
+msgid "URL"
+msgstr "യൂ.ആർ.എൽ."
+
+#. TRANS: Label for group description or group note (dt). Text hidden by default.
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
+msgid "Note"
+msgstr "കുറിപ്പ്"
+
+#. TRANS: Label for group aliases (dt). Text hidden by default.
+#: actions/showgroup.php:296 lib/groupeditform.php:180
+msgid "Aliases"
+msgstr ""
+
+#. TRANS: Group actions header (h2). Text hidden by default.
+#: actions/showgroup.php:313
+msgid "Group actions"
+msgstr "സംഘത്തിന്റെ പ്രവൃത്തികൾ"
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:357
+#, php-format
+msgid "Notice feed for %s group (RSS 1.0)"
+msgstr ""
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:364
+#, php-format
+msgid "Notice feed for %s group (RSS 2.0)"
+msgstr ""
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:371
+#, php-format
+msgid "Notice feed for %s group (Atom)"
+msgstr ""
+
+#. TRANS: Tooltip for feed link. %s is a group nickname.
+#: actions/showgroup.php:377
+#, php-format
+msgid "FOAF for %s group"
+msgstr ""
+
+#. TRANS: Header for mini list of group members on a group page (h2).
+#: actions/showgroup.php:414
+msgid "Members"
+msgstr "അംഗങ്ങൾ"
+
+#. TRANS: Description for mini list of group members on a group page when the group has no members.
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
+#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
+msgid "(None)"
+msgstr "(ഒന്നുമില്ല)"
+
+#. TRANS: Link to all group members from mini list of group members if group has more than n members.
+#: actions/showgroup.php:429
+msgid "All members"
+msgstr "എല്ലാ അംഗങ്ങളും"
+
+#. TRANS: Label for creation date in statistics on group page.
+#: actions/showgroup.php:465
+msgctxt "LABEL"
+msgid "Created"
+msgstr "സൃഷ്ടിച്ചിരിക്കുന്നു"
+
+#. TRANS: Label for member count in statistics on group page.
+#: actions/showgroup.php:473
+msgctxt "LABEL"
+msgid "Members"
+msgstr "അംഗങ്ങൾ"
+
+#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept new registrations.
+#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
+#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
+#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
+#: actions/showgroup.php:488
+#, 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 ""
+
+#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
+#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
+#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
+#: actions/showgroup.php:498
+#, 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 ""
+
+#. TRANS: Header for list of group administrators on a group page (h2).
+#: actions/showgroup.php:527
+msgid "Admins"
+msgstr "കാര്യനിർവാഹകർ"
+
+#. TRANS: Client error displayed requesting a single message that does not exist.
+#: actions/showmessage.php:76
+msgid "No such message."
+msgstr "അത്തരത്തിൽ ഒരു സന്ദേശമില്ല."
+
+#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
+#: actions/showmessage.php:86
+msgid "Only the sender and recipient may read this message."
+msgstr "അയച്ചയാൾക്കും സ്വീകർത്താവിനും മാത്രമേ ഈ സന്ദേശം വായിക്കാനാകൂ."
+
+#. TRANS: Page title for single direct message display when viewing user is the sender.
+#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
+#: actions/showmessage.php:105
+#, php-format
+msgid "Message to %1$s on %2$s"
+msgstr "%2$s സംരംഭത്തിൽ %1$s എന്ന ഉപയോക്താവിന് അയച്ച സന്ദേശങ്ങൾ"
+
+#. TRANS: Page title for single message display.
+#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
+#: actions/showmessage.php:113
+#, php-format
+msgid "Message from %1$s on %2$s"
+msgstr "%2$s സംരംഭത്തിൽ %1$s അയച്ച സന്ദേശങ്ങൾ"
+
+#: actions/shownotice.php:90
+msgid "Notice deleted."
+msgstr "അറിയിപ്പ് മായ്ച്ചിരിക്കുന്നു."
+
+#. TRANS: Page title showing tagged notices in one user's stream. %1$s is the username, %2$s is the hash tag.
+#: actions/showstream.php:70
+#, php-format
+msgid "%1$s tagged %2$s"
+msgstr ""
+
+#. TRANS: Page title showing tagged notices in one user's stream.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
+#: actions/showstream.php:74
+#, php-format
+msgid "%1$s tagged %2$s, page %3$d"
+msgstr ""
+
+#. TRANS: Extended page title showing tagged notices in one user's stream.
+#. TRANS: %1$s is the username, %2$d is the page number.
+#: actions/showstream.php:82
+#, php-format
+msgid "%1$s, page %2$d"
+msgstr "%1$s, താൾ %2$d"
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %1$s is a user nickname, %2$s is a hashtag.
+#: actions/showstream.php:127
+#, php-format
+msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)"
+msgstr ""
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %s is a user nickname.
+#: actions/showstream.php:136
+#, php-format
+msgid "Notice feed for %s (RSS 1.0)"
+msgstr ""
+
+#. TRANS: Title for link to notice feed.
+#. TRANS: %s is a user nickname.
+#: actions/showstream.php:145
+#, php-format
+msgid "Notice feed for %s (RSS 2.0)"
+msgstr ""
+
+#: actions/showstream.php:152
+#, php-format
+msgid "Notice feed for %s (Atom)"
+msgstr ""
+
+#. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend.
+#. TRANS: More information at http://www.foaf-project.org. %s is a user nickname.
+#: actions/showstream.php:159
+#, php-format
+msgid "FOAF for %s"
+msgstr ""
+
+#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname.
+#: actions/showstream.php:211
+#, php-format
+msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet."
+msgstr ""
+
+#. TRANS: Second sentence of empty list message for a stream for the user themselves.
+#: actions/showstream.php:217
+msgid ""
+"Seen anything interesting recently? You haven't posted any notices yet, now "
+"would be a good time to start :)"
+msgstr ""
+"താത്പര്യമുള്ളതെന്തോ ഈയിടെ കണ്ടെന്നു തോന്നുന്നു? താങ്കളിതുവരെയൊന്നും പ്രസിദ്ധീകരിച്ചില്ലല്ലോ, "
+"ഇപ്പോഴാണെന്നു തോന്നുന്നു നല്ല സമയം :)"
+
+#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:221
+#, php-format
+msgid ""
+"You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%"
+"%?status_textarea=%2$s)."
+msgstr ""
+
+#. TRANS: Announcement for anonymous users showing a stream if site registrations are open.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:264
+#, 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 ""
+"സ്വതന്ത്ര സോഫ്റ്റ്വേറായ [സ്റ്റാറ്റസ്നെറ്റ്](http://status.net/) ഉപകരണം ഉപയോഗിച്ച് [മൈക്രോ-"
+"ബ്ലോഗിങ്](http://en.wikipedia.org/wiki/Micro-blogging) സേവനം നൽകുന്ന %%site.name%"
+"% എന്ന സൈറ്റിൽ **%s** എന്നയാൾക്ക് അംഗത്വമുണ്ട്. **%s** എന്ന ഉപയോക്താവിന്റേയും മറ്റ് നിരവധി "
+"പേരുടേയും അറിയിപ്പുകൾ പിന്തുടരാൻ [ഇപ്പോൾ തന്നെ ചേരുക](%%action.register%%)! (കൂടുതൽ "
+"അറിയുക](%%doc.help%%))"
+
+#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only.
+#. TRANS: This message contains a Markdown link. Keep "](" together.
+#: actions/showstream.php:271
+#, 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 ""
+"സ്വതന്ത്ര സോഫ്റ്റ്വേറായ [സ്റ്റാറ്റസ്നെറ്റ്](http://status.net/) ഉപകരണം ഉപയോഗിച്ച് [മൈക്രോ-"
+"ബ്ലോഗിങ്](http://en.wikipedia.org/wiki/Micro-blogging) സേവനം നൽകുന്ന %%site.name%"
+"% എന്ന സൈറ്റിൽ **%s** എന്നയാൾക്ക് അംഗത്വമുണ്ട്. "
+
+#. TRANS: Link to the author of a repeated notice. %s is a linked nickname.
+#: actions/showstream.php:328
+#, php-format
+msgid "Repeat of %s"
+msgstr "%s എന്ന ഉപയോക്താവിന്റെ ആവർത്തനം"
+
+#: actions/silence.php:65 actions/unsilence.php:65
+msgid "You cannot silence users on this site."
+msgstr "ഈ സൈറ്റിലെ ഉപയോക്താക്കളെ താങ്കൾക്ക് നിശബ്ദരാക്കാനാകില്ല."
+
+#: actions/silence.php:72
+msgid "User is already silenced."
+msgstr "ഉപയോക്താവ് മുമ്പ് തന്നെ നിശബ്ദനാക്കപ്പെട്ടിരിക്കുന്നു."
+
+#: actions/siteadminpanel.php:69
+msgid "Basic settings for this StatusNet site"
+msgstr "ഈ സ്റ്റാറ്റസ്നെറ്റ് സൈറ്റിന്റെ അടിസ്ഥാന സജ്ജീകരണങ്ങൾ"
+
+#: actions/siteadminpanel.php:133
+msgid "Site name must have non-zero length."
+msgstr "സൈറ്റിന്റെ പേര് ശൂന്യമായിരിക്കരുത്."
+
+#: actions/siteadminpanel.php:141
+msgid "You must have a valid contact email address."
+msgstr "താങ്കളെ ബന്ധപ്പെടാനായി സാധുവായ ഇമെയിൽ വിലാസമുണ്ടായിരിക്കണം."
+
+#: actions/siteadminpanel.php:159
+#, php-format
+msgid "Unknown language \"%s\"."
+msgstr "അപരിചിതമായ ഭാഷ \"%s\"."
+
+#: actions/siteadminpanel.php:165
+msgid "Minimum text limit is 0 (unlimited)."
+msgstr "എഴുത്തുകളുടെ ഏറ്റവും ചെറിയ പരിധി 0 ആണ് (പരിധിയില്ല)."
+
+#: actions/siteadminpanel.php:171
+msgid "Dupe limit must be one or more seconds."
+msgstr ""
+
+#: actions/siteadminpanel.php:221
+msgid "General"
+msgstr "സാർവത്രികം"
+
+#: actions/siteadminpanel.php:224
+msgid "Site name"
+msgstr "സൈറ്റിന്റെ പേര്"
+
+#: actions/siteadminpanel.php:225
+msgid "The name of your site, like \"Yourcompany Microblog\""
+msgstr ""
+
+#: actions/siteadminpanel.php:229
+msgid "Brought by"
+msgstr ""
+
+#: actions/siteadminpanel.php:230
+msgid "Text used for credits link in footer of each page"
+msgstr ""
+
+#: actions/siteadminpanel.php:234
+msgid "Brought by URL"
+msgstr ""
+
+#: actions/siteadminpanel.php:235
+msgid "URL used for credits link in footer of each page"
+msgstr ""
+
+#: actions/siteadminpanel.php:239
+msgid "Contact email address for your site"
+msgstr ""
+
+#: actions/siteadminpanel.php:245
+msgid "Local"
+msgstr ""
+
+#: actions/siteadminpanel.php:256
+msgid "Default timezone"
+msgstr "സ്വതേ വേണ്ട സമയമേഖല"
+
+#: actions/siteadminpanel.php:257
+msgid "Default timezone for the site; usually UTC."
+msgstr "സൈറ്റിന്റെ സ്വതേയുള്ള സമയമേഖല; സാധാരണ ഗതിയിൽ യു.റ്റി.സി.."
+
+#: actions/siteadminpanel.php:262
+msgid "Default language"
+msgstr "സ്വതേ വേണ്ട ഭാഷ"
+
+#: actions/siteadminpanel.php:263
+msgid "Site language when autodetection from browser settings is not available"
+msgstr ""
+
+#: actions/siteadminpanel.php:271
+msgid "Limits"
+msgstr "പരിധികൾ"
+
+#: actions/siteadminpanel.php:274
+msgid "Text limit"
+msgstr "എഴുത്തിന്റെ പരിധി"
+
+#: actions/siteadminpanel.php:274
+msgid "Maximum number of characters for notices."
+msgstr "അറിയിപ്പുകളിലെ അക്ഷരങ്ങളുടെ പരമാവധി പരിധി."
+
+#: actions/siteadminpanel.php:278
+msgid "Dupe limit"
+msgstr ""
+
+#: actions/siteadminpanel.php:278
+msgid "How long users must wait (in seconds) to post the same thing again."
+msgstr ""
+"ഒരേ കാര്യം വീണ്ടും പ്രസിദ്ധീകരിക്കാൻ ഉപയോക്താക്കൾ എത്ര നേരമാണ് (സെക്കന്റുകളിൽ) "
+"കാത്തിരിക്കേണ്ടത്."
+
+#. TRANS: Page title for site-wide notice tab in admin panel.
+#: actions/sitenoticeadminpanel.php:55
+msgid "Site Notice"
+msgstr "സൈറ്റ് അറിയിപ്പ്"
+
+#. TRANS: Instructions for site-wide notice tab in admin panel.
+#: actions/sitenoticeadminpanel.php:66
+msgid "Edit site-wide message"
+msgstr ""
+
+#. TRANS: Server error displayed when saving a site-wide notice was impossible.
+#: actions/sitenoticeadminpanel.php:101
+msgid "Unable to save site notice."
+msgstr "സൈറ്റ് അറിയിപ്പ് സേവ് ചെയ്യാനായില്ല."
+
+#. TRANS: Client error displayed when a site-wide notice was longer than allowed.
+#: actions/sitenoticeadminpanel.php:112
+msgid "Maximum length for the site-wide notice is 255 characters."
+msgstr ""
+
+#. TRANS: Label for site-wide notice text field in admin panel.
+#: actions/sitenoticeadminpanel.php:176
+msgid "Site notice text"
+msgstr "സൈറ്റ് അറിയിപ്പ് എഴുത്ത്"
+
+#. TRANS: Tooltip for site-wide notice text field in admin panel.
+#: actions/sitenoticeadminpanel.php:179
+msgid "Site-wide notice text (255 characters maximum; HTML allowed)"
+msgstr ""
+
+#. TRANS: Title for button to save site notice in admin panel.
+#: actions/sitenoticeadminpanel.php:201
+msgid "Save site notice."
+msgstr "സൈറ്റ് അറിയിപ്പ് സേവ് ചെയ്യുക."
+
+#. TRANS: Title for SMS settings.
+#: actions/smssettings.php:57
+msgid "SMS settings"
+msgstr "എസ്.എം.എസ്. സജ്ജീകരണങ്ങൾ"
+
+#. TRANS: SMS settings page instructions.
+#. TRANS: %%site.name%% is the name of the site.
+#: actions/smssettings.php:71
+#, php-format
+msgid "You can receive SMS messages through email from %%site.name%%."
+msgstr ""
+"%%site.name%% സൈറ്റിൽ നിന്നും ഇമെയിൽ വഴി താങ്കൾക്ക് എസ്.എം.എസ്. സന്ദേശങ്ങൾ "
+"സ്വീകരിക്കാവുന്നതാണ്."
+
+#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
+#: actions/smssettings.php:93
+msgid "SMS is not available."
+msgstr "എസ്.എം.എസ്. ലഭ്യമല്ല."
+
+#. TRANS: Form legend for SMS settings form.
+#: actions/smssettings.php:107
+msgid "SMS address"
+msgstr "എസ്.എം.എസ്. വിലാസം"
+
+#. TRANS: Form guide in SMS settings form.
+#: actions/smssettings.php:116
+msgid "Current confirmed SMS-enabled phone number."
+msgstr "ഇപ്പോഴത്തെ സ്ഥിരീകരിച്ച എസ്.എം.എസ്. സജ്ജമായ ഫോൺ നമ്പർ."
+
+#. TRANS: Form guide in IM settings form.
+#: actions/smssettings.php:129
+msgid "Awaiting confirmation on this phone number."
+msgstr "ഈ ഫോൺ നമ്പരിൽ നിന്നുള്ള സ്ഥിരീകരണത്തിനായി കാക്കുന്നു."
+
+#. TRANS: Field label for SMS address input in SMS settings form.
+#: actions/smssettings.php:138
+msgid "Confirmation code"
+msgstr "സ്ഥിരീകരണ കോഡ്"
+
+#. TRANS: Form field instructions in SMS settings form.
+#: actions/smssettings.php:140
+msgid "Enter the code you received on your phone."
+msgstr "താങ്കളുടെ ഫോണിൽ ലഭിച്ച കോഡ് നൽകുക."
+
+#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
+#: actions/smssettings.php:144
+msgctxt "BUTTON"
+msgid "Confirm"
+msgstr "സ്ഥിരീകരിക്കുക"
+
+#. TRANS: Field label for SMS phone number input in SMS settings form.
+#: actions/smssettings.php:149
+msgid "SMS phone number"
+msgstr "എസ്.എം.എസ്. ഫോൺ നമ്പർ."
+
+#. TRANS: SMS phone number input field instructions in SMS settings form.
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
+msgstr "ഫോൺ നമ്പർ, വിരാമചിഹ്നമോ ഇടയോ ചേർക്കാതെ പ്രദേശത്തിന്റെ കോഡിനോടൊപ്പം നൽകുക."
+
+#. TRANS: Form legend for SMS preferences form.
+#: actions/smssettings.php:191
+msgid "SMS preferences"
+msgstr "എസ്.എം.എസ്. ക്രമീകരണങ്ങൾ"
+
+#. TRANS: Checkbox label in SMS preferences form.
+#: actions/smssettings.php:197
+msgid ""
+"Send me notices through SMS; I understand I may incur exorbitant charges "
+"from my carrier."
+msgstr ""
+
+#. TRANS: Confirmation message for successful SMS preferences save.
+#: actions/smssettings.php:308
+msgid "SMS preferences saved."
+msgstr "എസ്.എം.എസ്. ക്രമീകരണങ്ങൾ സേവ് ചെയ്യപ്പെട്ടിട്ടുണ്ട്."
+
+#. TRANS: Message given saving SMS phone number without having provided one.
+#: actions/smssettings.php:330
+msgid "No phone number."
+msgstr "ഫോൺ നമ്പർ നൽകിയിട്ടില്ല."
+
+#. TRANS: Message given saving SMS phone number without having selected a carrier.
+#: actions/smssettings.php:336
+msgid "No carrier selected."
+msgstr ""
+
+#. TRANS: Message given saving SMS phone number that is already set.
+#: actions/smssettings.php:344
+msgid "That is already your phone number."
+msgstr "അതാണ് താങ്കളുടെ ഫോൺ നമ്പരായി മുമ്പേ ഉള്ളത്."
+
+#. TRANS: Message given saving SMS phone number that is already set for another user.
+#: actions/smssettings.php:348
+msgid "That phone number already belongs to another user."
+msgstr "ആ ഫോൺ നമ്പർ മുമ്പേ തന്നെ മറ്റൊരു ഉപയോക്താവിന് അവകാശപ്പെട്ടതാണ്."
+
+#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
+#: actions/smssettings.php:376
+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 ""
+"താങ്കൾ നൽകിയ ഫോൺ നമ്പരിൽ ഒരു സ്ഥിരീകരണ കോഡ് അയച്ചിട്ടുണ്ട്. കോഡിനും അതെപ്രകാരം "
+"ഉപയോഗിക്കാമെന്ന മാർഗ്ഗനിർദ്ദേശങ്ങൾക്കും താങ്കളുടെ ഫോൺ പരിശോധിക്കുക."
+
+#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
+#: actions/smssettings.php:404
+msgid "That is the wrong confirmation number."
+msgstr "അത് തെറ്റായ സ്ഥിരീകരണ സംഖ്യയാണ്."
+
+#. TRANS: Message given after successfully canceling SMS phone number confirmation.
+#: actions/smssettings.php:418
+msgid "SMS confirmation cancelled."
+msgstr "എസ്.എം.എസ്. സ്ഥിരീകരണം റദ്ദാക്കി."
+
+#. TRANS: Message given trying to remove an SMS phone number that is not
+#. TRANS: registered for the active user.
+#: actions/smssettings.php:438
+msgid "That is not your phone number."
+msgstr "അത് താങ്കളുടെ ഫോൺ നമ്പരല്ല."
+
+#. TRANS: Message given after successfully removing a registered SMS phone number.
+#: actions/smssettings.php:460
+msgid "The SMS phone number was removed."
+msgstr "എസ്.എം.എസ്. ഫോൺ നമ്പർ നീക്കം ചെയ്തിരിക്കുന്നു."
+
+#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
+#: actions/smssettings.php:499
+msgid "Mobile carrier"
+msgstr ""
+
+#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
+#: actions/smssettings.php:504
+msgid "Select a carrier"
+msgstr ""
+
+#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
+#. TRANS: %s is an administrative contact's e-mail address.
+#: actions/smssettings.php:513
+#, 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 ""
+
+#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
+#: actions/smssettings.php:535
+msgid "No code entered."
+msgstr "യാതൊരു കോഡും നൽകിയിട്ടില്ല."
+
+#. TRANS: Menu item for site administration
+#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
+#: lib/adminpanelaction.php:395
+msgid "Snapshots"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:65
+msgid "Manage snapshot configuration"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:127
+msgid "Invalid snapshot run value."
+msgstr ""
+
+#: actions/snapshotadminpanel.php:133
+msgid "Snapshot frequency must be a number."
+msgstr ""
+
+#: actions/snapshotadminpanel.php:144
+msgid "Invalid snapshot report URL."
+msgstr ""
+
+#: actions/snapshotadminpanel.php:200
+msgid "Randomly during web hit"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:201
+msgid "In a scheduled job"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:206
+msgid "Data snapshots"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:208
+msgid "When to send statistical data to status.net servers"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:217
+msgid "Frequency"
+msgstr "ആവൃതി"
+
+#: actions/snapshotadminpanel.php:218
+msgid "Snapshots will be sent once every N web hits"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:226
+msgid "Report URL"
+msgstr "യൂ.ആർ.എൽ. അറിയിക്കുക"
+
+#: actions/snapshotadminpanel.php:227
+msgid "Snapshots will be sent to this URL"
+msgstr ""
+
+#: actions/snapshotadminpanel.php:248
+msgid "Save snapshot settings"
+msgstr ""
+
+#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile.
+#: actions/subedit.php:75
+msgid "You are not subscribed to that profile."
+msgstr ""
+
+#. TRANS: Server error displayed when updating a subscription fails with a database error.
+#. TRANS: Exception thrown when a subscription could not be stored on the server.
+#: actions/subedit.php:89 classes/Subscription.php:141
+msgid "Could not save subscription."
+msgstr ""
+
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
+#: actions/subscribe.php:77
+msgid "This action only accepts POST requests."
+msgstr ""
+
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
+msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
+msgstr ""
+
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
+msgid "Subscribed"
+msgstr ""
+
+#. TRANS: Header for list of subscribers for a user (first page).
+#. TRANS: %s is the user's nickname.
+#: actions/subscribers.php:51
+#, php-format
+msgid "%s subscribers"
+msgstr "%s വരിക്കാർ"
+
+#. TRANS: Header for list of subscribers for a user (not first page).
+#. TRANS: %1$s is the user's nickname, $2$d is the page number.
+#: actions/subscribers.php:55
+#, php-format
+msgid "%1$s subscribers, page %2$d"
+msgstr "%1$s എന്ന ഉപയോക്താവിന്റെ വരിക്കാർ, താൾ %2$d"
+
+#. TRANS: Page notice for page with an overview of all subscribers
+#. TRANS: of the logged in user's own profile.
+#: actions/subscribers.php:68
+msgid "These are the people who listen to your notices."
+msgstr "ഈ ആൾക്കാരാണ് താങ്കളുടെ അറിയിപ്പുകൾ ശ്രദ്ധിക്കുന്നത്."
+
+#. TRANS: Page notice for page with an overview of all subscribers of a user other
+#. TRANS: than the logged in user. %s is the user nickname.
+#: actions/subscribers.php:74
+#, php-format
+msgid "These are the people who listen to %s's notices."
+msgstr "ഈ ആൾക്കാരാണ് %s എന്ന ഉപയോക്താവിന്റെ അറിയിപ്പുകൾ ശ്രദ്ധിക്കുന്നത്."
+
+#. TRANS: Subscriber list text when the logged in user has no subscribers.
+#: actions/subscribers.php:114
+msgid ""
+"You have no subscribers. Try subscribing to people you know and they might "
+"return the favor."
+msgstr ""
+"താങ്കൾക്ക് ഇതുവരെ വരിക്കാരില്ല. താങ്കൾക്കറിയാവുന്ന ചിലരുടെ വരിക്കാരനാകുക, അവർ മിക്കവാറും "
+"തിരിച്ചും ചെയ്യാനിടയുണ്ട്."
+
+#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
+#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
+#: actions/subscribers.php:118
+#, php-format
+msgid "%s has no subscribers. Want to be the first?"
+msgstr "%s എന്ന ഉപയോക്താവിന് വരിക്കാരില്ല. ആദ്യത്തെ ആളാകുന്നോ?"
+
+#. TRANS: Subscriber list text when looking at the subscribers for a of a user that has none
+#. TRANS: as an anonymous user. %s is the user nickname.
+#. TRANS: This message contains a Markdown URL. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/subscribers.php:127
+#, php-format
+msgid ""
+"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
+"%) and be the first?"
+msgstr ""
+"%s എന്ന ഉപയോക്താവിന് വരിക്കാരില്ല. എന്തുകൊണ്ട് [ഒരംഗത്വം എടുക്കുകയും](%%%%action.register%%"
+"%%) ആദ്യത്തെ ആളാവുകയും ചെയ്തുകൂട?"
+
+#. TRANS: Header for subscriptions overview for a user (not first page).
+#. TRANS: %1$s is a user nickname, %2$d is the page number.
+#: actions/subscriptions.php:55
+#, php-format
+msgid "%1$s subscriptions, page %2$d"
+msgstr "%1$s വരിക്കാരാകലുകൾ, താൾ %2$d"
+
+#. TRANS: Page notice for page with an overview of all subscriptions
+#. TRANS: of the logged in user's own profile.
+#: actions/subscriptions.php:68
+msgid "These are the people whose notices you listen to."
+msgstr "ഈ ആൾക്കാരുടെ അറിയിപ്പുകളാണ് താങ്കൾ ശ്രദ്ധിക്കുന്നത്."
+
+#. TRANS: Page notice for page with an overview of all subscriptions of a user other
+#. TRANS: than the logged in user. %s is the user nickname.
+#: actions/subscriptions.php:74
+#, php-format
+msgid "These are the people whose notices %s listens to."
+msgstr "ഈ ആൾക്കാരുടെ അറിയിപ്പുകളാണ് %s ശ്രദ്ധിക്കുന്നത്."
+
+#. TRANS: Subscription list text when the logged in user has no subscriptions.
+#. TRANS: This message contains Markdown URLs. The link description is between
+#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
+#. TRANS: and do not change the URL part.
+#: actions/subscriptions.php:133
+#, php-format
+msgid ""
+"You're not listening to anyone's notices right now, try subscribing to "
+"people you know. Try [people search](%%action.peoplesearch%%), look for "
+"members in groups you're interested in and in our [featured users](%%action."
+"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can "
+"automatically subscribe to people you already follow there."
+msgstr ""
+
+#. TRANS: Subscription list text when looking at the subscriptions for a of a user other
+#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
+#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
+#. TRANS: as an anonymous user. %s is the user nickname.
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
+#, php-format
+msgid "%s is not listening to anyone."
+msgstr "%s ആരേയും ശ്രദ്ധിക്കുന്നില്ല."
+
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
+msgid "Subscription feed for %s (Atom)"
+msgstr ""
+
+#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
+#: actions/subscriptions.php:239
+msgid "Jabber"
+msgstr "ജാബ്ബർ"
+
+#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
+#: actions/subscriptions.php:254
+msgid "SMS"
+msgstr "എസ്.എം.എസ്."
+
+#: actions/tag.php:69
+#, php-format
+msgid "Notices tagged with %1$s, page %2$d"
+msgstr ""
+
+#: actions/tag.php:87
+#, php-format
+msgid "Notice feed for tag %s (RSS 1.0)"
+msgstr ""
+
+#: actions/tag.php:93
+#, php-format
+msgid "Notice feed for tag %s (RSS 2.0)"
+msgstr ""
+
+#: actions/tag.php:99
+#, php-format
+msgid "Notice feed for tag %s (Atom)"
+msgstr ""
+
+#: actions/tagother.php:39
+msgid "No ID argument."
+msgstr ""
+
+#: actions/tagother.php:65
+#, php-format
+msgid "Tag %s"
+msgstr "റ്റാഗ് %s"
+
+#. TRANS: H2 for user profile information.
+#: actions/tagother.php:77 lib/userprofile.php:76
+msgid "User profile"
+msgstr ""
+
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
+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:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "അസാധുവായ റ്റാഗ്: \"%s\""
+
+#: actions/tagother.php:193
+msgid ""
+"You can only tag people you are subscribed to or who are subscribed to you."
+msgstr ""
+
+#: 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 "അത്തരത്തിൽ ഒരു റ്റാഗില്ല."
+
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
+#: actions/unblock.php:59
+msgid "You haven't blocked that user."
+msgstr ""
+
+#: actions/unsandbox.php:72
+msgid "User is not sandboxed."
+msgstr ""
+
+#: actions/unsilence.php:72
+msgid "User is not silenced."
+msgstr ""
+
+#: actions/unsubscribe.php:77
+msgid "No profile ID in request."
+msgstr ""
+
+#: actions/unsubscribe.php:98
+msgid "Unsubscribed"
+msgstr ""
+
+#: actions/updateprofile.php:64
+#, php-format
+msgid ""
+"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
+msgstr ""
+
+#. TRANS: User admin panel title
+#: actions/useradminpanel.php:58
+msgctxt "TITLE"
+msgid "User"
+msgstr "ഉപയോക്താവ്"
+
+#. TRANS: Instruction for user admin panel.
+#: actions/useradminpanel.php:69
+msgid "User settings for this StatusNet site"
+msgstr "ഈ സ്റ്റാറ്റസ്നെറ്റ് സൈറ്റിന്റെ ഉപയോക്തൃ സജ്ജീകരണങ്ങൾ"
+
+#. TRANS: Form validation error in user admin panel when a non-numeric character limit was set.
+#: actions/useradminpanel.php:147
+msgid "Invalid bio limit. Must be numeric."
+msgstr ""
+
+#. TRANS: Form validation error in user admin panel when welcome text is too long.
+#: actions/useradminpanel.php:154
+msgid "Invalid welcome text. Maximum length is 255 characters."
+msgstr ""
+
+#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
+#. TRANS: users in user admin panel. %1$s is the invalid nickname.
+#: actions/useradminpanel.php:166
+#, php-format
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
+msgstr ""
+
+#. TRANS: Link description in user account settings menu.
+#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
+msgid "Profile"
+msgstr ""
+
+#. TRANS: Field label in user admin panel for setting the character limit for the bio field.
+#: actions/useradminpanel.php:220
+msgid "Bio Limit"
+msgstr ""
+
+#. TRANS: Tooltip in user admin panel for setting the character limit for the bio field.
+#: actions/useradminpanel.php:222
+msgid "Maximum length of a profile bio in characters."
+msgstr ""
+
+#. TRANS: Form legend in user admin panel.
+#: actions/useradminpanel.php:231
+msgid "New users"
+msgstr "പുതിയ ഉപയോക്താക്കൾ"
+
+#. TRANS: Field label in user admin panel for setting new user welcome text.
+#: actions/useradminpanel.php:236
+msgid "New user welcome"
+msgstr "പുതിയ ഉപയോക്താവിനുള്ള സ്വാഗതം"
+
+#. TRANS: Tooltip in user admin panel for setting new user welcome text.
+#: actions/useradminpanel.php:238
+msgid "Welcome text for new users (maximum 255 characters)."
+msgstr "പുതിയ ഉപയോക്താക്കൾക്കുള്ള സ്വാഗത സന്ദേശം (പരമാവധി 255 അക്ഷരങ്ങൾ)."
+
+#. TRANS: Field label in user admin panel for setting default subscription for new users.
+#: actions/useradminpanel.php:244
+msgid "Default subscription"
+msgstr ""
+
+#. TRANS: Tooltip in user admin panel for setting default subscription for new users.
+#: actions/useradminpanel.php:246
+msgid "Automatically subscribe new users to this user."
+msgstr ""
+
+#. TRANS: Form legend in user admin panel.
+#: actions/useradminpanel.php:256
+msgid "Invitations"
+msgstr "ക്ഷണങ്ങൾ"
+
+#. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail.
+#: actions/useradminpanel.php:262
+msgid "Invitations enabled"
+msgstr "ക്ഷണിക്കൽ സജ്ജമാക്കിയിരിക്കുന്നു"
+
+#. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail.
+#: actions/useradminpanel.php:265
+msgid "Whether to allow users to invite new users."
+msgstr "പുതിയ ഉപയോക്താക്കളെ ക്ഷണിക്കാൻ ഉപയോക്താക്കളെ അനുവദിക്കേണ്ടതുണ്ടോ."
+
+#. TRANS: Title for button to save user settings in user admin panel.
+#: actions/useradminpanel.php:302
+msgid "Save user settings."
+msgstr "ഉപയോക്തൃ സജ്ജീകരണങ്ങൾ സേവ് ചെയ്യുക."
+
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
+msgid "Authorize subscription"
+msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കുക"
+
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+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 ""
+
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
+#. TRANS: Menu item for site administration
+#: actions/userauthorization.php:207 actions/version.php:167
+#: lib/adminpanelaction.php:403
+msgid "License"
+msgstr "അനുമതി"
+
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
+msgid "Accept"
+msgstr "സ്വീകരിക്കുക"
+
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
+msgstr "ഈ ഉപയോക്താവിന്റെ വരിക്കാരൻ/വരിക്കാരി ആകുക."
+
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
+msgid "Reject"
+msgstr "നിരസിക്കുക"
+
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
+msgstr "ഈ വരിക്കാരനാകൽ നിരസിക്കുക."
+
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
+msgid "No authorization request!"
+msgstr ""
+
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
+msgid "Subscription authorized"
+msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കപ്പെട്ടു"
+
+#: actions/userauthorization.php:274
+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 ""
+
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
+msgid "Subscription rejected"
+msgstr "വരിക്കാരനാകൽ നിരസിക്കപ്പെട്ടു"
+
+#: actions/userauthorization.php:288
+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 ""
+
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, php-format
+msgid "Listener URI \"%s\" not found here."
+msgstr ""
+
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
+msgstr "സ്രോതസ്സ് യൂ.ആർ.എൽ. വളരെ വലുതാണ്."
+
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, php-format
+msgid "Listenee URI \"%s\" is a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, php-format
+msgid "Profile URL \"%s\" is for a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"അറിയിപ്പിന്റെ ഉപയോഗാനുമതിയായ് ‘%1$s’ സൈറ്റിന്റെ ഉപയോഗാനുമതിയായ ‘%2$s’ എന്നതുമായി "
+"ചേർന്നു പോകുന്നില്ല."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "സ്രോതസ്സ് യൂ.ആർ.എൽ. അസാധുവാണ്."
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, php-format
+msgid "Cannot read avatar URL \"%s\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
+msgstr ""
+
+#. TRANS: Page title for profile design page.
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
+msgid "Profile design"
+msgstr ""
+
+#. TRANS: Instructions for profile design page.
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
+msgid ""
+"Customize the way your profile looks with a background image and a colour "
+"palette of your choice."
+msgstr ""
+
+#: actions/userdesignsettings.php:272
+msgid "Enjoy your hotdog!"
+msgstr "താങ്കളുടെ ഹോട്ട്ഡോഗ് ആസ്വദിക്കൂ!"
+
+#. TRANS: Message is used as a page title. %1$s is a nick name, %2$d is a page number.
+#: actions/usergroups.php:66
+#, php-format
+msgid "%1$s groups, page %2$d"
+msgstr "%1$s സംഘങ്ങൾ, താൾ %2$d"
+
+#: actions/usergroups.php:132
+msgid "Search for more groups"
+msgstr "കൂടുതൽ സംഘങ്ങൾക്കായി തിരയുക"
+
+#: actions/usergroups.php:159
+#, php-format
+msgid "%s is not a member of any group."
+msgstr "%s എന്ന ഉപയോക്താവ് ഒരു സംഘത്തിലേയും അംഗമല്ല."
+
+#: actions/usergroups.php:164
+#, php-format
+msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
+msgstr "[സംഘങ്ങൾ തിരയുക](%%action.groupsearch%%), അവയിൽ ചേരുക."
+
+#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
+#. TRANS: Message is used as a subtitle in atom group notice feed.
+#. TRANS: %1$s is a group name, %2$s is a site name.
+#. TRANS: Message is used as a subtitle in atom user notice feed.
+#. TRANS: %1$s is a user name, %2$s is a site name.
+#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
+#: lib/atomusernoticefeed.php:95
+#, php-format
+msgid "Updates from %1$s on %2$s!"
+msgstr ""
+
+#: actions/version.php:75
+#, php-format
+msgid "StatusNet %s"
+msgstr "സ്റ്റാറ്റസ്നെറ്റ് %s"
+
+#: actions/version.php:155
+#, php-format
+msgid ""
+"This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, "
+"Inc. and contributors."
+msgstr ""
+
+#: actions/version.php:163
+msgid "Contributors"
+msgstr "സംഭാവന ചെയ്തവർ"
+
+#: actions/version.php:170
+msgid ""
+"StatusNet is free software: you can redistribute it and/or modify it under "
+"the terms of the GNU Affero General Public License as published by the Free "
+"Software Foundation, either version 3 of the License, or (at your option) "
+"any later version. "
+msgstr ""
+
+#: actions/version.php:176
+msgid ""
+"This program is distributed in the hope that it will be useful, but WITHOUT "
+"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
+"FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License "
+"for more details. "
+msgstr ""
+
+#: actions/version.php:182
+#, php-format
+msgid ""
+"You should have received a copy of the GNU Affero General Public License "
+"along with this program. If not, see %s."
+msgstr ""
+
+#: actions/version.php:191
+msgid "Plugins"
+msgstr "പ്ലഗിനുകൾ"
+
+#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
+#: actions/version.php:198 lib/action.php:898
+msgid "Version"
+msgstr "പതിപ്പ്"
+
+#: actions/version.php:199
+msgid "Author(s)"
+msgstr "രചയിതാവ് (രചയിതാക്കൾ)"
+
+#. TRANS: Activity title when marking a notice as favorite.
+#: classes/Fave.php:164
+msgid "Favor"
+msgstr ""
+
+#. TRANS: Ntofication given when a user marks a notice as favorite.
+#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
+#: classes/Fave.php:167
+#, php-format
+msgid "%1$s marked notice %2$s as a favorite."
+msgstr ""
+
+#. TRANS: Server exception thrown when a URL cannot be processed.
+#: classes/File.php:162
+#, php-format
+msgid "Cannot process URL '%s'"
+msgstr ""
+
+#. TRANS: Server exception thrown when... Robin thinks something is impossible!
+#: classes/File.php:194
+msgid "Robin thinks something is impossible."
+msgstr "ചിലത് അസാധ്യമാണെന്നാണ് റോബിനും സന്ദേശം പരിഭാഷ ചെയ്ത പ്രവീണും കരുതുന്നത്."
+
+#. TRANS: Message given if an upload is larger than the configured maximum.
+#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
+#. TRANS: %1$s is used for plural.
+#: classes/File.php:210
+#, php-format
+msgid ""
+"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
+"Try to upload a smaller version."
+msgid_plural ""
+"No file may be larger than %1$d bytes and the file you sent was %2$d bytes. "
+"Try to upload a smaller version."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Message given if an upload would exceed user quota.
+#. TRANS: %d (number) is the user quota in bytes and is used for plural.
+#: classes/File.php:223
+#, php-format
+msgid "A file this large would exceed your user quota of %d byte."
+msgid_plural "A file this large would exceed your user quota of %d bytes."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Message given id an upload would exceed a user's monthly quota.
+#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
+#: classes/File.php:235
+#, php-format
+msgid "A file this large would exceed your monthly quota of %d byte."
+msgid_plural "A file this large would exceed your monthly quota of %d bytes."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Client exception thrown if a file upload does not have a valid name.
+#: classes/File.php:282 classes/File.php:297
+msgid "Invalid filename."
+msgstr "പ്രമാണത്തിന്റെ പേര് അസാധുവാണ്."
+
+#. TRANS: Exception thrown when joining a group fails.
+#: classes/Group_member.php:51
+msgid "Group join failed."
+msgstr "സംഘത്തിൽ ചേരൽ പരാജയപ്പെട്ടു."
+
+#. TRANS: Exception thrown when trying to leave a group the user is not a member of.
+#: classes/Group_member.php:64
+msgid "Not part of group."
+msgstr "സംഘത്തിന്റെ ഭാഗമല്ല."
+
+#. TRANS: Exception thrown when trying to leave a group fails.
+#: classes/Group_member.php:72
+msgid "Group leave failed."
+msgstr "സംഘത്തിൽ നിന്നും ഒഴിവാകൽ പരാജയപ്പെട്ടിരിക്കുന്നു."
+
+#. TRANS: Exception thrown providing an invalid profile ID.
+#. TRANS: %s is the invalid profile ID.
+#: classes/Group_member.php:85
+#, php-format
+msgid "Profile ID %s is invalid."
+msgstr ""
+
+#. TRANS: Exception thrown providing an invalid group ID.
+#. TRANS: %s is the invalid group ID.
+#: classes/Group_member.php:98
+#, php-format
+msgid "Group ID %s is invalid."
+msgstr ""
+
+#. TRANS: Activity title.
+#: classes/Group_member.php:147 lib/joinform.php:114
+msgid "Join"
+msgstr "ഭാഗഭാക്കാകുക"
+
+#. TRANS: Success message for subscribe to group attempt through OStatus.
+#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
+#: classes/Group_member.php:151
+#, php-format
+msgid "%1$s has joined group %2$s."
+msgstr ""
+
+#. TRANS: Server exception thrown when updating a local group fails.
+#: classes/Local_group.php:42
+msgid "Could not update local group."
+msgstr ""
+
+#. TRANS: Exception thrown when trying creating a login token failed.
+#. TRANS: %s is the user nickname for which token creation failed.
+#: classes/Login_token.php:78
+#, php-format
+msgid "Could not create login token for %s"
+msgstr ""
+
+#. TRANS: Exception thrown when database name or Data Source Name could not be found.
+#: classes/Memcached_DataObject.php:542
+msgid "No database name or DSN found anywhere."
+msgstr ""
+
+#. TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them.
+#: classes/Message.php:45
+msgid "You are banned from sending direct messages."
+msgstr "നേരിട്ടുള്ള സന്ദേശങ്ങൾ അയക്കുന്നതിൽ നിന്നും താങ്കൾ തടയപ്പെട്ടിരിക്കുന്നു."
+
+#. TRANS: Message given when a message could not be stored on the server.
+#: classes/Message.php:69
+msgid "Could not insert message."
+msgstr "സന്ദേശം ഉൾപ്പെടുത്താൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Message given when a message could not be updated on the server.
+#: classes/Message.php:80
+msgid "Could not update message with new URI."
+msgstr ""
+
+#. TRANS: Server exception thrown when a user profile for a notice cannot be found.
+#. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number).
+#: classes/Notice.php:98
+#, php-format
+msgid "No such profile (%1$d) for notice (%2$d)."
+msgstr ""
+
+#. TRANS: Server exception. %s are the error details.
+#: classes/Notice.php:199
+#, php-format
+msgid "Database error inserting hashtag: %s"
+msgstr ""
+
+#. TRANS: Client exception thrown if a notice contains too many characters.
+#: classes/Notice.php:279
+msgid "Problem saving notice. Too long."
+msgstr "അറിയിപ്പ് സേവ് ചെയ്യുന്നതിൽ കുഴപ്പമുണ്ടായി. അധികം വലിപ്പം."
+
+#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
+#: classes/Notice.php:284
+msgid "Problem saving notice. Unknown user."
+msgstr "അറിയിപ്പ് സേവ് ചെയ്യുന്നതിൽ കുഴപ്പമുണ്ടായി. അപരിചിത ഉപയോക്താവ്."
+
+#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
+#: classes/Notice.php:290
+msgid ""
+"Too many notices too fast; take a breather and post again in a few minutes."
+msgstr ""
+"നിരവധി അറിയിപ്പുകൾ തുടരെ നൽകിയിരിക്കുന്നു; ഒന്നു ചുറ്റിനടന്നിട്ട് ഏതാനം മിനിറ്റുകൾക്കു ശേഷം "
+"പ്രസിദ്ധീകരിക്കൂ."
+
+#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
+#: classes/Notice.php:297
+msgid ""
+"Too many duplicate messages too quickly; take a breather and post again in a "
+"few minutes."
+msgstr ""
+"നിരവധി പകർപ്പ് സന്ദേശങ്ങൾ തുടരെ നൽകിയിരിക്കുന്നു; ഒന്നു ചുറ്റിനടന്നിട്ട് ഏതാനം മിനിറ്റുകൾക്കു "
+"ശേഷം പ്രസിദ്ധീകരിക്കൂ."
+
+#. TRANS: Client exception thrown when a user tries to post while being banned.
+#: classes/Notice.php:305
+msgid "You are banned from posting notices on this site."
+msgstr "ഈ സൈറ്റിൽ അറിയിപ്പുകൾ പ്രസിദ്ധീകരിക്കുന്നതിൽ നിന്നും താങ്കൾ തടയപ്പെട്ടിരിക്കുന്നു."
+
+#. TRANS: Server exception thrown when a notice cannot be saved.
+#. TRANS: Server exception thrown when a notice cannot be updated.
+#: classes/Notice.php:372 classes/Notice.php:399
+msgid "Problem saving notice."
+msgstr "അറിയിപ്പ് സേവ് ചെയ്യുന്നതിൽ പിഴവുണ്ടായി."
+
+#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
+#: classes/Notice.php:929
+msgid "Bad type provided to saveKnownGroups."
+msgstr ""
+
+#. TRANS: Server exception thrown when an update for a group inbox fails.
+#: classes/Notice.php:1028
+msgid "Problem saving group inbox."
+msgstr "സംഘത്തിന്റെ ഇൻബോക്സ് സേവ് ചെയ്യുന്നതിൽ പ്രശ്നമുണ്ടായി."
+
+#. TRANS: Server exception thrown when a reply cannot be saved.
+#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
+#: classes/Notice.php:1142
+#, php-format
+msgid "Could not save reply for %1$d, %2$d."
+msgstr " %2$d, %1$d എന്ന അറിയിപ്പിനുള്ള മറുപടി സേവ് ചെയ്യാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
+#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
+#: classes/Notice.php:1661
+#, php-format
+msgid "RT @%1$s %2$s"
+msgstr ""
+
+#. TRANS: Full name of a profile or group followed by nickname in parens
+#: classes/Profile.php:172 classes/User_group.php:242
+#, php-format
+msgctxt "FANCYNAME"
+msgid "%1$s (%2$s)"
+msgstr ""
+
+#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
+#. TRANS: %1$s is the role name, %2$s is the user ID (number).
+#: classes/Profile.php:775
+#, php-format
+msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
+#. TRANS: %1$s is the role name, %2$s is the user ID (number).
+#: classes/Profile.php:784
+#, php-format
+msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
+msgstr ""
+
+#. TRANS: Exception thrown when a right for a non-existing user profile is checked.
+#: classes/Remote_profile.php:54
+msgid "Missing profile."
+msgstr ""
+
+#. TRANS: Exception thrown when a tag cannot be saved.
+#: classes/Status_network.php:338
+msgid "Unable to save tag."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
+#: classes/Subscription.php:77 lib/oauthstore.php:482
+msgid "You have been banned from subscribing."
+msgstr ""
+
+#. TRANS: Exception thrown when trying to subscribe while already subscribed.
+#: classes/Subscription.php:82
+msgid "Already subscribed!"
+msgstr ""
+
+#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user.
+#: classes/Subscription.php:87
+msgid "User has blocked you."
+msgstr "ഉപയോക്താവ് താങ്കളെ തടഞ്ഞിരിക്കുന്നു."
+
+#. TRANS: Exception thrown when trying to unsibscribe without a subscription.
+#: classes/Subscription.php:176
+msgid "Not subscribed!"
+msgstr ""
+
+#. TRANS: Exception thrown when trying to unsubscribe a user from themselves.
+#: classes/Subscription.php:183
+msgid "Could not delete self-subscription."
+msgstr ""
+
+#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server.
+#: classes/Subscription.php:211
+msgid "Could not delete subscription OMB token."
+msgstr ""
+
+#. TRANS: Exception thrown when a subscription could not be deleted on the server.
+#: classes/Subscription.php:223
+msgid "Could not delete subscription."
+msgstr ""
+
+#. TRANS: Activity tile when subscribing to another person.
+#: classes/Subscription.php:265
+msgid "Follow"
+msgstr "പിന്തുടരുക"
+
+#. TRANS: Notification given when one person starts following another.
+#. TRANS: %1$s is the subscriber, %2$s is the subscribed.
+#: classes/Subscription.php:268
+#, php-format
+msgid "%1$s is now following %2$s."
+msgstr "%1$s ഇപ്പോൾ %2$s എന്ന ഉപയോക്താവിനെ പിന്തുടരുന്നു."
+
+#. TRANS: Notice given on user registration.
+#. TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
+#: classes/User.php:395
+#, php-format
+msgid "Welcome to %1$s, @%2$s!"
+msgstr "%1$s സൈറ്റിലേയ്ക്ക് സ്വാഗതം, @%2$s!"
+
+#. TRANS: Server exception.
+#: classes/User.php:918
+msgid "No single user defined for single-user mode."
+msgstr ""
+
+#. TRANS: Server exception.
+#: classes/User.php:922
+msgid "Single-user mode code called when not enabled."
+msgstr ""
+
+#. TRANS: Server exception thrown when creating a group failed.
+#: classes/User_group.php:522
+msgid "Could not create group."
+msgstr "സംഘം സൃഷ്ടിക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Server exception thrown when updating a group URI failed.
+#: classes/User_group.php:532
+msgid "Could not set group URI."
+msgstr ""
+
+#. TRANS: Server exception thrown when setting group membership failed.
+#: classes/User_group.php:555
+msgid "Could not set group membership."
+msgstr "സംഘ അംഗത്വം സജ്ജീകരിച്ചിട്ടില്ല."
+
+#. TRANS: Server exception thrown when saving local group information failed.
+#: classes/User_group.php:570
+msgid "Could not save local group info."
+msgstr "പ്രാദേശിക സംഘത്തിന്റെ വിവരങ്ങൾ സേവ് ചെയ്യാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr "%s എന്ന അംഗത്വം കണ്ടെത്താനായില്ല."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:104
+msgid "Change your profile settings"
+msgstr ""
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:111
+msgid "Upload an avatar"
+msgstr ""
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:118
+msgid "Change your password"
+msgstr "താങ്കളുടെ രഹസ്യവാക്ക് മാറ്റുക"
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:125
+msgid "Change email handling"
+msgstr "ഇമെയിൽ കൈകാര്യരീതിയിൽ മാറ്റം വരുത്തുക"
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:132
+msgid "Design your profile"
+msgstr ""
+
+#. TRANS: Link title attribute in user account settings menu.
+#: lib/accountsettingsaction.php:139
+msgid "Other options"
+msgstr "മറ്റ് ഐച്ഛികങ്ങൾ"
+
+#. TRANS: Link description in user account settings menu.
+#: lib/accountsettingsaction.php:141
+msgid "Other"
+msgstr "മറ്റുള്ളവ"
+
+#. TRANS: Page title. %1$s is the title, %2$s is the site name.
+#: lib/action.php:161
+#, php-format
+msgid "%1$s - %2$s"
+msgstr ""
+
+#. TRANS: Page title for a page without a title set.
+#: lib/action.php:177
+msgid "Untitled page"
+msgstr "തലക്കെട്ടില്ലാത്ത താൾ"
+
+#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
+#: lib/action.php:325
+msgctxt "TOOLTIP"
+msgid "Show more"
+msgstr "കൂടുതൽ പ്രദർശിപ്പിക്കുക"
+
+#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
+#: lib/action.php:544
+msgid "Primary site navigation"
+msgstr ""
+
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
+msgctxt "TOOLTIP"
+msgid "Personal profile and friends timeline"
+msgstr ""
+
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
+msgctxt "MENU"
+msgid "Personal"
+msgstr "വ്യക്തിപരം"
+
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
+msgctxt "TOOLTIP"
+msgid "Change your email, avatar, password, profile"
+msgstr ""
+
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
+msgid "Account"
+msgstr "അംഗത്വം"
+
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
+msgctxt "TOOLTIP"
+msgid "Connect to services"
+msgstr "സേവനങ്ങളിൽ ബന്ധപ്പെടുക"
+
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
+msgid "Connect"
+msgstr "ബന്ധപ്പെടുക"
+
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
+msgctxt "TOOLTIP"
+msgid "Change site configuration"
+msgstr "സൈറ്റ് ക്രമീകരണങ്ങൾ മാറ്റുക"
+
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/action.php:569 lib/groupnav.php:117
+msgctxt "MENU"
+msgid "Admin"
+msgstr "കാര്യനിർവാഹക(ൻ)"
+
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Invite friends and colleagues to join you on %s"
+msgstr "%s-ൽ നമ്മോടൊപ്പം ചേരാൻ സുഹൃത്തുക്കളേയും സഹപ്രവർത്തകരേയും ക്ഷണിക്കുക"
+
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
+msgctxt "MENU"
+msgid "Invite"
+msgstr "ക്ഷണിക്കുക"
+
+#. TRANS: Tooltip for main menu option "Logout"
+#: lib/action.php:582
+msgctxt "TOOLTIP"
+msgid "Logout from the site"
+msgstr "സൈറ്റിൽ നിന്നും പുറത്തുകടക്കുക"
+
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
+msgctxt "MENU"
+msgid "Logout"
+msgstr "ലോഗൗട്ട്"
+
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
+msgctxt "TOOLTIP"
+msgid "Create an account"
+msgstr "ഒരംഗത്വമെടുക്കുക"
+
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
+msgctxt "MENU"
+msgid "Register"
+msgstr "രജിസ്റ്റർ"
+
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
+msgctxt "TOOLTIP"
+msgid "Login to the site"
+msgstr "സൈറ്റിലേക്ക് പ്രവേശിക്കുക"
+
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
+msgctxt "MENU"
+msgid "Login"
+msgstr "പ്രവേശിക്കുക"
+
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
+msgctxt "TOOLTIP"
+msgid "Help me!"
+msgstr "എന്നെ സഹായിക്കൂ!"
+
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
+msgctxt "MENU"
+msgid "Help"
+msgstr "സഹായം"
+
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
+msgctxt "TOOLTIP"
+msgid "Search for people or text"
+msgstr "ആൾക്കാരെയോ എഴുത്തോ തിരയുക"
+
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
+msgctxt "MENU"
+msgid "Search"
+msgstr "തിരയുക"
+
+#. TRANS: DT element for site notice. String is hidden in default CSS.
+#. TRANS: Menu item for site administration
+#: lib/action.php:633 lib/adminpanelaction.php:387
+msgid "Site notice"
+msgstr "സൈറ്റ് അറിയിപ്പ്"
+
+#. TRANS: DT element for local views block. String is hidden in default CSS.
+#: lib/action.php:700
+msgid "Local views"
+msgstr "പ്രാദേശിക എടുത്തുനോക്കലുകൾ"
+
+#. TRANS: DT element for page notice. String is hidden in default CSS.
+#: lib/action.php:770
+msgid "Page notice"
+msgstr "താളിലെ അറിയിപ്പ്"
+
+#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
+#: lib/action.php:871
+msgid "Secondary site navigation"
+msgstr ""
+
+#. TRANS: Secondary navigation menu option leading to help on StatusNet.
+#: lib/action.php:877
+msgid "Help"
+msgstr "സഹായം"
+
+#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
+#: lib/action.php:880
+msgid "About"
+msgstr "വിവരണം"
+
+#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
+#: lib/action.php:883
+msgid "FAQ"
+msgstr "പതിവുചോദ്യങ്ങൾ"
+
+#. TRANS: Secondary navigation menu option leading to Terms of Service.
+#: lib/action.php:888
+msgid "TOS"
+msgstr ""
+
+#. TRANS: Secondary navigation menu option leading to privacy policy.
+#: lib/action.php:892
+msgid "Privacy"
+msgstr "സ്വകാര്യത"
+
+#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
+#: lib/action.php:895
+msgid "Source"
+msgstr "സ്രോതസ്സ്"
+
+#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
+#. TRANS: StatusNet site, where to report bugs, ...
+#: lib/action.php:902
+msgid "Contact"
+msgstr "സമ്പർക്കം"
+
+#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
+#: lib/action.php:905
+msgid "Badge"
+msgstr ""
+
+#. TRANS: DT element for StatusNet software license.
+#: lib/action.php:934
+msgid "StatusNet software license"
+msgstr "സ്റ്റാറ്റസ്നെറ്റ് സോഫ്റ്റ്വേർ അനുമതി"
+
+#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set.
+#. TRANS: Text between [] is a link description, text between () is the link itself.
+#. TRANS: Make sure there is no whitespace between "]" and "(".
+#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
+#: lib/action.php:941
+#, php-format
+msgid ""
+"**%%site.name%%** is a microblogging service brought to you by [%%site."
+"broughtby%%](%%site.broughtbyurl%%)."
+msgstr ""
+
+#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
+#: lib/action.php:944
+#, php-format
+msgid "**%%site.name%%** is a microblogging service."
+msgstr ""
+
+#. TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license.
+#. TRANS: Make sure there is no whitespace between "]" and "(".
+#. TRANS: Text between [] is a link description, text between () is the link itself.
+#. TRANS: %s is the version of StatusNet that is being used.
+#: lib/action.php:951
+#, 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 ""
+
+#. TRANS: DT element for StatusNet site content license.
+#: lib/action.php:967
+msgid "Site content license"
+msgstr "സൈറ്റിന്റെ ഉള്ളടക്കത്തിന്റെ ഉപയോഗാനുമതി"
+
+#. TRANS: Content license displayed when license is set to 'private'.
+#. TRANS: %1$s is the site name.
+#: lib/action.php:974
+#, php-format
+msgid "Content and data of %1$s are private and confidential."
+msgstr "%1$s സൈറ്റിന്റെ ഉള്ളടക്കം സ്വകാര്യവും രഹസ്യവുമാണ്."
+
+#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
+#. TRANS: %1$s is the copyright owner.
+#: lib/action.php:981
+#, php-format
+msgid "Content and data copyright by %1$s. All rights reserved."
+msgstr ""
+
+#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
+#: lib/action.php:985
+msgid "Content and data copyright by contributors. All rights reserved."
+msgstr "ഉള്ളടക്കവും വിവരങ്ങളും സംഭാവകർക്ക് പകർപ്പവകാശമുള്ളതാണ്. എല്ലാ അവകാശങ്ങളും സംരക്ഷിതം."
+
+#. TRANS: license message in footer.
+#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
+#: lib/action.php:1017
+#, php-format
+msgid "All %1$s content and data are available under the %2$s license."
+msgstr ""
+
+#. TRANS: DT element for pagination (previous/next, etc.).
+#: lib/action.php:1353
+msgid "Pagination"
+msgstr ""
+
+#. TRANS: Pagination message to go to a page displaying information more in the
+#. TRANS: present than the currently displayed information.
+#: lib/action.php:1364
+msgid "After"
+msgstr "ശേഷം"
+
+#. TRANS: Pagination message to go to a page displaying information more in the
+#. TRANS: past than the currently displayed information.
+#: lib/action.php:1374
+msgid "Before"
+msgstr "മുമ്പ്"
+
+#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
+#: lib/activity.php:125
+msgid "Expecting a root feed element but got a whole XML document."
+msgstr ""
+
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "അപരിചിതമായ ക്രിയ: \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "അജ്ഞാതമായ കുറിപ്പ്."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr "ഈ പ്രവൃത്തി ഞങ്ങളുടെ ഒരുപയോക്താവ് ചെയ്തതാണെന്ന് തോന്നുന്നില്ല."
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr "ഉപയോക്താവ് ഈ സംഘത്തിൽ മുമ്പേ തന്നെ അംഗമാണ്."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr "ഉള്ളടക്കമൊന്നും %s എന്ന അറിയിപ്പിൽ നൽകിയിട്ടില്ല."
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "%s എന്നൊരു ഉപയോക്താവില്ല."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr ""
+
+#. TRANS: Client exception thrown when there is no source attribute.
+#: lib/activityutils.php:200
+msgid "Can't handle remote content yet."
+msgstr ""
+
+#. TRANS: Client exception thrown when there embedded XML content is found that cannot be processed yet.
+#: lib/activityutils.php:237
+msgid "Can't handle embedded XML content yet."
+msgstr ""
+
+#. TRANS: Client exception thrown when base64 encoded content is found that cannot be processed yet.
+#: lib/activityutils.php:242
+msgid "Can't handle embedded Base64 content yet."
+msgstr ""
+
+#. TRANS: Client error message thrown when a user tries to change admin settings but has no access rights.
+#: lib/adminpanelaction.php:96
+msgid "You cannot make changes to this site."
+msgstr ""
+
+#. TRANS: Client error message throw when a certain panel's settings cannot be changed.
+#: lib/adminpanelaction.php:108
+msgid "Changes to that panel are not allowed."
+msgstr ""
+
+#. TRANS: Client error message.
+#: lib/adminpanelaction.php:222
+msgid "showForm() not implemented."
+msgstr ""
+
+#. TRANS: Client error message
+#: lib/adminpanelaction.php:250
+msgid "saveSettings() not implemented."
+msgstr ""
+
+#. TRANS: Client error message thrown if design settings could not be deleted in
+#. TRANS: the admin panel Design.
+#: lib/adminpanelaction.php:274
+msgid "Unable to delete design setting."
+msgstr "രൂപകല്പനാ സജ്ജീകരണങ്ങൾ മായ്ക്കാൻ കഴിഞ്ഞില്ല."
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:337
+msgid "Basic site configuration"
+msgstr "സൈറ്റിന്റെ അടിസ്ഥാന ക്രമീകരണം"
+
+#. TRANS: Menu item for site administration
+#: lib/adminpanelaction.php:339
+msgctxt "MENU"
+msgid "Site"
+msgstr "സൈറ്റ്"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:345
+msgid "Design configuration"
+msgstr "രൂപകല്പനാ ക്രമീകരണം"
+
+#. TRANS: Menu item for site administration
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/adminpanelaction.php:347 lib/groupnav.php:135
+msgctxt "MENU"
+msgid "Design"
+msgstr "രൂപകല്പന"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:353
+msgid "User configuration"
+msgstr "ഉപയോക്തൃ ക്രമീകരണം"
+
+#. TRANS: Menu item for site administration
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
+msgid "User"
+msgstr "ഉപയോക്താവ്"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:361
+msgid "Access configuration"
+msgstr "അഭിഗമ്യതാ ക്രമീകരണം"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:369
+msgid "Paths configuration"
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:377
+msgid "Sessions configuration"
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:385
+msgid "Edit site notice"
+msgstr "സൈറ്റ് അറിയിപ്പ് തിരുത്തുക"
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:393
+msgid "Snapshots configuration"
+msgstr ""
+
+#. TRANS: Menu item title/tooltip
+#: lib/adminpanelaction.php:401
+msgid "Set site license"
+msgstr "സൈറ്റിന്റെ ഉപയോഗാനുമതി സജ്ജീകരിക്കുക"
+
+#. TRANS: Client error 401.
+#: lib/apiauth.php:111
+msgid "API resource requires read-write access, but you only have read access."
+msgstr ""
+
+#. TRANS: OAuth exception thrown when no application is found for a given consumer key.
+#: lib/apiauth.php:177
+msgid "No application for that consumer key."
+msgstr ""
+
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
+#. TRANS: OAuth exception given when an incorrect access token was given for a user.
+#: lib/apiauth.php:225
+msgid "Bad access token."
+msgstr ""
+
+#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
+#: lib/apiauth.php:230
+msgid "No user for that token."
+msgstr ""
+
+#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
+#. TRANS: Client error thrown when authentication fails.
+#: lib/apiauth.php:272 lib/apiauth.php:302
+msgid "Could not authenticate you."
+msgstr ""
+
+#. TRANS: Server error displayed when trying to create an anynymous OAuth consumer.
+#: lib/apioauthstore.php:45
+msgid "Could not create anonymous consumer."
+msgstr ""
+
+#. TRANS: Server error displayed when trying to create an anynymous OAuth application.
+#: lib/apioauthstore.php:69
+msgid "Could not create anonymous OAuth application."
+msgstr ""
+
+#. TRANS: Exception thrown when no token association could be found.
+#: lib/apioauthstore.php:151
+msgid ""
+"Could not find a profile and application associated with the request token."
+msgstr ""
+
+#. TRANS: Exception thrown when no access token can be issued.
+#: lib/apioauthstore.php:209
+msgid "Could not issue access token."
+msgstr ""
+
+#: lib/apioauthstore.php:317
+msgid "Database error inserting OAuth application user."
+msgstr ""
+
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr ""
+
+#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
+#: lib/apioauthstore.php:371
+msgid "Tried to revoke unknown token."
+msgstr ""
+
+#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
+#: lib/apioauthstore.php:376
+msgid "Failed to delete revoked token."
+msgstr ""
+
+#. TRANS: Form guide.
+#: lib/applicationeditform.php:182
+msgid "Icon for this application"
+msgstr ""
+
+#. TRANS: Form input field instructions.
+#. TRANS: %d is the number of available characters for the description.
+#: lib/applicationeditform.php:201
+#, php-format
+msgid "Describe your application in %d character"
+msgid_plural "Describe your application in %d characters"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:205
+msgid "Describe your application"
+msgstr ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:216
+msgid "URL of the homepage of this application"
+msgstr ""
+
+#. TRANS: Form input field label.
+#: lib/applicationeditform.php:218
+msgid "Source URL"
+msgstr "സ്രോതസ്സ് യു.ആർ.എൽ"
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:225
+msgid "Organization responsible for this application"
+msgstr ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:234
+msgid "URL for the homepage of the organization"
+msgstr ""
+
+#. TRANS: Form input field instructions.
+#: lib/applicationeditform.php:243
+msgid "URL to redirect to after authentication"
+msgstr ""
+
+#. TRANS: Radio button label for application type
+#: lib/applicationeditform.php:271
+msgid "Browser"
+msgstr "ബ്രൗസർ"
+
+#. TRANS: Radio button label for application type
+#: lib/applicationeditform.php:288
+msgid "Desktop"
+msgstr "ഡെസ്ക്ടോപ്പ്"
+
+#. TRANS: Form guide.
+#: lib/applicationeditform.php:290
+msgid "Type of application, browser or desktop"
+msgstr ""
+
+#. TRANS: Radio button label for access type.
+#: lib/applicationeditform.php:314
+msgid "Read-only"
+msgstr ""
+
+#. TRANS: Radio button label for access type.
+#: lib/applicationeditform.php:334
+msgid "Read-write"
+msgstr ""
+
+#. TRANS: Form guide.
+#: lib/applicationeditform.php:336
+msgid "Default access for this application: read-only, or read-write"
+msgstr ""
+
+#. TRANS: Submit button title.
+#: lib/applicationeditform.php:353
+msgid "Cancel"
+msgstr "റദ്ദാക്കുക"
+
+#: lib/applicationlist.php:247
+msgid " by "
+msgstr ""
+
+#. TRANS: Application access type
+#: lib/applicationlist.php:260
+msgid "read-write"
+msgstr ""
+
+#. TRANS: Application access type
+#: lib/applicationlist.php:262
+msgid "read-only"
+msgstr ""
+
+#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only")
+#: lib/applicationlist.php:268
+#, php-format
+msgid "Approved %1$s - \"%2$s\" access."
+msgstr ""
+
+#. TRANS: Access token in the application list.
+#. TRANS: %s are the first 7 characters of the access token.
+#: lib/applicationlist.php:282
+#, php-format
+msgid "Access token starting with: %s"
+msgstr ""
+
+#. TRANS: Button label
+#: lib/applicationlist.php:298
+msgctxt "BUTTON"
+msgid "Revoke"
+msgstr "തിരിച്ചെടുക്കുക"
+
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr ""
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr "ഈ മാർഗ്ഗം ഉപയോഗിക്കരുത്!"
+
+#. TRANS: DT element label in attachment list item.
+#: lib/attachmentlist.php:293
+msgid "Author"
+msgstr "രചയിതാവ്"
+
+#. TRANS: DT element label in attachment list item.
+#: lib/attachmentlist.php:307
+msgid "Provider"
+msgstr ""
+
+#. TRANS: Title.
+#: lib/attachmentnoticesection.php:67
+msgid "Notices where this attachment appears"
+msgstr ""
+
+#. TRANS: Title.
+#: lib/attachmenttagcloudsection.php:48
+msgid "Tags for this attachment"
+msgstr ""
+
+#. TRANS: Exception thrown when a password change fails.
+#: lib/authenticationplugin.php:221 lib/authenticationplugin.php:227
+msgid "Password changing failed."
+msgstr "രഹസ്യവാക്ക് മാറ്റൽ പരാജയപ്പെട്ടിരിക്കുന്നു."
+
+#. TRANS: Exception thrown when a password change attempt fails because it is not allowed.
+#: lib/authenticationplugin.php:238
+msgid "Password changing is not allowed."
+msgstr "രഹസ്യവാക്ക് മാറ്റൽ അനുവദിച്ചിട്ടില്ല."
+
+#. TRANS: Title for the form to block a user.
+#: lib/blockform.php:68
+msgid "Block"
+msgstr "തടയുക"
+
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "ഈ ഉപയോക്താവിനെ തടയുക"
+
+#. TRANS: Title for command results.
+#: lib/channel.php:160 lib/channel.php:181
+msgid "Command results"
+msgstr ""
+
+#. TRANS: Title for command results.
+#: lib/channel.php:194
+msgid "AJAX error"
+msgstr "അജാക്സ് പിഴവ്"
+
+#. TRANS: E-mail subject when a command has completed.
+#: lib/channel.php:233 lib/mailhandler.php:143
+msgid "Command complete"
+msgstr ""
+
+#. TRANS: E-mail subject when a command has failed.
+#: lib/channel.php:244
+msgid "Command failed"
+msgstr ""
+
+#. TRANS: Command exception text shown when a notice ID is requested that does not exist.
+#: lib/command.php:82 lib/command.php:106
+msgid "Notice with that id does not exist."
+msgstr "ആ ഐ.ഡി.യിൽ അറിയിപ്പ് നിലവിലില്ല."
+
+#. TRANS: Command exception text shown when a last user notice is requested and it does not exist.
+#. TRANS: Error text shown when a last user notice is requested and it does not exist.
+#: lib/command.php:99 lib/command.php:630
+msgid "User has no last notice."
+msgstr ""
+
+#. TRANS: Message given requesting a profile for a non-existing user.
+#. TRANS: %s is the nickname of the user for which the profile could not be found.
+#: lib/command.php:128
+#, php-format
+msgid "Could not find a user with nickname %s."
+msgstr ""
+
+#. TRANS: Message given getting a non-existing user.
+#. TRANS: %s is the nickname of the user that could not be found.
+#: lib/command.php:148
+#, php-format
+msgid "Could not find a local user with nickname %s."
+msgstr ""
+
+#. TRANS: Error text shown when an unimplemented command is given.
+#: lib/command.php:183
+msgid "Sorry, this command is not yet implemented."
+msgstr ""
+
+#. TRANS: Command exception text shown when a user tries to nudge themselves.
+#: lib/command.php:229
+msgid "It does not make a lot of sense to nudge yourself!"
+msgstr ""
+
+#. TRANS: Message given having nudged another user.
+#. TRANS: %s is the nickname of the user that was nudged.
+#: lib/command.php:238
+#, php-format
+msgid "Nudge sent to %s."
+msgstr ""
+
+#. TRANS: User statistics text.
+#. TRANS: %1$s is the number of other user the user is subscribed to.
+#. TRANS: %2$s is the number of users that are subscribed to the user.
+#. TRANS: %3$s is the number of notices the user has sent.
+#: lib/command.php:268
+#, php-format
+msgid ""
+"Subscriptions: %1$s\n"
+"Subscribers: %2$s\n"
+"Notices: %3$s"
+msgstr ""
+"വരിക്കാരനാകലുകൾ: %1$s\n"
+"വരിക്കാർ: %2$s\n"
+"അറിയിപ്പുകൾ: %3$s"
+
+#. TRANS: Text shown when a notice has been marked as favourite successfully.
+#: lib/command.php:312
+msgid "Notice marked as fave."
+msgstr "അറിയിപ്പ് പ്രിയങ്കരമെന്ന് അടയാളപ്പെടുത്തി."
+
+#. TRANS: Message given having added a user to a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: lib/command.php:357
+#, php-format
+msgid "%1$s joined group %2$s."
+msgstr "%2$s എന്ന സംഘത്തിൽ %1$s എന്ന ഉപയോക്താവ് ചേർന്നു."
+
+#. TRANS: Message given having removed a user from a group.
+#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
+#: lib/command.php:405
+#, php-format
+msgid "%1$s left group %2$s."
+msgstr "%2$s എന്ന സംഘത്തിൽ നിന്ന് %1$s എന്ന ഉപയോക്താവ് വിട്ടുപോയി."
+
+#. TRANS: Whois output.
+#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
+#: lib/command.php:426
+#, php-format
+msgctxt "WHOIS"
+msgid "%1$s (%2$s)"
+msgstr ""
+
+#. TRANS: Whois output. %s is the full name of the queried user.
+#: lib/command.php:430
+#, php-format
+msgid "Fullname: %s"
+msgstr "പൂർണ്ണനാമം: %s"
+
+#. TRANS: Whois output. %s is the location of the queried user.
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is a location.
+#: lib/command.php:434 lib/mail.php:270
+#, php-format
+msgid "Location: %s"
+msgstr "സ്ഥാനം: %s"
+
+#. TRANS: Whois output. %s is the homepage of the queried user.
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is a homepage.
+#: lib/command.php:438 lib/mail.php:274
+#, php-format
+msgid "Homepage: %s"
+msgstr "പ്രധാനതാൾ: %s"
+
+#. TRANS: Whois output. %s is the bio information of the queried user.
+#: lib/command.php:442
+#, php-format
+msgid "About: %s"
+msgstr "വിവരണം: %s"
+
+#. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server).
+#. TRANS: %s is a remote profile.
+#: lib/command.php:471
+#, php-format
+msgid ""
+"%s is a remote profile; you can only send direct messages to users on the "
+"same server."
+msgstr ""
+
+#. TRANS: Message given if content is too long. %1$sd is used for plural.
+#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
+#: lib/command.php:488
+#, php-format
+msgid "Message too long - maximum is %1$d character, you sent %2$d."
+msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Error text shown sending a direct message fails with an unknown reason.
+#: lib/command.php:516
+msgid "Error sending direct message."
+msgstr "നേരിട്ടുള്ള സന്ദേശം അയക്കുന്നതിൽ പിഴവുണ്ടായി."
+
+#. TRANS: Message given having repeated a notice from another user.
+#. TRANS: %s is the name of the user for which the notice was repeated.
+#: lib/command.php:553
+#, php-format
+msgid "Notice from %s repeated."
+msgstr "%s എന്ന ഉപയോക്താവിന്റെ അറിയിപ്പ് ആവർത്തിച്ചു."
+
+#. TRANS: Error text shown when repeating a notice fails with an unknown reason.
+#: lib/command.php:556
+msgid "Error repeating notice."
+msgstr "അറിയിപ്പ് ആവർത്തിക്കുന്നതിൽ പിഴവുണ്ടായി."
+
+#. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural.
+#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
+#: lib/command.php:591
+#, php-format
+msgid "Notice too long - maximum is %1$d character, you sent %2$d."
+msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Text shown having sent a reply to a notice successfully.
+#. TRANS: %s is the nickname of the user of the notice the reply was sent to.
+#: lib/command.php:604
+#, php-format
+msgid "Reply to %s sent."
+msgstr "%s എന്ന ഉപയോക്താവിനുള്ള മറുപടി അയച്ചു."
+
+#. TRANS: Error text shown when a reply to a notice fails with an unknown reason.
+#: lib/command.php:607
+msgid "Error saving notice."
+msgstr "അറിയിപ്പ് സേവ് ചെയ്യുന്നതിൽ പിഴവുണ്ടായി."
+
+#. TRANS: Error text shown when no username was provided when issuing a subscribe command.
+#: lib/command.php:654
+msgid "Specify the name of the user to subscribe to."
+msgstr ""
+
+#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command.
+#: lib/command.php:663
+msgid "Can't subscribe to OMB profiles by command."
+msgstr ""
+
+#. TRANS: Text shown after having subscribed to another user successfully.
+#. TRANS: %s is the name of the user the subscription was requested for.
+#: lib/command.php:671
+#, php-format
+msgid "Subscribed to %s."
+msgstr ""
+
+#. TRANS: Error text shown when no username was provided when issuing an unsubscribe command.
+#. TRANS: Error text shown when no username was provided when issuing the command.
+#: lib/command.php:692 lib/command.php:803
+msgid "Specify the name of the user to unsubscribe from."
+msgstr ""
+
+#. TRANS: Text shown after having unsubscribed from another user successfully.
+#. TRANS: %s is the name of the user the unsubscription was requested for.
+#: lib/command.php:703
+#, php-format
+msgid "Unsubscribed from %s."
+msgstr ""
+
+#. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented.
+#. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented.
+#: lib/command.php:723 lib/command.php:749
+msgid "Command not yet implemented."
+msgstr ""
+
+#. TRANS: Text shown when issuing the command "off" successfully.
+#: lib/command.php:727
+msgid "Notification off."
+msgstr ""
+
+#. TRANS: Error text shown when the command "off" fails for an unknown reason.
+#: lib/command.php:730
+msgid "Can't turn off notification."
+msgstr ""
+
+#. TRANS: Text shown when issuing the command "on" successfully.
+#: lib/command.php:753
+msgid "Notification on."
+msgstr ""
+
+#. TRANS: Error text shown when the command "on" fails for an unknown reason.
+#: lib/command.php:756
+msgid "Can't turn on notification."
+msgstr ""
+
+#. TRANS: Error text shown when issuing the login command while login is disabled.
+#: lib/command.php:770
+msgid "Login command is disabled."
+msgstr ""
+
+#. TRANS: Text shown after issuing the login command successfully.
+#. TRANS: %s is a logon link..
+#: lib/command.php:783
+#, php-format
+msgid "This link is useable only once and is valid for only 2 minutes: %s."
+msgstr ""
+"ഈ കണ്ണി ഒരിക്കൽ മാത്രമേ ഉപയോഗിക്കാനാകൂ, അത് 2 മിനിറ്റിനു ശേഷം കാലഹരണപ്പെടുകയും ചെയ്യും: %"
+"s."
+
+#. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user).
+#. TRANS: %s is the name of the user the unsubscription was requested for.
+#: lib/command.php:812
+#, php-format
+msgid "Unsubscribed %s."
+msgstr ""
+
+#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions.
+#: lib/command.php:830
+msgid "You are not subscribed to anyone."
+msgstr ""
+
+#. TRANS: Text shown after requesting other users a user is subscribed to.
+#. TRANS: This message supports plural forms. This message is followed by a
+#. TRANS: hard coded space and a comma separated list of subscribed users.
+#: lib/command.php:835
+msgid "You are subscribed to this person:"
+msgid_plural "You are subscribed to these people:"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Text shown after requesting other users that are subscribed to a user
+#. TRANS: (followers) without having any subscribers.
+#: lib/command.php:857
+msgid "No one is subscribed to you."
+msgstr ""
+
+#. TRANS: Text shown after requesting other users that are subscribed to a user (followers).
+#. TRANS: This message supports plural forms. This message is followed by a
+#. TRANS: hard coded space and a comma separated list of subscribing users.
+#: lib/command.php:862
+msgid "This person is subscribed to you:"
+msgid_plural "These people are subscribed to you:"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Text shown after requesting groups a user is subscribed to without having
+#. TRANS: any group subscriptions.
+#: lib/command.php:884
+msgid "You are not a member of any groups."
+msgstr "താങ്കൾ ഒരു സംഘത്തിലേയും അംഗമല്ല."
+
+#. TRANS: Text shown after requesting groups a user is subscribed to.
+#. TRANS: This message supports plural forms. This message is followed by a
+#. TRANS: hard coded space and a comma separated list of subscribed groups.
+#: lib/command.php:889
+msgid "You are a member of this group:"
+msgid_plural "You are a member of these groups:"
+msgstr[0] "താങ്കൾ ഈ സംഘത്തിലെ അംഗമാണ്:"
+msgstr[1] "താങ്കൾ ഈ സംഘങ്ങളിലെ അംഗമാണ്:"
+
+#. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings.
+#: lib/command.php:904
+msgid ""
+"Commands:\n"
+"on - turn on notifications\n"
+"off - turn off notifications\n"
+"help - show this help\n"
+"follow - subscribe to user\n"
+"groups - lists the groups you have joined\n"
+"subscriptions - list the people you follow\n"
+"subscribers - list the people that follow you\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"
+"lose - force user to stop following you\n"
+"fav - add user's last notice as a 'fave'\n"
+"fav # - add notice with the given id as a 'fave'\n"
+"repeat # - repeat a notice with a given id\n"
+"repeat - repeat the last notice from user\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 ""
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#: lib/common.php:162
+msgid "No configuration file found."
+msgstr "ക്രമീകരണ പ്രമാണം കണ്ടെത്താനായില്ല."
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#. TRANS: Is followed by a list of directories (separated by HTML breaks).
+#: lib/common.php:165
+msgid "I looked for configuration files in the following places:"
+msgstr ""
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#: lib/common.php:168
+msgid "You may wish to run the installer to fix this."
+msgstr ""
+
+#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
+#. TRANS: The text is link text that leads to the installer page.
+#: lib/common.php:172
+msgid "Go to the installer."
+msgstr ""
+
+#. TRANS: Menu item for Instant Messaging settings.
+#: lib/connectsettingsaction.php:106
+msgctxt "MENU"
+msgid "IM"
+msgstr ""
+
+#. TRANS: Tooltip for Instant Messaging menu item.
+#: lib/connectsettingsaction.php:108
+msgid "Updates by instant messenger (IM)"
+msgstr ""
+
+#. TRANS: Menu item for Short Message Service settings.
+#: lib/connectsettingsaction.php:113
+msgctxt "MENU"
+msgid "SMS"
+msgstr "എസ്.എം.എസ്."
+
+#. TRANS: Tooltip for Short Message Service menu item.
+#: lib/connectsettingsaction.php:115
+msgid "Updates by SMS"
+msgstr ""
+
+#. TRANS: Menu item for OuAth connection settings.
+#: lib/connectsettingsaction.php:120
+msgctxt "MENU"
+msgid "Connections"
+msgstr "ബന്ധങ്ങൾ"
+
+#. TRANS: Tooltip for connected applications (Connections through OAuth) menu item.
+#: lib/connectsettingsaction.php:122
+msgid "Authorized connected applications"
+msgstr ""
+
+#: lib/dberroraction.php:59
+msgid "Database error"
+msgstr "ഡാറ്റാബേസ് പിഴവ്"
+
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "ഈ ഉപയോക്താവിനെ നീക്കം ചെയ്യുക"
+
+#. TRANS: Label in form on profile design page.
+#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
+#: lib/designsettings.php:108
+msgid "Upload file"
+msgstr "പ്രമാണം അപ്ലോഡ് ചെയ്യുക"
+
+#. TRANS: Instructions for form on profile design page.
+#: lib/designsettings.php:113
+msgid ""
+"You can upload your personal background image. The maximum file size is 2MB."
+msgstr ""
+
+#. TRANS: Radio button on profile design page that will enable use of the uploaded profile image.
+#: lib/designsettings.php:139
+msgctxt "RADIO"
+msgid "On"
+msgstr "സജ്ജം"
+
+#. TRANS: Radio button on profile design page that will disable use of the uploaded profile image.
+#: lib/designsettings.php:156
+msgctxt "RADIO"
+msgid "Off"
+msgstr "രഹിതം"
+
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "നിറങ്ങൾ മാറ്റുക"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "സ്വതേയുള്ളവ ഉപയോഗിക്കുക"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "സ്വതേയുള്ള രൂപകല്പനകൾ പുനഃസ്ഥാപിക്കുക"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "മുമ്പ് സ്വതേയുണ്ടായിരുന്നതിലേയ്ക്ക് പുനഃസ്ഥാപിക്കുക"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "രൂപകല്പന സേവ് ചെയ്യുക"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "താങ്കളുടെ രൂപകല്പന പുതുക്കാനായില്ല."
+
+#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
+#: lib/designsettings.php:433
+msgid "Design defaults restored."
+msgstr "സ്വതേയുള്ള രൂപകല്പന പുനഃസ്ഥാപിച്ചിരിക്കുന്നു."
+
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr ""
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
+msgid "Disfavor this notice"
+msgstr ""
+
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr ""
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
+msgid "Favor this notice"
+msgstr ""
+
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr ""
+
+#: lib/feed.php:84
+msgid "RSS 1.0"
+msgstr "ആർ.എസ്.എസ്. 1.0"
+
+#: lib/feed.php:86
+msgid "RSS 2.0"
+msgstr "ആർ.എസ്.എസ്. 2.0"
+
+#: lib/feed.php:88
+msgid "Atom"
+msgstr "ആറ്റം"
+
+#: lib/feed.php:90
+msgid "FOAF"
+msgstr ""
+
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല."
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
+#. TRANS: Header for feed links (h2).
+#: lib/feedlist.php:66
+msgid "Feeds"
+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/grantroleform.php:91
+#, php-format
+msgid "Grant this user the \"%s\" role"
+msgstr ""
+
+#: lib/groupeditform.php:147
+msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
+msgstr ""
+
+#: lib/groupeditform.php:156
+msgid "URL of the homepage or blog of the group or topic."
+msgstr ""
+
+#: lib/groupeditform.php:161
+msgid "Describe the group or topic"
+msgstr "സംഘത്തെക്കുറിച്ചോ വിഷയത്തെക്കുറിച്ചോ വിവരിക്കുക"
+
+#: lib/groupeditform.php:163
+#, fuzzy, php-format
+msgid "Describe the group or topic in %d character or less"
+msgid_plural "Describe the group or topic in %d characters or less"
+msgstr[0] "സംഘത്തെക്കുറിച്ചോ വിഷയത്തെക്കുറിച്ചോ %d അക്ഷരത്തിൽ കൂടാതെ വിവരിക്കുക."
+msgstr[1] "സംഘത്തെക്കുറിച്ചോ വിഷയത്തെക്കുറിച്ചോ %d അക്ഷരങ്ങളിൽ കൂടാതെ വിവരിക്കുക."
+
+#: lib/groupeditform.php:175
+msgid ""
+"Location for the group, if any, like \"City, State (or Region), Country\"."
+msgstr ""
+"സംഘത്തിന്റെ പ്രദേശം, അങ്ങനെയൊന്നുണ്ടെങ്കിൽ - ഉദാ: \"പട്ടണം, സംസ്ഥാനം (അഥവാ പ്രദേശം), "
+"രാജ്യം\"."
+
+#: lib/groupeditform.php:183
+#, php-format
+msgid ""
+"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
+"alias allowed."
+msgid_plural ""
+"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
+"aliases allowed."
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Menu item in the group navigation page.
+#: lib/groupnav.php:86
+msgctxt "MENU"
+msgid "Group"
+msgstr "സംഘം"
+
+#. TRANS: Tooltip for menu item in the group navigation page.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:89
+#, php-format
+msgctxt "TOOLTIP"
+msgid "%s group"
+msgstr "%s സംഘം"
+
+#. TRANS: Menu item in the group navigation page.
+#: lib/groupnav.php:95
+msgctxt "MENU"
+msgid "Members"
+msgstr "അംഗങ്ങൾ"
+
+#. TRANS: Tooltip for menu item in the group navigation page.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:98
+#, php-format
+msgctxt "TOOLTIP"
+msgid "%s group members"
+msgstr "%s സംഘ അംഗങ്ങൾ"
+
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/groupnav.php:108
+msgctxt "MENU"
+msgid "Blocked"
+msgstr "തടയപ്പെട്ടിരിക്കുന്നു"
+
+#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:111
+#, php-format
+msgctxt "TOOLTIP"
+msgid "%s blocked users"
+msgstr "%s തടയപ്പെട്ട ഉപയോക്താക്കൾ"
+
+#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:120
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Edit %s group properties"
+msgstr ""
+
+#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
+#: lib/groupnav.php:126
+msgctxt "MENU"
+msgid "Logo"
+msgstr "ലോഗോ"
+
+#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:129
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Add or edit %s logo"
+msgstr ""
+
+#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
+#. TRANS: %s is the nickname of the group.
+#: lib/groupnav.php:138
+#, php-format
+msgctxt "TOOLTIP"
+msgid "Add or edit %s design"
+msgstr "%s എന്ന സംഘത്തിനു രൂപകല്പന കൂട്ടിച്ചേർക്കുക അല്ലെങ്കിൽ മാറ്റം വരുത്തുക"
+
+#. TRANS: Title for groups with the most members section.
+#: lib/groupsbymemberssection.php:71
+msgid "Groups with most members"
+msgstr ""
+
+#. TRANS: Title for groups with the most posts section.
+#: lib/groupsbypostssection.php:71
+msgid "Groups with most posts"
+msgstr ""
+
+#. TRANS: Title for group tag cloud section.
+#. TRANS: %s is a group name.
+#: lib/grouptagcloudsection.php:57
+#, php-format
+msgid "Tags in %s group's notices"
+msgstr ""
+
+#. TRANS: Client exception 406
+#: lib/htmloutputter.php:104
+msgid "This page is not available in a media type you accept"
+msgstr ""
+
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
+msgid "Unsupported image file format."
+msgstr "ചിത്രത്തിന്റെ തരത്തിനു പിന്തുണയില്ല."
+
+#. TRANS: Exception thrown when too large a file is uploaded.
+#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
+#: lib/imagefile.php:91
+#, php-format
+msgid "That file is too big. The maximum file size is %s."
+msgstr ""
+
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
+msgid "Partial upload."
+msgstr "ഭാഗിക അപ്ലോഡ്."
+
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
+msgid "Not an image or corrupt file."
+msgstr "ഒന്നുകിൽ ചിത്രമല്ല അല്ലെങ്കിൽ ചിത്രത്തിൽ പിഴവുണ്ട്."
+
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
+msgid "Lost our file."
+msgstr "ഞങ്ങളുടെ പ്രമാണം നഷ്ടപ്പെട്ടു."
+
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
+msgid "Unknown file type"
+msgstr "അപരിചിതമായ തരം പ്രമാണം"
+
+#. TRANS: Number of megabytes. %d is the number.
+#: lib/imagefile.php:303
+#, php-format
+msgid "%dMB"
+msgid_plural "%dMB"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Number of kilobytes. %d is the number.
+#: lib/imagefile.php:307
+#, php-format
+msgid "%dkB"
+msgid_plural "%dkB"
+msgstr[0] ""
+msgstr[1] ""
+
+#. TRANS: Number of bytes. %d is the number.
+#: lib/imagefile.php:310
+#, php-format
+msgid "%dB"
+msgid_plural "%dB"
+msgstr[0] ""
+msgstr[1] ""
+
+#: lib/jabber.php:387
+#, php-format
+msgid "[%s]"
+msgstr ""
+
+#: lib/jabber.php:567
+#, php-format
+msgid "Unknown inbox source %d."
+msgstr ""
+
+#: lib/leaveform.php:114
+msgid "Leave"
+msgstr "ഒഴിവായി പോവുക"
+
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
+msgid "Login with a username and password"
+msgstr "ഉപയോക്തൃനാമവും രഹസ്യവാക്കും ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"
+
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
+msgid "Sign up for a new account"
+msgstr "പുതിയൊരംഗത്വം എടുക്കുക"
+
+#. TRANS: Subject for address confirmation email.
+#: lib/mail.php:168
+msgid "Email address confirmation"
+msgstr "ഇമെയിൽ വിലാസത്തിന്റെ സ്ഥിരീകരണം"
+
+#. TRANS: Body for address confirmation email.
+#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
+#. TRANS: %3$s is the URL to confirm at.
+#: lib/mail.php:173
+#, php-format
+msgid ""
+"Hey, %1$s.\n"
+"\n"
+"Someone just entered this email address on %2$s.\n"
+"\n"
+"If it was you, and you want to confirm your entry, use the URL below:\n"
+"\n"
+"\t%3$s\n"
+"\n"
+"If not, just ignore this message.\n"
+"\n"
+"Thanks for your time, \n"
+"%2$s\n"
+msgstr ""
+
+#. TRANS: Subject of new-subscriber notification e-mail.
+#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
+#: lib/mail.php:238
+#, php-format
+msgid "%1$s is now listening to your notices on %2$s."
+msgstr ""
+
+#. TRANS: This is a paragraph in a new-subscriber e-mail.
+#. TRANS: %s is a URL where the subscriber can be reported as abusive.
+#: lib/mail.php:245
+#, php-format
+msgid ""
+"If you believe this account is being used abusively, you can block them from "
+"your subscribers list and report as spam to site administrators at %s"
+msgstr ""
+
+#. TRANS: Main body of new-subscriber notification e-mail.
+#. TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename,
+#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
+#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
+#. TRANS: %7$s is a link to the addressed user's e-mail settings.
+#: lib/mail.php:255
+#, 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"
+"%2$s.\n"
+"\n"
+"----\n"
+"Change your email address or notification options at %7$s\n"
+msgstr ""
+
+#. TRANS: Profile info line in new-subscriber notification e-mail.
+#. TRANS: %s is biographical information.
+#: lib/mail.php:278
+#, php-format
+msgid "Bio: %s"
+msgstr ""
+
+#. TRANS: Subject of notification mail for new posting email address.
+#. TRANS: %s is the StatusNet sitename.
+#: lib/mail.php:307
+#, php-format
+msgid "New email address for posting to %s"
+msgstr "%s സൈറ്റിൽ പ്രസിദ്ധീകരിക്കാനുള്ള പുതിയ ഇമെയിൽ വിലാസം"
+
+#. TRANS: Body of notification mail for new posting email address.
+#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
+#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
+#: lib/mail.php:313
+#, 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"
+"%1$s"
+msgstr ""
+
+#. TRANS: Subject line for SMS-by-email notification messages.
+#. TRANS: %s is the posting user's nickname.
+#: lib/mail.php:434
+#, php-format
+msgid "%s status"
+msgstr "%s സ്ഥിതി"
+
+#. TRANS: Subject line for SMS-by-email address confirmation message.
+#: lib/mail.php:460
+msgid "SMS confirmation"
+msgstr "എസ്.എം.എസ്. സ്ഥിരീകരണം"
+
+#. TRANS: Main body heading for SMS-by-email address confirmation message.
+#. TRANS: %s is the addressed user's nickname.
+#: lib/mail.php:464
+#, php-format
+msgid "%s: confirm you own this phone number with this code:"
+msgstr "%s: താങ്കളുടെ സ്വന്തം ഫോൺ നമ്പർ ഈ കോഡ് ഉപയോഗിച്ച് സ്ഥിരീകരിക്കുക:"
+
+#. TRANS: Subject for 'nudge' notification email.
+#. TRANS: %s is the nudging user.
+#: lib/mail.php:485
+#, php-format
+msgid "You have been nudged by %s"
+msgstr ""
+
+#. TRANS: Body for 'nudge' notification email.
+#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
+#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
+#: lib/mail.php:492
+#, 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 ""
+
+#. TRANS: Subject for direct-message notification email.
+#. TRANS: %s is the sending user's nickname.
+#: lib/mail.php:539
+#, php-format
+msgid "New private message from %s"
+msgstr "%s അയച്ച സ്വകാര്യ സന്ദേശങ്ങൾ"
+
+#. TRANS: Body for direct-message notification email.
+#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
+#. TRANS: %3$s is the message content, %4$s a URL to the message,
+#. TRANS: %5$s is the StatusNet sitename.
+#: lib/mail.php:547
+#, 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 ""
+
+#. TRANS: Subject for favorite notification e-mail.
+#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
+#: lib/mail.php:599
+#, php-format
+msgid "%1$s (@%2$s) added your notice as a favorite"
+msgstr ""
+
+#. TRANS: Body for favorite notification e-mail.
+#. TRANS: %1$s is the adding user's long name, $2$s is the date the notice was created,
+#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
+#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
+#. TRANS: %7$s is the adding user's nickname.
+#: lib/mail.php:606
+#, php-format
+msgid ""
+"%1$s (@%7$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 ""
+
+#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
+#: lib/mail.php:664
+#, php-format
+msgid ""
+"The full conversation can be read here:\n"
+"\n"
+"\t%s"
+msgstr ""
+"പൂർണ്ണമായ സംവാദം ഇവിടെ വായിക്കാം:\n"
+"\n"
+"\t%s"
+
+#. TRANS: E-mail subject for notice notification.
+#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
+#: lib/mail.php:672
+#, php-format
+msgid "%1$s (@%2$s) sent a notice to your attention"
+msgstr "%1$s (@%2$s) താങ്കളുടെ ശ്രദ്ധയ്ക്കായി ഒരു അറിയിപ്പ് അയച്ചിരിക്കുന്നു"
+
+#. TRANS: Body of @-reply notification e-mail.
+#. TRANS: %1$s is the sending user's long name, $2$s is the StatusNet sitename,
+#. TRANS: %3$s is a URL to the notice, %4$s is the notice text,
+#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
+#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
+#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
+#: lib/mail.php:680
+#, php-format
+msgid ""
+"%1$s (@%9$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"
+"%5$sYou can reply back here:\n"
+"\n"
+"\t%6$s\n"
+"\n"
+"The list of all @-replies for you here:\n"
+"\n"
+"%7$s\n"
+"\n"
+"Faithfully yours,\n"
+"%2$s\n"
+"\n"
+"P.S. You can turn off these email notifications here: %8$s\n"
+msgstr ""
+
+#: lib/mailbox.php:87
+msgid "Only the user can read their own mailboxes."
+msgstr "ഉപയോക്താവിനു മാത്രമേ അദ്ദേഹത്തിന്റെ സ്വന്തം മെയിൽബോക്സ് വായിക്കാനാകൂ."
+
+#: lib/mailbox.php:125
+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/mailhandler.php:37
+msgid "Could not parse message."
+msgstr ""
+
+#: lib/mailhandler.php:42
+msgid "Not a registered user."
+msgstr "അംഗത്വമുള്ള ഉപയോക്താവല്ല."
+
+#: lib/mailhandler.php:46
+msgid "Sorry, that is not your incoming email address."
+msgstr "ക്ഷമിക്കുക, അത് താങ്കളുടെ ഇൻകമിങ് ഇമെയിൽ വിലാസം അല്ല."
+
+#: lib/mailhandler.php:50
+msgid "Sorry, no incoming email allowed."
+msgstr "ക്ഷമിക്കുക, ഇങ്ങോട്ട് ഇമെയിൽ അനുവദിച്ചിട്ടില്ല."
+
+#: lib/mailhandler.php:229
+#, php-format
+msgid "Unsupported message type: %s"
+msgstr "പിന്തുണയില്ലാത്ത തരം സന്ദേശം: %s"
+
+#. TRANS: Client exception thrown when a database error was thrown during a file upload operation.
+#: lib/mediafile.php:102 lib/mediafile.php:174
+msgid "There was a database error while saving your file. Please try again."
+msgstr "താങ്കളുടെ പ്രമാണം സേവ് ചെയ്തപ്പോൾ ഡേറ്റാബേസ് പിഴവുണ്ടായി. ദയവായി വീണ്ടും ശ്രമിക്കുക."
+
+#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
+#: lib/mediafile.php:238 lib/mediafile.php:281
+msgid "File exceeds user's quota."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation fails because the file could
+#. TRANS: not be moved from the temporary folder to the permanent file location.
+#: lib/mediafile.php:258 lib/mediafile.php:300
+msgid "File could not be moved to destination directory."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME
+#. TRANS: type of the uploaded file could not be determined.
+#: lib/mediafile.php:265 lib/mediafile.php:306
+msgid "Could not determine file's MIME type."
+msgstr "പ്രമാണത്തിന്റെ മൈം തരം നിർണ്ണയിക്കാനായില്ല."
+
+#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
+#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
+#. TRANS: the MIME type that was denied.
+#: lib/mediafile.php:396
+#, php-format
+msgid ""
+"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
+"format."
+msgstr ""
+"\"%1$s\" എന്ന തരം പ്രമാണത്തിന് ഈ സെർവറിൽ പിന്തുണയില്ല. മറ്റൊരു %2$s തരം പരീക്ഷിക്കുക."
+
+#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
+#. TRANS: %s is the file type that was denied.
+#: lib/mediafile.php:401
+#, php-format
+msgid "\"%s\" is not a supported file type on this server."
+msgstr "\"%s\" എന്ന തരം പ്രമാണത്തിന് ഈ സെർവറിൽ പിന്തുണയില്ല."
+
+#: lib/messageform.php:120
+msgid "Send a direct notice"
+msgstr "അറിയിപ്പ് നേരിട്ട് അയയ്ക്കുക"
+
+#. TRANS Label entry in drop-down selection box in direct-message inbox/outbox. This is the default entry in the drop-down box, doubling as instructions and a brake against accidental submissions with the first user in the list.
+#: lib/messageform.php:137
+msgid "Select recipient:"
+msgstr "സ്വീകർത്താവിനെ തിരഞ്ഞെടുക്കുക:"
+
+#. TRANS Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message.
+#: lib/messageform.php:150
+msgid "No mutual subscribers."
+msgstr ""
+
+#: lib/messageform.php:153
+msgid "To"
+msgstr "സ്വീകർത്താവ്"
+
+#: lib/messageform.php:166 lib/noticeform.php:186
+msgid "Available characters"
+msgstr "ലഭ്യമായ അക്ഷരങ്ങൾ"
+
+#: lib/messageform.php:185 lib/noticeform.php:237
+msgctxt "Send button for sending notice"
+msgid "Send"
+msgstr "അയക്കുക"
+
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr "സന്ദേശങ്ങൾ"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "അയച്ചത്"
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:165
+msgid "Nickname must have only lowercase letters and numbers and no spaces."
+msgstr "വിളിപ്പേരിൽ ഇംഗ്ലീഷ് ചെറിയക്ഷരങ്ങളും അക്കങ്ങളും ഇടവിടാതെ നൽകുക."
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:178
+msgid "Nickname cannot be empty."
+msgstr "വിളിപ്പേര് ശൂന്യമായിരിക്കാൻ പാടില്ല."
+
+#. TRANS: Validation error in form for registration, profile and group settings, etc.
+#: lib/nickname.php:191
+#, php-format
+msgid "Nickname cannot be more than %d character long."
+msgid_plural "Nickname cannot be more than %d characters long."
+msgstr[0] "വിളിപ്പേര് %d അക്ഷരത്തിലധികം ഉണ്ടാകരുത്."
+msgstr[1] "വിളിപ്പേര് %d അക്ഷരങ്ങളിലധികം ഉണ്ടാകരുത്."
+
+#: lib/noticeform.php:160
+msgid "Send a notice"
+msgstr "അറിയിപ്പ് അയയ്ക്കുക"
+
+#: lib/noticeform.php:174
+#, php-format
+msgid "What's up, %s?"
+msgstr "എന്തൊക്കെയുണ്ട്, %s?"
+
+#: lib/noticeform.php:194
+msgid "Attach"
+msgstr "ചേർത്തുവെയ്ക്കുക"
+
+#: lib/noticeform.php:198
+msgid "Attach a file"
+msgstr "പ്രമാണം ചേർത്തു വെയ്ക്കുക"
+
+#: lib/noticeform.php:213
+msgid "Share my location"
+msgstr "എന്റെ സ്ഥാനം പങ്ക് വെയ്ക്കുക"
+
+#: lib/noticeform.php:216
+msgid "Do not share my location"
+msgstr "എന്റെ സ്ഥാനം പങ്ക് വെയ്ക്കരുത്"
+
+#: lib/noticeform.php:217
+msgid ""
+"Sorry, retrieving your geo location is taking longer than expected, please "
+"try again later"
+msgstr ""
+"ക്ഷമിക്കുക, താങ്കളുടെ പ്രദേശം കണ്ടെത്താൻ പ്രതീക്ഷിച്ചതിലധികം സമയം എടുക്കുന്നു, ദയവായി പിന്നീട് "
+"വീണ്ടും ശ്രമിക്കുക"
+
+#. TRANS: Used in coordinates as abbreviation of north
+#: lib/noticelist.php:452
+msgid "N"
+msgstr "വ"
+
+#. TRANS: Used in coordinates as abbreviation of south
+#: lib/noticelist.php:454
+msgid "S"
+msgstr "തെ"
+
+#. TRANS: Used in coordinates as abbreviation of east
+#: lib/noticelist.php:456
+msgid "E"
+msgstr "കി"
+
+#. TRANS: Used in coordinates as abbreviation of west
+#: lib/noticelist.php:458
+msgid "W"
+msgstr "പ"
+
+#: lib/noticelist.php:460
+#, php-format
+msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
+msgstr ""
+
+#: lib/noticelist.php:469
+msgid "at"
+msgstr ""
+
+#: lib/noticelist.php:518
+msgid "web"
+msgstr "വെബ്"
+
+#: lib/noticelist.php:584
+msgid "in context"
+msgstr ""
+
+#: lib/noticelist.php:619
+msgid "Repeated by"
+msgstr "ആവർത്തിച്ചത്"
+
+#: lib/noticelist.php:646
+msgid "Reply to this notice"
+msgstr "ഈ അറിയിപ്പിന് മറുപടിയിടുക"
+
+#: lib/noticelist.php:647
+msgid "Reply"
+msgstr "മറുപടി"
+
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക"
+
+#: lib/noticelist.php:691
+msgid "Notice repeated"
+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:294
+msgid "Error inserting new profile."
+msgstr ""
+
+#: lib/oauthstore.php:302
+msgid "Error inserting avatar."
+msgstr ""
+
+#: lib/oauthstore.php:322
+msgid "Error inserting remote profile."
+msgstr ""
+
+#. TRANS: Exception thrown when a notice is denied because it has been sent before.
+#: lib/oauthstore.php:362
+msgid "Duplicate notice."
+msgstr "അറിയിപ്പിന്റെ പകർപ്പ്."
+
+#: lib/oauthstore.php:507
+msgid "Couldn't insert new subscription."
+msgstr ""
+
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
+#: lib/personalgroupnav.php:107
+msgctxt "MENU"
+msgid "Replies"
+msgstr "മറുപടികൾ"
+
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "ജനങ്ങൾ"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
+msgid "Favorites"
+msgstr ""
+
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
+msgid "Inbox"
+msgstr "ഇൻബോക്സ്"
+
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
+msgid "Your incoming messages"
+msgstr "താങ്കൾക്ക് വരുന്ന സന്ദേശങ്ങൾ"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
+msgid "Outbox"
+msgstr "ഔട്ട്ബോക്സ്"
+
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
+msgid "Your sent messages"
+msgstr "താങ്കൾ അയച്ച സന്ദേശങ്ങൾ"
+
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
+#: lib/personaltagcloudsection.php:56
+#, php-format
+msgid "Tags in %s's notices"
+msgstr ""
+
+#. TRANS: Displayed as version information for a plugin if no version information was found.
+#: lib/plugin.php:126
+msgid "Unknown"
+msgstr "അജ്ഞാതം"
+
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
+msgid "Subscriptions"
+msgstr ""
+
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
+msgid "All subscriptions"
+msgstr ""
+
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
+msgid "Subscribers"
+msgstr "വരിക്കാർ"
+
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
+msgid "All subscribers"
+msgstr "എല്ലാ വരിക്കാരും"
+
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
+msgid "User ID"
+msgstr "ഉപയോക്തൃ ഐ.ഡി"
+
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
+msgid "Member since"
+msgstr "അംഗമായത്"
+
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "സംഘങ്ങൾ"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
+msgid "Daily average"
+msgstr "ദൈനിക ശരാശരി"
+
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
+msgid "All groups"
+msgstr "എല്ലാ സംഘങ്ങളും"
+
+#. TRANS: Server error displayed when using an unimplemented method.
+#: lib/profileformaction.php:123
+msgid "Unimplemented method."
+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/redirectingaction.php:95
+msgid "No return-to arguments."
+msgstr ""
+
+#: lib/repeatform.php:107
+msgid "Repeat this notice?"
+msgstr "ഈ അറിയിപ്പ് ആവർത്തിക്കണോ?"
+
+#: lib/repeatform.php:132
+msgid "Yes"
+msgstr "അതെ"
+
+#: lib/repeatform.php:132
+msgid "Repeat this notice"
+msgstr "ഈ അറിയിപ്പ് ആവർത്തിക്കുക"
+
+#: lib/revokeroleform.php:91
+#, php-format
+msgid "Revoke the \"%s\" role from this user"
+msgstr ""
+
+#. TRANS: Client error on action trying to visit a non-existing page.
+#: lib/router.php:974
+msgid "Page not found."
+msgstr "താൾ കണ്ടെത്താനായില്ല."
+
+#: lib/sandboxform.php:67
+msgid "Sandbox"
+msgstr "എഴുത്തുകളരി"
+
+#: lib/sandboxform.php:78
+msgid "Sandbox this user"
+msgstr "ഈ ഉപയോക്താവിന്റെ എഴുത്തുകളരി"
+
+#. TRANS: Fieldset legend for the search form.
+#: lib/searchaction.php:120
+msgid "Search site"
+msgstr "സൈറ്റിൽ തിരയുക"
+
+#. TRANS: Used as a field label for the field where one or more keywords
+#. TRANS: for searching can be entered.
+#: lib/searchaction.php:128
+msgid "Keyword(s)"
+msgstr "അടയാളവാക്ക്(വാക്കുകൾ)"
+
+#. TRANS: Button text for searching site.
+#: lib/searchaction.php:130
+msgctxt "BUTTON"
+msgid "Search"
+msgstr "തിരയുക"
+
+#. TRANS: Definition list item with instructions on how to get (better) search results.
+#: lib/searchaction.php:170
+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: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/silenceform.php:67
+msgid "Silence"
+msgstr "നിശബ്ദമാക്കുക"
+
+#: lib/silenceform.php:78
+msgid "Silence this user"
+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/subgroupnav.php:105
+msgid "Invite"
+msgstr "ക്ഷണിക്കുക"
+
+#: lib/subgroupnav.php:106
+#, php-format
+msgid "Invite friends and colleagues to join you on %s"
+msgstr "%s-ൽ നമ്മോടൊപ്പം ചേരാൻ സുഹൃത്തുക്കളേയും സഹപ്രവർത്തകരേയും ക്ഷണിക്കുക"
+
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+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/tagcloudsection.php:56
+msgid "None"
+msgstr "ഒന്നുമില്ല"
+
+#. TRANS: Server exception displayed if a theme name was invalid.
+#: lib/theme.php:74
+msgid "Invalid theme name."
+msgstr "ദൃശ്യരൂപത്തിന്റെ പേര് അസാധുവാണ്."
+
+#: lib/themeuploader.php:50
+msgid "This server cannot handle theme uploads without ZIP support."
+msgstr ""
+
+#: lib/themeuploader.php:58 lib/themeuploader.php:61
+msgid "The theme file is missing or the upload failed."
+msgstr "ദൃശ്യരൂപത്തിനുള്ള പ്രമാണം ലഭ്യമല്ല അല്ലെങ്കിൽ അപ്ലോഡ് പരാജയപ്പെട്ടു."
+
+#: lib/themeuploader.php:91 lib/themeuploader.php:102
+#: lib/themeuploader.php:279 lib/themeuploader.php:283
+#: lib/themeuploader.php:291 lib/themeuploader.php:298
+msgid "Failed saving theme."
+msgstr "ദൃശ്യരൂപം സേവ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു."
+
+#: lib/themeuploader.php:147
+msgid "Invalid theme: bad directory structure."
+msgstr ""
+
+#: lib/themeuploader.php:166
+#, php-format
+msgid "Uploaded theme is too large; must be less than %d byte uncompressed."
+msgid_plural ""
+"Uploaded theme is too large; must be less than %d bytes uncompressed."
+msgstr[0] ""
+msgstr[1] ""
+
+#: lib/themeuploader.php:179
+msgid "Invalid theme archive: missing file css/display.css"
+msgstr ""
+
+#: lib/themeuploader.php:219
+msgid ""
+"Theme contains invalid file or folder name. Stick with ASCII letters, "
+"digits, underscore, and minus sign."
+msgstr ""
+
+#: lib/themeuploader.php:225
+msgid "Theme contains unsafe file extension names; may be unsafe."
+msgstr ""
+
+#: lib/themeuploader.php:242
+#, php-format
+msgid "Theme contains file of type '.%s', which is not allowed."
+msgstr ""
+
+#: lib/themeuploader.php:260
+msgid "Error opening theme archive."
+msgstr ""
+
+#: lib/topposterssection.php:74
+msgid "Top posters"
+msgstr ""
+
+#. TRANS: Title for the form to unblock a user.
+#: lib/unblockform.php:67
+msgctxt "TITLE"
+msgid "Unblock"
+msgstr "തടയൽ നീക്കുക"
+
+#: lib/unsandboxform.php:69
+msgid "Unsandbox"
+msgstr ""
+
+#: lib/unsandboxform.php:80
+msgid "Unsandbox this user"
+msgstr ""
+
+#: lib/unsilenceform.php:67
+msgid "Unsilence"
+msgstr ""
+
+#: lib/unsilenceform.php:78
+msgid "Unsilence this user"
+msgstr ""
+
+#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
+msgid "Unsubscribe from this user"
+msgstr ""
+
+#: lib/unsubscribeform.php:137
+msgid "Unsubscribe"
+msgstr ""
+
+#. TRANS: Exception text shown when no profile can be found for a user.
+#. TRANS: %1$s is a user nickname, $2$d is a user ID (number).
+#: lib/usernoprofileexception.php:60
+#, php-format
+msgid "User %1$s (%2$d) has no profile record."
+msgstr ""
+
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
+msgid "Edit Avatar"
+msgstr ""
+
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
+msgid "User actions"
+msgstr "ഉപയോക്തൃ പ്രവൃത്തികൾ"
+
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
+msgid "User deletion in progress..."
+msgstr "ഉപയോക്താവിനെ നീക്കം ചെയ്യൽ പുരോഗമിക്കുന്നു..."
+
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
+msgid "Edit profile settings"
+msgstr "ക്രമീകരണങ്ങളുടെ സജ്ജീകരണം മാറ്റുക"
+
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
+msgid "Edit"
+msgstr "തിരുത്തുക"
+
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
+msgid "Send a direct message to this user"
+msgstr "ഈ ഉപയോക്താവിന് നേരിട്ട് സന്ദേശമയയ്ക്കുക"
+
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
+msgid "Message"
+msgstr "സന്ദേശം"
+
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
+msgid "Moderate"
+msgstr "മാദ്ധ്യസ്ഥം വഹിക്കുക"
+
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
+msgid "User role"
+msgstr ""
+
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
+msgctxt "role"
+msgid "Administrator"
+msgstr "കാര്യനിർവ്വാഹക(ൻ)"
+
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
+msgctxt "role"
+msgid "Moderator"
+msgstr "മദ്ധ്യസ്ഥ(ൻ)"
+
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "ലോഗിൻ ചെയ്തിട്ടില്ല"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1309
+msgid "a few seconds ago"
+msgstr "ഏതാനം സെക്കന്റുകൾ മുമ്പ്"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1312
+msgid "about a minute ago"
+msgstr "ഏകദേശം ഒരു മിനിറ്റ് മുമ്പ്"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1316
+#, php-format
+msgid "about one minute ago"
+msgid_plural "about %d minutes ago"
+msgstr[0] "ഏകദേശം ഒരു മിനിറ്റ് മുമ്പ്"
+msgstr[1] "ഏകദേശം %d മിനിറ്റ് മുമ്പ്"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1319
+msgid "about an hour ago"
+msgstr "ഏകദേശം ഒരു മണിക്കൂർ മുമ്പ്"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1323
+#, php-format
+msgid "about one hour ago"
+msgid_plural "about %d hours ago"
+msgstr[0] "ഏകദേശം ഒരു മണിക്കൂർ മുമ്പ്"
+msgstr[1] "ഏകദേശം %d മണിക്കൂർ മുമ്പ്"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1326
+msgid "about a day ago"
+msgstr "ഏകദേശം ഒരു ദിവസം മുമ്പ്"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1330
+#, php-format
+msgid "about one day ago"
+msgid_plural "about %d days ago"
+msgstr[0] "ഏകദേശം ഒരു ദിവസം മുമ്പ്"
+msgstr[1] "ഏകദേശം %d ദിവസം മുമ്പ്"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1333
+msgid "about a month ago"
+msgstr "ഏകദേഅം ഒരു മാസം മുമ്പ്"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1337
+#, php-format
+msgid "about one month ago"
+msgid_plural "about %d months ago"
+msgstr[0] "ഏകദേശം ഒരു മാസം മുമ്പ്"
+msgstr[1] "ഏകദേശം %d മാസം മുമ്പ്"
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1340
+msgid "about a year ago"
+msgstr "ഏകദേശം ഒരു വർഷം മുമ്പ്"
+
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
+#, php-format
+msgid "%s is not a valid color! Use 3 or 6 hex characters."
+msgstr "%s സാധുതയുള്ള നിറമല്ല! 3 അല്ലെങ്കിൽ 6 ഹെക്സ് അക്ഷരങ്ങൾ ഉപയോഗിക്കുക."
+
+#. TRANS: %s is the URL to the StatusNet site's Instant Messaging settings.
+#: lib/xmppmanager.php:287
+#, php-format
+msgid "Unknown user. Go to %s to add your address to your account"
+msgstr ""
+"ഉപയോക്താവിനെക്കുറിച്ച് അറിവില്ല. %s എന്നതിൽ ചെന്ന് താങ്കളുടെ അംഗത്വത്തിൽ താങ്കളുടെ വിലാസം "
+"ചേർക്കുക."
+
+#. TRANS: Response to XMPP source when it sent too long a message.
+#. TRANS: %1$d the maximum number of allowed characters (used for plural), %2$d is the sent number.
+#: lib/xmppmanager.php:406
+#, php-format
+msgid "Message too long. Maximum is %1$d character, you sent %2$d."
+msgid_plural "Message too long. Maximum is %1$d characters, you sent %2$d."
+msgstr[0] ""
+"സന്ദേശത്തിന് നീളം കൂടുതലാണ്. പരമാവധി %1$d അക്ഷരം മാത്രം, താങ്കൾ അയച്ചത് %2$d അക്ഷരങ്ങൾ."
+msgstr[1] ""
+"സന്ദേശത്തിന് നീളം കൂടുതലാണ്. പരമാവധി %1$d അക്ഷരങ്ങൾ, താങ്കൾ അയച്ചത് %2$d അക്ഷരങ്ങൾ."
+
+#. TRANS: Exception.
+#: lib/xrd.php:63
+msgid "Invalid XML."
+msgstr "അസാധുവായ എക്സ്.എം.എൽ.."
+
+#. TRANS: Exception.
+#: lib/xrd.php:68
+msgid "Invalid XML, missing XRD root."
+msgstr ""
+
+#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
+#: scripts/restoreuser.php:62
+#, php-format
+msgid "Getting backup from file '%s'."
+msgstr ""
diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po
index 8c5ac55d3f..1bf6d559d5 100644
--- a/locale/nb/LC_MESSAGES/statusnet.po
+++ b/locale/nb/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Norwegian (bokmål) (Norsk (bokmål))
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Jon Harald Søby
# Author: Laaknor
@@ -11,17 +11,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:07+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:25+0000\n"
"Language-Team: Norwegian (bokmål) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -76,8 +76,9 @@ msgid "Save access settings"
msgstr "Lagre tilgangsinnstillinger"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -87,13 +88,13 @@ msgstr "Lagre tilgangsinnstillinger"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Lagre"
@@ -101,7 +102,7 @@ msgstr "Lagre"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Ingen slik side."
@@ -111,6 +112,8 @@ msgstr "Ingen slik side."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -126,13 +129,23 @@ msgstr "Ingen slik side."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -140,15 +153,15 @@ msgstr "Ingen slik side."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Ingen slik bruker."
@@ -162,9 +175,10 @@ msgstr "%1$s og venner, side %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s og venner"
@@ -277,14 +291,13 @@ msgstr "Oppdateringer fra %1$s og venner på %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
#: actions/apitimelineuser.php:206 actions/apiusershow.php:100
-#, fuzzy
msgid "API method not found."
-msgstr "API-metode ikke funnet!"
+msgstr "API-metode ikke funnet."
#. TRANS: Client error message. POST is a HTTP command. It should not be translated.
#. TRANS: Client error. POST is a HTTP command. It should not be translated.
@@ -310,10 +323,23 @@ msgid ""
msgstr "Du må angi en verdi for parameteren 'device' med en av: sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
-#, fuzzy
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
-msgstr "Klarte ikke å oppdatere bruker."
+msgstr "Kunne ikke oppdatere bruker."
#. TRANS: Client error displayed if a user profile could not be found.
#. TRANS: Client error displayed when a user has no profile.
@@ -321,21 +347,25 @@ msgstr "Klarte ikke å oppdatere bruker."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Brukeren har ingen profil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
-#, fuzzy
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
-msgstr "Klarte ikke å lagre profil."
+msgstr "Kunne ikke lagre profil."
#. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit.
#. TRANS: %s is the number of bytes of the CONTENT_LENGTH.
@@ -343,8 +373,8 @@ msgstr "Klarte ikke å lagre profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -364,13 +394,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Kunne ikke lagre dine innstillinger for utseende."
@@ -378,49 +409,60 @@ msgstr "Kunne ikke lagre dine innstillinger for utseende."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
-#, fuzzy
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
-msgstr "Klarte ikke å oppdatere bruker."
+msgstr "Kunne ikke oppdatere din profils utseende."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+#, fuzzy
+msgctxt "ATOM"
msgid "Main"
-msgstr ""
+msgstr "Hoved"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s tidslinje"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
-#, fuzzy, php-format
+#, php-format
msgid "%s subscriptions"
-msgstr "Alle abonnementer"
+msgstr "%s abonnementer"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Favoritter"
+msgstr "%s favoritter"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "%s gruppemedlemmer"
+msgstr "%s medlemsskap"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Du kan ikke blokkere deg selv!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Blokkering av bruker mislyktes."
@@ -476,7 +518,8 @@ msgstr "Fant ikke mottakeren."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Kan ikke sende direktemeldinger til brukere du ikke er venn med."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -500,8 +543,9 @@ msgid "This status is already a favorite."
msgstr "Denne statusen er allerede en favoritt."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Kunne ikke opprette favoritt."
@@ -511,7 +555,8 @@ msgid "That status is not a favorite."
msgstr "Den statusen er ikke en favoritt."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Kunne ikke slette favoritt."
@@ -539,9 +584,8 @@ msgstr "Du kan ikke slutte å følge deg selv."
#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
#: actions/apifriendshipsexists.php:88
-#, fuzzy
msgid "Two valid IDs or nick names must be supplied."
-msgstr "To gyldige ID-er eller screen_names må oppgis."
+msgstr "To gyldige ID-er eller kallenavn må oppgis."
#. TRANS: Client error displayed when a source user could not be determined showing friendship.
#: actions/apifriendshipsshow.php:131
@@ -557,9 +601,9 @@ msgstr "Kunne ikke finne målbruker."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Det nicket er allerede i bruk. Prøv et annet."
@@ -567,21 +611,22 @@ msgstr "Det nicket er allerede i bruk. Prøv et annet."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Ugyldig nick."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Hjemmesiden er ikke en gyldig URL."
@@ -589,23 +634,24 @@ msgstr "Hjemmesiden er ikke en gyldig URL."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Fullt navn er for langt (maks 255 tegn)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -616,9 +662,9 @@ msgstr[1] "Beskrivelsen er for lang (maks %d tegn)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Plasseringen er for lang (maks 255 tegn)."
@@ -628,8 +674,8 @@ msgstr "Plasseringen er for lang (maks 255 tegn)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -646,18 +692,16 @@ msgstr "Ugyldig alias: «%s»."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Aliaset «%s» er allerede i bruk. Prøv et annet."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Alias kan ikke være det samme som kallenavn."
@@ -668,28 +712,32 @@ msgstr "Alias kan ikke være det samme som kallenavn."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Gruppe ikke funnet."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Du er allerede medlem av den gruppen."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Du har blitt blokkert fra den gruppen av administratoren."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Kunne ikke legge bruker %1$s til gruppe %2$s."
@@ -701,9 +749,11 @@ msgstr "Du er ikke et medlem av denne gruppen."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -740,7 +790,7 @@ msgid "Upload failed."
msgstr "Opplasting feilet."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "Ugyldig symbol."
@@ -763,20 +813,25 @@ msgid "Request token already authorized."
msgstr "Du er ikke autorisert."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen."
@@ -793,18 +848,22 @@ msgstr "Databasefeil ved innsetting av oauth_token_association."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Uventet skjemainnsending."
@@ -854,29 +913,31 @@ msgstr "Konto"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Nick"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Passord"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -950,6 +1011,7 @@ msgstr "Du kan ikke slette statusen til en annen bruker."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -969,42 +1031,54 @@ msgstr "Kan ikke gjenta din egen notis."
msgid "Already repeated that notice."
msgstr "Allerede gjentatt den notisen."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
-#, fuzzy
msgid "HTTP method not supported."
-msgstr "API-metode ikke funnet!"
+msgstr "HTTP-metoden støttes ikke."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
-msgstr "Formatet støttes ikke."
+msgid "Unsupported format: %s."
+msgstr "Formatet støttes ikke: %s"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Status slettet."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Ingen status med den ID-en funnet."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
-msgstr ""
+msgstr "Kan bare slette med Atom-formatet."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Kan ikke slette notisen."
-#: actions/apistatusesshow.php:243
-#, fuzzy, php-format
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
+#, php-format
msgid "Deleted notice %d"
-msgstr "Slett notis"
+msgstr "Slettet notis %d"
#. TRANS: Client error displayed when the parameter "status" is missing.
#: actions/apistatusesupdate.php:221
@@ -1058,7 +1132,7 @@ msgstr "%1$s-oppdateringer markert som favoritt av %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Kunne ikke generere mating for gruppe - %s"
@@ -1079,13 +1153,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s oppdateringer som svarer på oppdateringer fra %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s offentlig tidslinje"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s oppdateringer fra alle sammen!"
@@ -1124,59 +1199,56 @@ msgstr "Oppdateringer merket med %1$s på %2$s!"
#. TRANS: Client error displayed trying to add a notice to another user's timeline.
#: actions/apitimelineuser.php:297
-#, fuzzy
msgid "Only the user can add to their own timeline."
-msgstr "Bare brukeren kan lese sine egne postbokser."
+msgstr "Bare brukeren kan legge til sin egen tidslinje."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
msgid "Only accept AtomPub for Atom feeds."
-msgstr ""
+msgstr "Aksepterer kun AtomPub for Atom-matinger."
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr ""
+msgstr "Atom-innlegget kan ikke være tomt."
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr ""
+msgstr "Atom-innlegget må være velformatert XML."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
-msgstr ""
+msgstr "Atom-innlegget må være en Atom-oppføring."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr ""
+msgstr "Kan bare håndtere POST-handlinger."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr ""
+msgstr "Kan ikke håndtere handlingsobjekttype «%s»."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Finn innhold i notiser"
+msgstr "Inget innhold for notis %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
-msgstr ""
-
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
+msgstr "Notis med URI «%s» finnes allerede."
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
@@ -1184,151 +1256,219 @@ msgid "API method under construction."
msgstr "API-metode under utvikling."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Bruker ikke funnet."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Ingen slik profil."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Oppdateringer fra %1$s og venner på %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Kunne ikke sette inn bekreftelseskode."
+msgid "Cannot add someone else's subscription."
+msgstr "Kan ikke legge til noen andres abonnement"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Kan bare håndtere POST-handlinger."
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Finn innhold i notiser"
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
msgid "Unknown note."
-msgstr "Ukjent"
+msgstr "Ukjent notat."
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Legg til i favoritter"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Ingen slik profil."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s gruppemedlemmer"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "%1$s grupper %2$s er et medlem av."
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Kan ikke legge til noen andres abonnement"
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Kan bare håndtere POST-handlinger."
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Ukjent"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Alle medlemmer"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Ingen slik fil."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Kunne ikke slette favoritt."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Ingen slik gruppe."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Alle medlemmer"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "API-metode ikke funnet!"
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Ingen slik profil."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Ikke autorisert."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Kunne ikke slette favoritt."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Ingen slik profil."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Ikke autorisert."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Kunne ikke slette favoritt."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Fjernabonner"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Ukjent filtype"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Alle abonnementer"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1337,11 +1477,15 @@ msgstr "Ingen slike vedlegg."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Ingen kallenavn."
@@ -1358,7 +1502,7 @@ msgstr "Ugyldig størrelse"
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Brukerbilde"
@@ -1371,41 +1515,51 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Du kan laste opp en personlig avatar. Maks filstørrelse er %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Bruker uten samsvarende profil."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Avatarinnstillinger"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Opprinnelig"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Forhåndsvis"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Slett"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Last opp"
@@ -1421,31 +1575,72 @@ msgstr "Beskjær"
msgid "No file uploaded."
msgstr "Ingen fil lastet opp."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Velg et kvadratisk utsnitt av bildet som din avatar."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Mistet våre fildata."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Brukerbildet har blitt oppdatert."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Oppdatering av avatar mislyktes."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Avatar slettet."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Bare innloggede brukere kan repetere notiser."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Bakgrunn"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1453,7 +1648,8 @@ msgstr "Du har allerede blokkert den brukeren."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Blokker brukeren"
@@ -1476,15 +1672,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Nei"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Ikke blokker denne brukeren"
#. TRANS: Button label on the user block form.
@@ -1495,15 +1691,15 @@ msgstr "Ikke blokker denne brukeren"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Ja"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Blokker denne brukeren"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1511,31 +1707,6 @@ msgstr "Blokker denne brukeren"
msgid "Failed to save block information."
msgstr "Kunne ikke lagre blokkeringsinformasjon."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Ingen slik gruppe."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1605,23 +1776,6 @@ msgstr "Ukjent adressetype %s."
msgid "That address has already been confirmed."
msgstr "Den adressen har allerede blitt bekreftet."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Klarte ikke å oppdatere bruker."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1646,11 +1800,85 @@ msgid "Conversation"
msgstr "Samtale"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Notiser"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Bare innloggede brukere kan repetere notiser."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Du kan ikke slette brukere."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Avatar slettet."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Opprett en konto"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Bekreft"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Du kan ikke slette brukere."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Du kan ikke slette brukere."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1664,14 +1892,14 @@ msgstr "Program ikke funnet."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Du er ikke eieren av dette programmet."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
#, fuzzy
msgid "There was a problem with your session token."
msgstr "Det var et problem med din sesjons-autentisering. Prøv igjen."
@@ -1695,12 +1923,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Ikke slett dette programmet"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Slett dette programmet"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1709,8 +1939,10 @@ msgid "You must be logged in to delete a group."
msgstr "Du må være innlogget for å slette en gruppe."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "ngen kallenavn eller ID."
@@ -1753,25 +1985,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
-msgstr "Ikke slett denne notisen"
+msgid "Do not delete this group."
+msgstr "Ikke slett denne gruppen"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
-msgstr "Slett denne brukeren"
+msgid "Delete this group."
+msgstr "Slett denne gruppen"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Ikke logget inn."
@@ -1798,27 +2036,40 @@ msgstr "Er du sikker på at du vil slette denne notisen?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Ikke slett denne notisen"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Slett denne notisen"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Du kan ikke slette brukere."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Du kan bare slette lokale brukere."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Slett bruker"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Slett bruker"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1826,80 +2077,102 @@ msgstr ""
"Er du sikker på at du vil slette denne brukeren? Dette vil slette alle data "
"om brukeren fra databasen, uten sikkerhetskopi."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Ikke slett denne gruppen"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Slett denne brukeren"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Utseende"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Ugyldig logo-URL."
-#: actions/designadminpanel.php:340
-#, fuzzy
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
-msgstr "Ugyldig logo-URL."
+msgstr "Ugyldig SSL-logo-URL."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Tema ikke tilgjengelig: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Endre logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Nettstedslogo"
-#: actions/designadminpanel.php:457
-#, fuzzy
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
-msgstr "Nettstedslogo"
+msgstr "SSL-logo"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Endre tema"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Nettstedstema"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Tema for nettstedet."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Egendefinert tema"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Du kan laste opp et egendefinert StatusNet-tema som et .ZIP-arkiv."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Endre bakgrunnsbilde"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Bakgrunn"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1908,98 +2181,108 @@ msgstr ""
"Du kan laste opp et bakgrunnsbilde for nettstedet. Maks filstørrelse er %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "På"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Av"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Slå på eller av bakgrunnsbilde."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Gjenta bakgrunnsbildet"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Endre farger"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Innhold"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Sidelinje"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Tekst"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Lenker"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avansert"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Egendefinert CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Bruk standard"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Gjenopprett standardutseende"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Tilbakestill til standardverdier"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Lagre"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Lagre utseende"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Denne notisen er ikke en favoritt!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Legg til i favoritter"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Inget slikt dokument «%s»"
#. TRANS: Title for "Edit application" form.
@@ -2014,7 +2297,7 @@ msgid "You must be logged in to edit an application."
msgstr "Du må være innlogget for å redigere et program."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Inget slikt program."
@@ -2024,63 +2307,71 @@ msgid "Use this form to edit your application."
msgstr "Bruk dette skjemaet for å redigere programmet ditt."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Navn kreves."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
-#, fuzzy
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
-msgstr "Navn er for langt (maks 250 tegn)."
+msgstr "Navnet er for langt (maks 255 tegn)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Navn allerede i bruk. Prøv et annet."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Beskrivelse kreves."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Kilde-URL er for lang."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "Kilde-URL er ikke gyldig."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organisasjon kreves."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
-#, fuzzy
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "Organisasjon er for lang (maks 255 tegn)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Hjemmeside for organisasjon kreves."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Anrop er for langt."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "Anrops-URL er ikke gyldig."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Kunne ikke oppdatere programmet."
@@ -2091,14 +2382,17 @@ msgid "Edit %s group"
msgstr "Rediger %s gruppe"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Du må være innlogget for å opprette en gruppe."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Du må være en administrator for å redigere gruppen."
@@ -2109,63 +2403,65 @@ msgstr "Bruk dette skjemaet for å redigere gruppen."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Ugyldig alias: «%s»"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Kunne ikke oppdatere gruppe."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Kunne ikke opprette alias."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Lagret valg."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "E-postinnstillinger"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Velg hvordan du mottar e-post fra %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "E-postadresse"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Nåværende bekreftede e-postadresse"
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Fjern"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2178,44 +2474,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "E-postadresse («brukernavn@eksempel.org»)"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Legg til"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "innkommende e-post"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Jeg vil poste notiser med e-post."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Send e-post til denne adressen for å poste nye notiser."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Angi en ny e-postadresse for å poste til; fjerner den gamle."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2223,87 +2519,89 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Ny"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "E-postinnstillinger"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Send meg varsler om nye abonnementer gjennom e-post."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Send meg en e-post når noen legger min notis til som favoritt."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Send meg en e-post når noen sender meg en privat melding."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Send meg en e-post når noen sender meg et «@-svar»."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Tillat venner å knuffe meg og sende meg en e-post."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publiser en MicroID for min e-postadresse."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "E-postinnstillinger lagret."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Ingen e-postadresse."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Klarer ikke normalisere epostadressen"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Ugyldig e-postadresse."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Det er allerede din e-postadresse."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Den e-postadressen tilhører allerede en annen bruker."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Kunne ikke sette inn bekreftelseskode."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2312,89 +2610,105 @@ msgstr ""
"din (og søppelboksen) for koden, og hvordan du skal bruke den."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Ingen ventende bekreftelse å avbryte."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Dette er feil e-postadresse."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Kunne ikke slette e-postbekreftelse."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "E-postbekreftelse avbrutt."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Det er ikke din e-postadresse."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "E-postadressen ble fjernet."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Ingen innkommende e-postadresse."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Kunne ikke oppdatere brukeroppføring."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Inkommende e-postadresse fjernet."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Ny innkommende e-postadresse lagt til."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Denne notisen er allerede en favoritt."
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Fjern favoritt"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Populære notiser"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Populære notiser, side %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "De mest populære notisene på nettstedet akkurat nå."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Favorittnotiser vises på denne siden, men det er ingen som har noen "
"favoritter ennå."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2403,7 +2717,9 @@ msgstr ""
"Vær den første til å legge en notis til dine favoritter ved å klikke på "
"favoritt-knappen ved siden av notisen du liker."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2412,142 +2728,186 @@ msgstr ""
"Hvorfor ikke [registrere en konto](%%action.register%%) og vær den første "
"til å legge notisen til dine favoritter."
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%s sine favorittnotiser"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Oppdateringer markert som favoritt av %1$s på %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Profilerte brukere"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Profilerte brukere, side %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Et utvalg av noen store brukere på %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Ingen notis-ID."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Ingen notis."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Ingen vedlegg."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Ingen opplastede vedlegg."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Forventet ikke denne responsen!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Brukeren som lyttes til finnes ikke."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Du kan bruke det lokale abonnementet!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Brukeren har blokkert deg fra å abonnere."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Du er ikke autorisert."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Fjerntjeneste bruker ukjent versjon av OMB-protokollen."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Feil ved oppdatering av fjernprofil."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Ingen slik fil."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Kan ikke lese fil."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Ugyldig rolle."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Denne rollen er reservert og kan ikke stilles inn."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Du kan ikke tildele brukerroller på dette nettstedet."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Bruker har allerede denne rollen."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Ingen profil oppgitt."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Ingen profil med den ID'en."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Ingen gruppe oppgitt."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Bare en admin kan blokkere gruppemedlemmer."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Bruker er allerede blokkert fra gruppe."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Bruker er ikke et medlem av gruppa."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Blokker bruker fra gruppe"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2559,32 +2919,40 @@ msgstr ""
"fremtiden."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Ikke blokker denne brukeren fra denne gruppa"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Blokker denne brukeren fra denne gruppen"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Databasefeil ved blokkering av bruker fra gruppe."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Ingen ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Du må være logget inn for å redigere en gruppe."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Gruppeutseende"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2592,121 +2960,141 @@ msgstr ""
"Tilpass hvordan gruppen din ser ut med et bakgrunnsbilde og en fargepalett "
"av ditt valg."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Kunne ikke oppdatere utseende."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Kunne ikke lagre dine innstillinger for utseende."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Utseende lagret."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Gruppelogo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "Du kan laste opp en logo for gruppen din. Maks filstørrelse er %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Last opp"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Beskjær"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Velg et kvadratisk område av bildet som skal bli logoen."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo oppdatert."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Kunne ikke oppdatere logo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s gruppemedlemmer"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s gruppemedlemmer, side %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "En liste over brukerne i denne gruppen."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Administrator"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Blokker"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Blokker denne brukeren"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Gjør brukeren til en administrator for gruppen"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Gjør til administrator"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Gjør denne burkeren til administrator"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Oppdateringer fra medlemmer av %1$s på %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grupper"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Grupper, side %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"%%%%site.name%%%%-grupper lar deg finne og snakke med mennesker med lignende "
"interesser. Etter at du blir med i en gruppe kan du sende meldinger til alle "
@@ -2714,11 +3102,13 @@ msgstr ""
"Prøv å [søke etter en](%%%%action.groupsearch%%%%) eller [start din egen.](%%"
"%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Opprett en ny gruppe"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2727,25 +3117,33 @@ msgstr ""
"Søk etter grupper på %%site.name%% etter navn, lokasjon eller beskrivelse. "
"Skill nøkkelord med mellomrom; de må være minst 3 tegn eller lengre."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Gruppesøk"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Ingen resultat."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Om du ikke finner gruppen du søker etter kan du [opprette den](%%action."
"newgroup%%) selv."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2755,135 +3153,145 @@ msgstr ""
"(%%action.newgroup%%) selv!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Bare en admin kan oppheve blokkering av gruppemedlemmer."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Bruker er ikke blokkert fra gruppe."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Feil under oppheving av blokkering."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Innstillinger for direktemeldinger"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Du kan sende og motta notiser gjennom Jabber/GTalk [direktemeldinger](%%doc."
"im%%). Konfigurer adresse og innstillinger under."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "Direktemeldinger ikke tilgjengelig."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Direktemeldingsadresse"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Nåværende bekreftede Jabber/GTak-adresse."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Venter på godkjenning. Sjekk din Jabber/GTalk-konto for en melding med "
"instruksjoner (la du %s til vennelisten din?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber- og GTalk-adresse, som «brukernavn@example.org». Husk å legge %s til "
"vennelisten din i direktemeldingsklienten din eller på GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Direktemeldingsinnstillinger"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Send meg notiser gjennom Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Post en notis når min Jabber/Gtalk-status endres."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr "Send meg svar gjennom Jabber/GTalk fra personer jeg ikke abonnerer på."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publiser en MicroID for min Jabber/Gtalk-adresse."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Innstillinger lagret."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Ingen Jabber ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Klarer ikke normalisere Jabber-IDen"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Ugyldig Jabber ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Det er allerede din Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber-ID tilhører allerede en annen bruker."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2892,73 +3300,79 @@ msgstr ""
"En bekreftelseskode ble sendt til lynmeldingsadressen du la til. Du må "
"godkjenne %s for å sende meldinger til deg."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Det er feil IM-adresse."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Kunne ikke slette direktemeldingsbekreftelse."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Direktemeldingsbekreftelse avbrutt."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Det er ikke din Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Direktemeldingsadressen ble fjernet."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Innboks for %1$s - side %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Innboks for %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Dette er innboksen din som innholder dine innkommende private meldinger."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Invitasjoner har blitt deaktivert."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Du må være innlogget for å invitere andre brukere til å bruke %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
-#, fuzzy, php-format
+#: actions/invite.php:78
+#, php-format
msgid "Invalid email address: %s."
msgstr "Ugyldig e-postadresse: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Invitasjoner sendt"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Inviter nye brukere"
@@ -2966,7 +3380,7 @@ msgstr "Inviter nye brukere"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Du abonnerer allerede på denne brukeren:"
@@ -2974,8 +3388,8 @@ msgstr[1] "Du abonnerer allerede på disse brukerne:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
-#, fuzzy, php-format
+#: actions/invite.php:146 actions/invite.php:160
+#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
msgstr "%1$s (%2$s)"
@@ -2983,7 +3397,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -2996,7 +3410,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Invitasjon sendt til følgende person:"
@@ -3004,7 +3418,7 @@ msgstr[1] "Invitasjoner sendt til følgende personer:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3013,7 +3427,7 @@ msgstr ""
"seg på nettstedet. Takk for at du hjelper oss å vokse!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3021,27 +3435,28 @@ msgstr ""
"denne tjenesten."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "E-postadresser"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Adresser til venner som skal inviteres (én per linje)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Personlig melding"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Om du vil kan du legge til en personlig melding i invitasjonen."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Send"
@@ -3049,7 +3464,7 @@ msgstr "Send"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s har invitert deg til %2$s"
@@ -3059,7 +3474,7 @@ msgstr "%1$s har invitert deg til %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3111,167 +3526,183 @@ msgstr ""
"\n"
"Vennlig hilsen, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Du må være innlogget for å bli med i en gruppe."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s ble med i gruppen %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Du må være innlogget for å forlate en gruppe."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Du er ikke et medlem av den gruppen."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s forlot gruppe %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Lisens"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Lisens for denne StatusNet-siden"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Ugyldig lisensvalg."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr "Du må oppgi opphavsperson når du bruker enerettslisens."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Ugyldig lisenstittel. Maksimal lengde er 255 tegn."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Ugyldig lisensadresse."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Ugyldig lisensbildeadresse."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "Lisensadressen må være tom eller en gyldig nettadresse."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "Lisensbildet må være tomt eller en gyldig nettadresse."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Lisensvalg"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privat"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Alle rettigheter reservert"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Type"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Velg lisens"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Lisensdetaljer"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Eier"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Navn på eieren av nettstedets innhold (hvis aktuelt)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Lisenstittel"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Tittelen på lisensen."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "Lisensadresse"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "Adresse til mer informasjon om lisensen."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "Lisensbildeadresse"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "Adresse til et bilde som vises med lisensen."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Lagre"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Lagre lisensinnstillinger"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Allerede innlogget."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Feil brukernavn eller passord."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Feil ved innstilling av bruker. Du er mest sannsynlig kke autorisert."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Logg inn"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Logg inn på nettstedet"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Husk meg"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Logg inn automatisk i framtiden. Ikke for datamaskiner du deler med andre!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Mistet eller glemt passordet?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3279,11 +3710,11 @@ msgstr ""
"Av sikkerhetsmessige årsaker, skriv inn brukernavn og passord på nytt før du "
"endrer innstillingene dine."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Logg inn med brukernavn og passord."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3319,19 +3750,22 @@ msgid "New application"
msgstr "Ny applikasjon"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Du må være logget inn for å registrere et program."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Bruk dette skjemaet for å registrere et nytt program."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Nettadresse til kilde kreves."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Kunne ikke opprette program."
@@ -3340,11 +3774,23 @@ msgstr "Kunne ikke opprette program."
msgid "New group"
msgstr "Ny gruppe"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Du har ikke tillatelse til å slette denne gruppen."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Bruk dette skjemaet for å opprette en ny gruppe."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Alias kan ikke være det samme som kallenavn."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Ny melding"
@@ -3395,7 +3841,9 @@ msgstr "Ny notis"
msgid "Notice posted"
msgstr "Notis postet"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3404,16 +3852,21 @@ msgstr ""
"Søk i notiser på %%site.name%% etter deres innhold. Separer nøkkelord med "
"mellomrom; de må være minst 3 tegn lange."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Tekst-søk"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Søkeresultat for «%1$s» på %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3422,7 +3875,9 @@ msgstr ""
"Vær den første til å [poste om dette emnet](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3432,14 +3887,17 @@ msgstr ""
"første til å [poste om dette emnet](%%%%action.newnotice%%%%?status_textarea="
"%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Oppdateringer med «%s»"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Oppdateringer som samsvarer søkestrengen «%1$s» på %2$s."
#: actions/nudge.php:85
@@ -3480,30 +3938,30 @@ msgid "You have not registered any applications yet."
msgstr "Du har ikke registrert noen program ennå."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Tilkoblede program"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "Følgende tilkoblinger finnes for kontoen din."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Du er ikke bruker av dette programmet."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Kunne ikke fjerne tilgang for applikasjonen: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3512,20 +3970,30 @@ msgstr ""
"Du har fjernet tilgangen for %1$s og tilgangstegnet som begynner med %2$s."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Du har ikke tillatt noen programmer å bruke din konto."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Bruker ikke funnet."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Foreldrenotis ikke funnet."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Notisen har ingen profil."
@@ -3535,6 +4003,16 @@ msgstr "Notisen har ingen profil."
msgid "%1$s's status on %2$s"
msgstr "%1$s sin status på %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Fant ikke mottakeren."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3548,16 +4026,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Bare %s-nettadresser over vanlig HTTP."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Ikke et støttet dataformat."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Personsøk"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Notissøk"
@@ -3571,69 +4050,80 @@ msgid "Manage various other options."
msgstr "Håndter diverse andre alternativ."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (gratis tjeneste)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Forkort nettadresser med"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Automatisk fortkortelsestjeneste å bruke."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Vis profilutseender"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Vis eller skjul profilutseender."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Adresseforkortelsestjenesten er for lang (maks 50 tegn)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Ingen bruker-ID spesifisert."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Ingen notis spesifisert."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr ""
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Ugyldig symbol."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
#, fuzzy
msgid "Login token expired."
msgstr "Logg inn på nettstedet"
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Utboks for %1$s - side %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Utboks for %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "Dette er utboksen din som viser alle private meldinger du har sendt."
@@ -3645,7 +4135,8 @@ msgstr "Endre passord"
msgid "Change your password."
msgstr "Endre passordet ditt."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Endre passord"
@@ -3653,48 +4144,50 @@ msgstr "Endre passord"
msgid "Old password"
msgstr "Gammelt passord"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nytt passord"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 eller flere tegn"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Bekreft"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Samme som passord ovenfor"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Endre"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Passord må være minst 6 tegn."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Passordene var ikke like."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Feil gammelt passord"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Feil ved lagring av bruker; ugyldig."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Klarer ikke å lagre nytt passord."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Passordet ble lagret"
@@ -3902,7 +4395,7 @@ msgstr "Mappen bakgrunner er plassert i."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Vedlegg"
@@ -3970,7 +4463,9 @@ msgstr "Tjener SSL-forespørsler skal rettes til."
msgid "Save paths"
msgstr "Lagre stier"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3979,7 +4474,8 @@ msgstr ""
"Søk etter personer på %%site.name%% etter deres navn, lokasjon eller "
"interesser. Skill nøkkelord med mellomrom; de må være 3 tegn eller lengre."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Personsøk"
@@ -4003,12 +4499,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "Notislisensen ‘%1$s’ er ikke kompatibel med nettstedslisensen ‘%2$s’."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profilinnstillinger"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4016,39 +4512,40 @@ msgstr ""
"mer om deg."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profilinformasjon"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1‒64 små bokstaver eller tall, ingen tegnsetting eller mellomrom."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Fullt navn"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Hjemmesiden"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "Adressen til din hjemmeside, blogg eller profil på et annet nettsted."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4056,81 +4553,88 @@ msgstr[0] "Beskriv deg selv og dine interesser på %d tegn"
msgstr[1] "Beskriv deg selv og dine interesser på %d tegn"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Beskriv degselv og dine interesser"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Om meg"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Plassering"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Del min nåværende plassering når jeg poster notiser"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Tagger"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Merkelapper for degselv (bokstaver, nummer, -, ., og _), adskilt med komma "
"eller mellomrom"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Språk"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Foretrukket språk"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Tidssone"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Hvilken tidssone er du vanligvis i?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4138,49 +4642,53 @@ msgstr[0] "Biografien er for lang (maks %d tegn)."
msgstr[1] "Biografien er for lang (maks %d tegn)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Tidssone ikke valgt."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "Språknavnet er for langt (maks 50 tegn)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Ugyldig merkelapp: «%s»"
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Kunne ikke oppdatere bruker for autoabonnering."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Kunne ikke lagre plasseringsinnstillinger."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Klarte ikke å lagre profil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Kunne ikke lagre merkelapper."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Innstillinger lagret."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Opprett en konto"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4256,6 +4764,12 @@ msgstr ""
"Mikroblogg)tjeneste basert på det frie programvareverktøyet [StatusNet]"
"(http://status.net)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s oppdateringer fra alle sammen!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4300,35 +4814,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Merkelappsky"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Du er allerede logget inn!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Ingen slik gjenopprettingskode."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Ikke en gjenopprettingskode."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Gjenopprettingskode for ukjent bruker."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Bekreftelseskodefeil."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Denne bekreftelseskoden er for gammel. Start på nytt."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Klarte ikke å oppdatere bruker med bekreftet e-post."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4336,67 +4858,100 @@ msgstr ""
"Om du har glemt eller mistet passordet ditt kan du få et nytt tilsendt på e-"
"postadressen du har lagret på kontoen din."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Du har blitt identifisert. Skriv inn et nytt passord nedenfor. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Du har blitt identifisert. Skriv inn et nytt passord nedenfor."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Passordgjenoppretting"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Kallenavn eller e-postadresse"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Ditt kallenavn på denne tjeneren eller din registrerte e-postadresse."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Gjenopprett"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Gjenopprett"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Tilbakestill passord"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Gjenopprett passord"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Passordgjenoppretting forespurt"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Passordet ble lagret"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Ukjent handling"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 eller flere tegn. Og ikke glem det!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Nullstill"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Skriv inn et kallenavn eller en e-postadresse."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Ingen bruker med den e-postadressen eller det kallenavnet."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Ingen registrert e-postadresse for den brukeren."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Feil ved lagring av adressebekreftelse."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4404,120 +4959,117 @@ msgstr ""
"Instruksjoner om hvordan du kan gjenopprette ditt passord har blitt sendt "
"til din registrerte e-postadresse."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Uventet tilbakestilling av passord."
-#: actions/recoverpassword.php:365
-#, fuzzy
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Passordet må bestå av 6 eller flere tegn."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Passord og bekreftelse samsvarer ikke."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Feil ved innstilling av bruker."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Nytt passord ble lagret. Du er nå logget inn."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Beklager, kun inviterte personer kan registrere seg."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Beklager, ugyldig invitasjonskode."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registrering vellykket"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registrer"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registrering ikke tillatt."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Du kan ikke registrere deg om du ikke godtar lisensvilkårene."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "E-postadressen finnes allerede."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Ugyldig brukernavn eller passord."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Med dette skjemaet kan du opprette en ny konto. Du kan så poste notiser og "
"knytte deg til venner og kollegaer. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1-64 små bokstaver eller tall, ingen punktum eller mellomrom. Påkrevd."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 eller flere tegn. Påkrevd."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Samme som passord over. Kreves."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-post"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Kun brukt for oppdateringer, kunngjøringer og passordgjenoppretting"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Lengre navn, helst ditt \"ekte\" navn"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL til din hjemmeside, blogg, eller profil på annen nettside."
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Alle rettigheter reservert."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4526,7 +5078,7 @@ msgstr ""
"Mine tekster og filer er tilgjengelig under %s med unntak av disse private "
"dataene: passord, e-postadresse, direktemeldingsadresse og telefonnummer."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4559,7 +5111,7 @@ msgstr ""
"\n"
"Takk for at du registrerte deg og vi håper du kommer til å like tjenesten."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4567,7 +5119,7 @@ msgstr ""
"(Du vil straks motta en epost med instruksjoner om hvordan du kan bekrefte "
"din epostadresse)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4579,80 +5131,89 @@ msgstr ""
"[kompatibelt mikrobloggingsnettsted](%%doc.openmublog%%), skriv inn "
"profilnettadressen din nedenfor."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Fjernabonner"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Abonner på en fjernbruker"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Brukerens kallenavn"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Kallenavn på brukeren du vil følge"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profilnettadresse"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
"Nettadresse til profilen din på en annen kompatibel mikrobloggingstjeneste"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Abonner"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Ugyldig profilnettadresse (dårlig format)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Ikke en gyldig profilnettadresse (inget YADIS-dokument eller ugyldig XRDS "
"definert)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Det er en lokal profil! Logg inn for å abonnere."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
-msgstr ""
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
+msgstr "Kunne ikke sette inn melding."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Bare innloggede brukere kan repetere notiser."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Ingen notis spesifisert."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Du kan ikke gjenta din egen notis."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Du har allerede gjentatt den notisen."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Gjentatt"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Gjentatt!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Svar til %s"
@@ -4702,11 +5263,102 @@ msgstr ""
"Vær den første til å [poste om dette emnet](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Svar til %1$s på %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Bare innloggede brukere kan repetere notiser."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Du har ikke registrert noen program ennå."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Last opp fil"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Filopplasting stoppet grunnet filendelse."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Systemfeil ved opplasting av fil."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Alle medlemmer"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Last opp fil"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Du kan ikke trekke tilbake brukerroller på dette nettstedet."
@@ -4715,7 +5367,7 @@ msgstr "Du kan ikke trekke tilbake brukerroller på dette nettstedet."
msgid "User doesn't have this role."
msgstr "Brukeren har ikke denne rollen."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4757,86 +5409,88 @@ msgstr "Slå på feilsøkingsutdata for økter."
msgid "Save site settings"
msgstr "Lagre nettstedsinnstillinger"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Du må være innlogget for å se et program."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Programprofil"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Ikon"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Navn"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organisasjon"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Beskrivelse"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistikk"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Opprettet av %1$s - %2$s standardtilgang - %3$d brukere"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Programhandlinger"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Tilbakestill nøkkel & hemmelighet"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Slett"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Programinformasjon"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Forbrukernøkkel"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Forbrukerhemmelighet"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
#, fuzzy
msgid "Authorize URL"
msgstr "Forfatter"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4844,36 +5498,43 @@ msgstr ""
"Merk: Vi støtter HMAC-SHA1-signaturer. Vi støtter ikke metoden for "
"klartekstsignatur."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Er du sikker på at du vil tilbakestille din forbrukernøkkel og -hemmelighet?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%1$s sine favorittnotiser, side %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Kunne ikke hente favorittnotiser."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Mating for favoritter av %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Mating for favoritter av %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Mating for favoritter av %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4881,7 +5542,9 @@ msgstr ""
"Du har ikke valgt en favorittnotis ennå. Klikk på favorittknappen på notiser "
"du liker for å bokmerke dem for senere eller for å kaste et søkelys på dem."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4890,7 +5553,10 @@ msgstr ""
"%s har ikke lagt til noen favorittnotiser ennå. Post noe interessant som de "
"vil legge til sine favoritter :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4901,7 +5567,8 @@ msgstr ""
"konto](%%%%action.register%%%%) og post noe interessant som de vil legge til "
"sine favoritter :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Dette er en måte å dele det du liker."
@@ -4919,83 +5586,88 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s gruppe, side %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Gruppeprofil"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "Nettadresse"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Merk"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Alias"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Gruppehandlinger"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Notismating for %s gruppe (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Notismating for %s gruppe (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Notismating for %s gruppe (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF for gruppen %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Medlemmer"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Ingen)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Alle medlemmer"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
-#, fuzzy
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Opprettet"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
-#, fuzzy
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Medlemmer"
@@ -5004,7 +5676,7 @@ msgstr "Medlemmer"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5023,7 +5695,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5037,30 +5709,30 @@ msgstr ""
"korte meldinger om deres liv og interesser. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administratorer"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Ingen slik melding."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Kun senderen og mottakeren kan lese denne meldingen."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Melding til %1$s på %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Melding fra %1$s på %2$s"
@@ -5076,7 +5748,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, side %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5322,74 +5994,76 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Lagre nettstedsnotis"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS-innstillinger"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Du kan motta SMS-meldinger gjennom e-post fra %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS er ikke tilgjengelig."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS-adresse"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Nåværende bekreftede telefonnummer med mulighet for å motta SMS."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Venter på bekreftelse for dette telefonnummeret."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Bekreftelseskode"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Skriv inn koden du mottok på telefonen din."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Bekreft"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Telefonnummer for SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Telefonnummer, ingen tegnsetting eller mellomrom, med retningsnummer"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMS-innstillinger"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5398,32 +6072,32 @@ msgstr ""
"min teleoperatør."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "SMS-innstillinger lagret."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Ingen telefonnummer."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Ingen operatør valgt."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Det er allerede din ditt telefonnummer."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Telefonnummeret tilhører allerede en annen bruker."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5432,39 +6106,39 @@ msgstr ""
"din for koden og hvordan du skal bruke den."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Dette er feil bekreftelsesnummer."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS-bekreftelse avbrutt."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Det er ikke ditt telefonnummer."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Telefonnummeret for SMS ble fjernet."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Mobiloperatør"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Velg en operatør"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5475,8 +6149,9 @@ msgstr ""
"fortell oss."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Ingen kode skrevet inn"
#. TRANS: Menu item for site administration
@@ -5553,15 +6228,19 @@ msgstr "Ikke autorisert."
msgid "Could not save subscription."
msgstr "Kunne ikke lagre merkelapper."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
#, fuzzy
msgid "Subscribed"
msgstr "Abonner"
@@ -5594,7 +6273,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Dette er personene som lytter til %ss notiser."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5602,7 +6281,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5612,7 +6291,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, fuzzy, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5645,7 +6324,7 @@ msgstr "Dette er personene hvis notiser %s lytter til."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5659,23 +6338,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s lytter ikke til noen."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Notismating for %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5709,12 +6389,15 @@ msgstr "Ingen vedlegg."
msgid "Tag %s"
msgstr "Merk %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Brukerprofil"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Foto"
@@ -5731,15 +6414,16 @@ msgstr ""
"Merkelapper for degselv (bokstaver, nummer, -, ., og _), adskilt med komma "
"eller mellomrom"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Ugyldig merkelapp: «%s»"
+
#: 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 "Kunne ikke lagre merkelapper."
-
#: actions/tagother.php:236
#, fuzzy
msgid "Use this form to add tags to your subscribers or subscriptions."
@@ -5750,6 +6434,7 @@ msgstr "Bruk dette skjemaet for å redigere programmet ditt."
msgid "No such tag."
msgstr "Ingen slik side."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Du har ikke blokkert den brukeren."
@@ -5774,7 +6459,7 @@ msgstr "Ingen profil med den ID'en."
msgid "Unsubscribed"
msgstr "Abonner"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, fuzzy, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5806,12 +6491,11 @@ msgstr "Ugyldig velkomsttekst. Maks lengde er 255 tegn."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Ugyldig standardabonnement: '%1$s' er ikke bruker."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5868,113 +6552,152 @@ msgstr "Hvorvidt brukere tillates å invitere nye brukere."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Lagre nettstedsinnstillinger"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autoriser abonnementet"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Lisens"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Godta"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Abonner på denne brukeren"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Avvis"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Avvis dette abonnementet"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr ""
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
#, fuzzy
msgid "Subscription authorized"
msgstr "Abonnement"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
#, fuzzy
msgid "Subscription rejected"
msgstr "Abonnement"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
+msgstr "Kilde-URL er for lang."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "Profil-URL ‘%s’ er for en lokal bruker."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
+msgstr "Profil-URL ‘%s’ er for en lokal bruker."
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr "Notislisensen ‘%1$s’ er ikke kompatibel med nettstedslisensen ‘%2$s’."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "Avatar-URL ‘%s’ er ikke gyldig."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Kan ikke lese avatar-URL ‘%s’"
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Feil bildetype for avatar-URL ‘%s’."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Vis profilutseender"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
#, fuzzy
msgid ""
"Customize the way your profile looks with a background image and a colour "
@@ -5983,7 +6706,7 @@ msgstr ""
"Tilpass hvordan gruppen din ser ut med et bakgrunnsbilde og en fargepalett "
"av ditt valg."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Bon appétit."
@@ -6013,7 +6736,7 @@ msgstr "Prøv å [søke etter grupper](%%action.groupsearch%%) og bli med i dem.
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Oppdateringar fra %1$s på %2$s!"
@@ -6064,7 +6787,7 @@ msgid "Plugins"
msgstr "Programtillegg"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Versjon"
@@ -6073,33 +6796,33 @@ msgid "Author(s)"
msgstr "Forfatter(e)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
#, fuzzy
msgid "Favor"
msgstr "Favoritter"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s /@%s) la din notis til som en favoritt"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6112,7 +6835,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6121,7 +6844,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6129,7 +6852,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Ugyldig filnavn."
@@ -6187,7 +6910,7 @@ msgid "Could not create login token for %s"
msgstr "Kunne ikke opprette alias."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6215,72 +6938,72 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, fuzzy, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Databasefeil ved innsetting av bruker i programmet OAuth."
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problem ved lagring av notis. For lang."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problem ved lagring av notis. Ukjent bruker."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
#, fuzzy
msgid "You are banned from posting notices on this site."
msgstr "Du kan ikke bringe brukere til taushet på dette nettstedet."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problem ved lagring av notis."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problem ved lagring av gruppeinnboks."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Kunne ikke lagre lokal gruppeinformasjon."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6288,14 +7011,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6369,35 +7092,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Velkommen til %1$s, @%2$s."
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Kunne ikke opprette gruppe."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Kunne ikke stille inn gruppe-URI."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Kunne ikke stille inn gruppemedlemskap."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Kunne ikke lagre lokal gruppeinformasjon."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Du kan ikke slette brukere."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6434,214 +7178,217 @@ msgid "Other"
msgstr "Andre"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Side uten tittel"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
#, fuzzy
msgid "Primary site navigation"
msgstr "Endre nettstedskonfigurasjon"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr ""
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Personlig"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Endre e-posten, avateren, passordet og profilen din"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Konto"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Koble til tjenester"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Koble til"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Endre nettstedskonfigurasjon"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Administrator"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviter venner og kollegaer til å bli med deg på %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Inviter"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Logg ut fra nettstedet"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Logg ut"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Opprett en konto"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registrer"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Log inn på nettstedet"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Logg inn"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Hjelp meg."
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Hjelp"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Søk etter personer eller tekst"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Søk"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Nettstedsnotis"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Lokale visninger"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Sidenotis"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr ""
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Hjelp"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Om"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "OSS/FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr ""
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
#, fuzzy
msgid "Privacy"
msgstr "Privat"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Kilde"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Kontakt"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
#, fuzzy
msgid "Badge"
msgstr "Knuff"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Programvarelisens for StatusNet"
@@ -6649,7 +7396,7 @@ msgstr "Programvarelisens for StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6659,7 +7406,7 @@ msgstr ""
"broughtby%%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** er en mikrobloggingtjeneste."
@@ -6668,7 +7415,7 @@ msgstr "**%%site.name%%** er en mikrobloggingtjeneste."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6677,52 +7424,52 @@ msgid ""
msgstr ""
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
#, fuzzy
msgid "Site content license"
msgstr "Programvarelisens for StatusNet"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
#, fuzzy
msgid "Pagination"
msgstr "Registrering"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Etter"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Før"
@@ -6731,10 +7478,80 @@ msgstr "Før"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Ukjent språk «%s»."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Foto"
+msgid "Cannot force remote user to subscribe."
+msgstr "Kunne ikke oppdatere bruker for autoabonnering."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Ukjent filtype"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Du er allerede medlem av den gruppen."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Inget innhold for notis %d."
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Ingen slik bruker."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6810,7 +7627,7 @@ msgid "User configuration"
msgstr "Brukerkonfigurasjon"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Bruker"
@@ -6856,19 +7673,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6891,28 +7712,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Kunne ikke sette inn melding."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Databasefeil ved innsetting av bruker i programmet OAuth."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Databasefeil ved innsetting av bruker i programmet OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Ikon for dette programmet"
@@ -7026,17 +7851,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Tilbakekall"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Ikke slett denne gruppen"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Forfatter"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Leverandør"
@@ -7068,6 +7899,11 @@ msgstr "Endring av passord er ikke tillatt"
msgid "Block"
msgstr "Blokkér"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Blokker denne brukeren"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7183,7 +8019,7 @@ msgstr "Fullt navn: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Posisjon: %s"
@@ -7191,7 +8027,7 @@ msgstr "Posisjon: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Hjemmeside: %s"
@@ -7427,26 +8263,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Ingen konfigurasjonsfil funnet. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Jeg så etter konfigurasjonfiler på følgende seter: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
#, fuzzy
msgid "Go to the installer."
msgstr "Log inn på nettstedet"
@@ -7491,14 +8327,19 @@ msgstr "Tilkoblede program"
msgid "Database error"
msgstr "Databasefeil"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Slett denne brukeren"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Last opp fil"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
#, fuzzy
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
@@ -7518,12 +8359,36 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Av"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Nullstill"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Endre farger"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Bruk standard"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Gjenopprett standardutseende"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Tilbakestill til standardverdier"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Lagre utseende"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Kunne ikke oppdatere utseende."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
@@ -7531,16 +8396,40 @@ msgstr "Nullstill"
msgid "Design defaults restored."
msgstr "Utseende lagret."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Kunne ikke fjerne tilgang for applikasjonen: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
#, fuzzy
msgid "Disfavor this notice"
msgstr "Slett denne notisen"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Fjern favoritt"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
#, fuzzy
msgid "Favor this notice"
msgstr "Repeter denne notisen"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Favoritter"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7557,6 +8446,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "Venn av en venn"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Alle medlemmer"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7594,33 +8496,33 @@ msgstr "Gå"
msgid "Grant this user the \"%s\" role"
msgstr "Innvilg denne brukeren rollen «%s»"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 små bokstaver eller tall, ingen punktum eller mellomrom"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "Nettadresse til hjemmesiden for dette programmet"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Beskriv programmet ditt"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Beskriv programmet ditt med %d tegn"
msgstr[1] "Beskriv programmet ditt med %d tegn"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "Hvor du er, for eksempel «By, fylke (eller region), land»"
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7725,40 +8627,41 @@ msgstr "Rediger %s gruppeegenskaper"
msgid "This page is not available in a media type you accept"
msgstr "Denne siden er ikke tilgjengelig i en mediatype du aksepterer"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Bildefilformatet støttes ikke."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Filen er for stor. Maks filstørrelse er %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Delvis opplasting."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Systemfeil ved opplasting av fil."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Ikke et bilde eller en korrupt fil."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Mistet filen vår."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Ukjent filtype"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7766,7 +8669,7 @@ msgstr[0] "MB"
msgstr[1] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7774,7 +8677,7 @@ msgstr[0] "kB"
msgstr[1] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7795,23 +8698,25 @@ msgstr "Ukjent innbokskilde %d."
msgid "Leave"
msgstr "Forlat"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Logg inn med brukernavn og passord"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Registrer deg for en ny konto"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Bekreftelse av e-postadresse"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7842,14 +8747,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s lytter nå til dine notiser på %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7861,7 +8766,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7888,14 +8793,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Biografi: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Ny e-postadresse for posting til %s"
@@ -7903,7 +8808,7 @@ msgstr "Ny e-postadresse for posting til %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7926,34 +8831,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s status"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS-bekreftelse"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: bekreft telefonnummeret ditt med denne koden:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "Du har blitt knuffet av %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7982,7 +8887,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Ny privat melding fra %s"
@@ -7991,7 +8896,7 @@ msgstr "Ny privat melding fra %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8026,7 +8931,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s /@%s) la din notis til som en favoritt"
@@ -8036,7 +8941,7 @@ msgstr "%s /@%s) la din notis til som en favoritt"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8074,7 +8979,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8087,7 +8992,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) sendte en notis for din oppmerksomhet"
@@ -8098,7 +9003,7 @@ msgstr "%s (@%s) sendte en notis for din oppmerksomhet"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8148,11 +9053,11 @@ msgstr ""
"\n"
"P.S. Du kan slå av disse e-postvarslene her: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Bare brukeren kan lese sine egne postbokser."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8161,10 +9066,6 @@ msgstr ""
"engasjere andre brukere i en samtale. Personer kan sende deg meldinger som "
"bare du kan se."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "fra"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Kunne ikke tolke meldingen."
@@ -8193,38 +9094,6 @@ msgstr "Meldingstypen støttes ikke: %s"
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Filopplasting stoppet grunnet filendelse."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8245,7 +9114,7 @@ msgstr "Kunne ikke avgjøre filens MIME-type."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8254,7 +9123,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8288,18 +9157,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Send"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Melding"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "fra"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8315,11 +9193,11 @@ msgstr "Send en notis"
msgid "What's up, %s?"
msgstr "Hva skjer %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Legg ved"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Legg ved en fil"
@@ -8340,56 +9218,60 @@ msgstr ""
"igjen senere"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "Ø"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "V"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "på"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
#, fuzzy
msgid "in context"
msgstr "Inget innhold."
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Repetert av"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Svar på denne notisen"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Svar"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Slett denne notisen"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Notis repetert"
@@ -8427,77 +9309,113 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "Kunne ikke sette inn bekreftelseskode."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Personlig"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Svar"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favoritter"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Innboks"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Dine innkommende meldinger"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Utboks"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Dine sendte meldinger"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, fuzzy, php-format
msgid "Tags in %s's notices"
msgstr "Bruker har ingen siste notis"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Ukjent"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Abonnement"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Alle abonnementer"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Abonnenter"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Alle abonnenter"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Bruker-ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Medlem siden"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grupper"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Daglig gjennomsnitt"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Alle grupper"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Ikke-implementert metode."
@@ -8548,7 +9466,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Blokker denne brukeren fra denne gruppen"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "API-metode ikke funnet!"
@@ -8642,6 +9560,10 @@ msgstr "Inviter"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviter venner og kollegaer til å bli med deg på %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Abonner på denne brukeren"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8757,66 +9679,83 @@ msgstr "Abonner"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Brukeren har ingen profil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
#, fuzzy
msgid "Edit Avatar"
msgstr "Brukerbilde"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
#, fuzzy
msgid "User actions"
msgstr "Gruppehandlinger"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Endre profilinnstillinger"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Rediger"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Send en direktemelding til denne brukeren"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Melding"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderer"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Brukerrolle"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrator"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderator"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Ikke logget inn."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "noen få sekunder siden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "omtrent ett minutt siden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8824,12 +9763,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "omtrent én time siden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8837,12 +9776,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "omtrent én dag siden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8850,12 +9789,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "omtrent én måned siden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8863,18 +9802,13 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "omtrent ett år siden"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s er ikke en gyldig farge."
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s er ikke en gyldig farge. Bruk 3 eller 6 heksadesimale tegn."
@@ -8895,32 +9829,18 @@ msgstr[0] "Melding for lang - maks er %1$d tegn, du sendte %2$d."
msgstr[1] "Melding for lang - maks er %1$d tegn, du sendte %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Ugyldig størrelse"
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Ingen bruker-ID spesifisert."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po
index da3e2c4b4f..9193da0198 100644
--- a/locale/nl/LC_MESSAGES/statusnet.po
+++ b/locale/nl/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Dutch (Nederlands)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Itavero
@@ -12,17 +12,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:05+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:20+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -77,8 +77,9 @@ msgid "Save access settings"
msgstr "Toegangsinstellingen opslaan"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -88,13 +89,13 @@ msgstr "Toegangsinstellingen opslaan"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Opslaan"
@@ -102,7 +103,7 @@ msgstr "Opslaan"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Deze pagina bestaat niet."
@@ -112,6 +113,8 @@ msgstr "Deze pagina bestaat niet."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -127,13 +130,23 @@ msgstr "Deze pagina bestaat niet."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -141,15 +154,15 @@ msgstr "Deze pagina bestaat niet."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Onbekende gebruiker."
@@ -163,9 +176,10 @@ msgstr "%1$s en vrienden, pagina %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s en vrienden"
@@ -281,7 +295,7 @@ msgstr "Updates van %1$s en vrienden op %2$s."
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -315,7 +329,21 @@ msgstr ""
"waardes: sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Het was niet mogelijk de gebruiker bij te werken."
@@ -325,18 +353,23 @@ msgstr "Het was niet mogelijk de gebruiker bij te werken."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Deze gebruiker heeft geen profiel."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Het was niet mogelijk het profiel op te slaan."
@@ -346,8 +379,8 @@ msgstr "Het was niet mogelijk het profiel op te slaan."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -367,13 +400,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan."
@@ -381,48 +415,59 @@ msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Het was niet mogelijk uw ontwerp bij te werken."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
-msgstr "Hoofdmenu"
+msgstr "Overzicht"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s tijdlijn"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Abonnementen van %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Favorieten"
+msgstr "Favorieten van %s"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "leden van de groep %s"
+msgstr "Lidmaatschappen van %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "U kunt zichzelf niet blokkeren!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Het blokkeren van de gebruiker is mislukt."
@@ -478,7 +523,7 @@ msgstr "De ontvanger is niet aangetroffen."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"U kunt geen privéberichten sturen aan gebruikers die niet op uw "
"vriendenlijst staan."
@@ -503,8 +548,9 @@ msgid "This status is already a favorite."
msgstr "Deze mededeling staat al in uw favorietenlijst."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Het was niet mogelijk een favoriet aan te maken."
@@ -514,7 +560,8 @@ msgid "That status is not a favorite."
msgstr "Deze mededeling staat niet in uw favorietenlijst."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr ""
"Het was niet mogelijk deze mededeling van uw favorietenlijst te verwijderen."
@@ -562,9 +609,9 @@ msgstr "Het was niet mogelijk de doelgebruiker te vinden."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr ""
"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam."
@@ -573,21 +620,22 @@ msgstr ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Ongeldige gebruikersnaam!"
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "De thuispagina is geen geldige URL."
@@ -595,23 +643,24 @@ msgstr "De thuispagina is geen geldige URL."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "De volledige naam is te lang (maximaal 255 tekens)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -622,9 +671,9 @@ msgstr[1] "De beschrijving is te lang (maximaal %d tekens)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "De locatie is te lang (maximaal 255 tekens)."
@@ -634,8 +683,8 @@ msgstr "De locatie is te lang (maximaal 255 tekens)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -652,18 +701,16 @@ msgstr "Ongeldige alias: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "De alias \"%s\" wordt al gebruikt. Geef een andere alias op."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam."
@@ -674,28 +721,32 @@ msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "De groep is niet aangetroffen."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "U bent al lid van die groep."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Een beheerder heeft ingesteld dat u geen lid mag worden van die groep."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s."
@@ -707,9 +758,11 @@ msgstr "U bent geen lid van deze groep."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -746,7 +799,7 @@ msgid "Upload failed."
msgstr "Uploaden is mislukt."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Het opgegeven token of controlegetal is ongeldig."
@@ -766,20 +819,25 @@ msgid "Request token already authorized."
msgstr "Het verzoektoken is al geautoriseerd."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -800,18 +858,22 @@ msgstr ""
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Het formulier is onverwacht ingezonden."
@@ -861,29 +923,31 @@ msgstr "Gebruikersgegevens"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Gebruikersnaam"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Wachtwoord"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -957,6 +1021,7 @@ msgstr "U kunt de status van een andere gebruiker niet verwijderen."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -976,38 +1041,50 @@ msgstr "U kunt uw eigen mededeling niet herhalen."
msgid "Already repeated that notice."
msgstr "U hebt die mededeling al herhaald."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "HTTP-methode wordt niet ondersteund."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, php-format
-msgid "Unsupported format: %s"
-msgstr "Niet-ondersteund formaat: %s"
+msgid "Unsupported format: %s."
+msgstr "Niet-ondersteund formaat: %s."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "De status is verwijderd."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Er is geen status gevonden met dit ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Het is alleen mogelijk te verwijderen via de Atomopmaak."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "Deze mededeling kan niet verwijderd worden."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "Mededeling %d is verwijderd"
@@ -1069,7 +1146,7 @@ msgstr ""
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Het was niet mogelijk een groepfeed te maken - %s"
@@ -1090,13 +1167,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s updates die een reactie zijn op updates van %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s publieke tijdlijn"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s updates van iedereen"
@@ -1140,212 +1218,264 @@ msgstr "Gebruikers kunnen alleen zelf aan hun eigen tijdlijn toevoegen."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
msgstr "Alleen AtomPub voor Atomfeeds accepteren."
-#: actions/apitimelineuser.php:310
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr "Het Atombericht moet een Atomopmaak hebben."
+msgstr "Het Atombericht mag niet leeg zijn."
-#: actions/apitimelineuser.php:315
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr "Het Atombericht moet een Atomopmaak hebben."
+msgstr "Het Atombericht moet correct opgemaakte XML zijn."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr "Het Atombericht moet een Atomopmaak hebben."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
-#, fuzzy
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr "Het is alleen mogelijk om POST-activiteit af te handelen."
+msgstr "Het is alleen mogelijk om POST-activiteiten af te handelen."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
-#, fuzzy, php-format
+#: actions/apitimelineuser.php:345
+#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr "Het is niet mogelijk om het activiteitobjecttype \"%s\" te verwerken"
+msgstr "Het is niet mogelijk om het activiteitobjecttype \"%s\" te verwerken."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Inhoud van mededelingen vinden"
+msgstr "Geen inhoud voor mededeling %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "De mededeling met URI \"%s\" bestaat al."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr "Het AtomPubbericht met onbekende aandachts-URI is %s"
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "De API-functie is in bewerking."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "De pagina is niet aangetroffen."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Het profiel bestaat niet."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Kon nieuw abonnement niet toevoegen."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-#, fuzzy
-msgid "Can only handle Favorite activities."
-msgstr "Het is alleen mogelijk om POST-activiteit af te handelen."
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Het is alleen mogelijk om POST-activiteit af te handelen."
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Onbekend"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Aan favorieten toevoegen"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "Het profiel bestaat niet."
-#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
-msgid "%s group memberships"
-msgstr "leden van de groep %s"
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Mededelingen die %1$s op %2$s op de favorietenlijst heeft geplaatst"
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "Groepen waar %s lid van is"
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "Het is niet mogelijk het abonnement voor iemand anders toe te voegen"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
msgstr ""
+"Het is alleen mogelijk om activiteiten met betrekking tot favorieten af te "
+"handelen."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Het is alleen mogelijk om mededelingen als favoriet aan te merken."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Onbekend mededeling."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Deze mededeling is al een favoriet."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
+#: actions/atompubmembershipfeed.php:144
+#, php-format
+msgid "%s group memberships"
+msgstr "groepslidmaatschappen van %s"
+
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "Groepen waar %1$s lid van is op %2$s"
+
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "Het is niet mogelijk om een lidmaatschap van een ander toe te voegen."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-#, fuzzy
-msgid "Can only handle Join activities."
-msgstr "Het is alleen mogelijk om POST-activiteit af te handelen."
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr ""
+"Het is alleen mogelijk om activiteiten met betrekking tot lidmaatschap af te "
+"handelen."
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Onbekend"
+msgstr "Onbekende groep."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Alle leden"
+msgstr "U bent al lid."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Geblokkeerd door een beheerder."
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "Het bestand bestaat niet."
+msgstr "De favoriet bestaat niet."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr ""
-"Het was niet mogelijk deze mededeling van uw favorietenlijst te verwijderen."
+msgid "Cannot delete someone else's favorite."
+msgstr "Het is niet mogelijk om een favoriet van een ander te verwijderen."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "De opgegeven groep bestaat niet."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "Alle leden"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "HTTP-methode wordt niet ondersteund."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "Geen lid."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+msgid "Cannot delete someone else's membership."
+msgstr "Het is niet mogelijk om een lidmaatschap van een ander te verwijderen."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Het profiel bestaat niet."
+#, php-format
+msgid "No such profile id: %d."
+msgstr "Het profielnummer bestaat niet: %d."
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "U bent niet geabonneerd op dat profiel."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Profiel %1$d is niet geabonneerd op profiel %2$d."
-#: actions/atompubshowsubscription.php:154
-#, fuzzy
-msgid "Can't delete someone else's subscription"
-msgstr "Kon abonnement op eigen gebruiker niet verwijderen."
-
-#: actions/atompubsubscriptionfeed.php:150
-#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "Gebruikers met een abonnement op %s"
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
-#, fuzzy
-msgid "Can only handle Follow activities."
-msgstr "Het is alleen mogelijk om POST-activiteit af te handelen."
-
-#: actions/atompubsubscriptionfeed.php:253
-msgid "Can only follow people."
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
msgstr ""
+"Het is niet mogelijk het abonnement van een andere gebruiker op te zeggen."
-#: actions/atompubsubscriptionfeed.php:262
-#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Onbekend bestandstype"
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "Gebruikers die %1$s volgen op %2$s"
+
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
+msgid "Can only handle Follow activities."
+msgstr ""
+"Het is alleen mogelijk om activiteiten met betrekking tot volgen af te "
+"handelen."
+
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
+msgid "Can only follow people."
+msgstr "Het is alleen mogelijk om mensen te volgen."
+
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "Onbekend profiel %s."
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "U bent al geabonneerd op %s."
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1355,11 +1485,15 @@ msgstr "Deze bijlage bestaat niet."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Geen gebruikersnaam."
@@ -1376,7 +1510,7 @@ msgstr "Ongeldige afmetingen."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1390,41 +1524,51 @@ msgstr ""
"U kunt een persoonlijke avatar uploaden. De maximale bestandsgrootte is %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Gebruiker zonder bijbehorend profiel."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Avatarinstellingen"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Origineel"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Voorvertoning"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Verwijderen"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Uploaden"
@@ -1440,32 +1584,75 @@ msgstr "Uitsnijden"
msgid "No file uploaded."
msgstr "Er is geen bestand geüpload."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
msgstr ""
-"Selecteer een vierkant in de afbeelding om deze als uw avatar in te stellen"
+"Selecteer een vierkant in de afbeelding om deze als uw avatar in te stellen."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Ons bestand is verloren gegaan."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "De avatar is bijgewerkt."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Het bijwerken van de avatar is mislukt."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "De avatar is verwijderd."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Reservekopie van gebruiker maken"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr "Alleen aangemelde gebruikers kunnen hun gebruiker back-uppen."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "U kunt geen back-up van uw gebruiker maken."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+"U kunt een reservekopie van uw gebruikersgegevens maken in de indeling Activity Streams. Dit is een "
+"experimentele functie en levert een onvolledige reservekopie op; "
+"privégegevens van de gebruiker zoals e-mailadres en IM-adres worden niet "
+"meegenomen. Hetzelfde geldt voor geüploade bestanden en directe berichten."
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Reservekopie"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr "Uw gebruiker back-uppen."
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1473,7 +1660,8 @@ msgstr "U hebt deze gebruiker reeds geblokkeerd."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Gebruiker blokkeren"
@@ -1496,16 +1684,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Nee"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
-msgstr "Gebruiker niet blokkeren"
+#: actions/block.php:158
+msgid "Do not block this user."
+msgstr "Deze gebruiker niet blokkeren."
#. TRANS: Button label on the user block form.
#. TRANS: Button label on the delete application form.
@@ -1515,47 +1702,21 @@ msgstr "Gebruiker niet blokkeren"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Ja"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
-msgstr "Deze gebruiker blokkeren"
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "Deze gebruiker blokkeren."
#. TRANS: Server error displayed when blocking a user fails.
#: actions/block.php:189
msgid "Failed to save block information."
msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "De opgegeven groep bestaat niet."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1625,23 +1786,6 @@ msgstr "Onbekend adrestype %s."
msgid "That address has already been confirmed."
msgstr "Dit adres is al bevestigd."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "De gebruiker kon gebruiker niet bijwerkt worden."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1666,11 +1810,86 @@ msgid "Conversation"
msgstr "Dialoog"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Mededelingen"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr "Alleen aangemelde gebruikers kunnen hun gebruiker verwijderen."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "U kunt uw gebruiker niet verwijderen."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Ik weet het zeker."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "U moet de tekst \"%s\" precies in het veld overnemen."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "De gebruiker is verwijderd."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Gebruiker verwijderen"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"Hiermee wordt uw gebruiker permanent verwijderd van deze "
+"server."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+"We raden u aan een reservekopie van uw gegevens te maken "
+"alvorens uw gebruiker te verwijderen."
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Bevestigen"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr ""
+"Voer de volgende tekst in om aan te geven dat u uw gebruiker wilt "
+"verwijderen: \"%s\"."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Uw gebruiker permanent verwijderen"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1684,14 +1903,14 @@ msgstr "De applicatie is niet gevonden."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "U bent niet de eigenaar van deze applicatie."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Er is een probleem met uw sessietoken."
@@ -1714,13 +1933,13 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
-msgstr "Deze applicatie niet verwijderen"
+msgid "Do not delete this application."
+msgstr "Deze applicatie niet verwijderen."
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
-msgstr "Deze applicatie verwijderen"
+msgid "Delete this application."
+msgstr "Deze applicatie verwijderen."
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
@@ -1728,8 +1947,10 @@ msgid "You must be logged in to delete a group."
msgstr "U moet aangemeld zijn om een groep te kunnen verwijderen."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Geen gebruikersnaam of ID."
@@ -1772,24 +1993,30 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
-msgstr "Verwijder deze groep niet"
+msgid "Do not delete this group."
+msgstr "Deze groep niet verwijderen."
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
-msgstr "Groep verwijderen"
+msgid "Delete this group."
+msgstr "Deze groep verwijderen."
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Niet aangemeld."
@@ -1816,27 +2043,37 @@ msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
-msgstr "Deze mededeling niet verwijderen"
+msgid "Do not delete this notice."
+msgstr "Deze mededeling niet verwijderen."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
-msgstr "Deze mededeling verwijderen"
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
+msgstr "Deze mededeling verwijderen."
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "U kunt gebruikers niet verwijderen."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "U kunt alleen lokale gebruikers verwijderen."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Gebruiker verwijderen"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Gebruiker verwijderen"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1845,78 +2082,100 @@ msgstr ""
"worden alle gegevens van deze gebruiker uit de database verwijderd. Het is "
"niet mogelijk ze terug te zetten."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr "Deze gebruiker niet verwijderen."
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
-msgstr "Gebruiker verwijderen"
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "Deze gebruiker verwijderen."
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Uiterlijk"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Instellingen voor de vormgeving van deze StatusNet-website"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "De logo-URL is ongeldig."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "De SSL logo-URL is ongeldig."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "De vormgeving is niet beschikbaar: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Logo wijzigen"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Websitelogo"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "SSL-logo"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Vormgeving wijzigen"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Vormgeving website"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Mogelijke vormgevingen voor deze website."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Aangepaste vormgeving"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "U kunt een vormgeving voor StatusNet uploaden als ZIP-archief."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Achtergrondafbeelding wijzigen"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Achtergrond"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1926,99 +2185,104 @@ msgstr ""
"bestandsgrootte is %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Aan"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Uit"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Achtergrondafbeelding inschakelen of uitschakelen."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Achtergrondafbeelding naast elkaar"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
msgstr "Kleuren wijzigen"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Inhoud"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Menubalk"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Tekst"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Verwijzingen"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Uitgebreid"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Aangepaste CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Standaardinstellingen gebruiken"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
-msgstr "Standaardontwerp toepassen"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
+msgstr "Het standaardontwerp toepassen."
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
-msgstr "Standaardinstellingen toepassen"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr "De standaardinstellingen toepassen."
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Opslaan"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
+msgstr "Ontwerp opslaan."
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
-msgstr "Ontwerp opslaan"
-
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Deze mededeling staat niet op uw favorietenlijst."
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Aan favorieten toevoegen"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
-msgstr "Onbekend document \"%s\""
+msgid "No such document \"%s\"."
+msgstr "Onbekend document \"%s\"."
#. TRANS: Title for "Edit application" form.
#. TRANS: Form legend.
@@ -2032,7 +2296,7 @@ msgid "You must be logged in to edit an application."
msgstr "U moet aangemeld zijn om een applicatie te kunnen bewerken."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "De applicatie bestaat niet."
@@ -2042,61 +2306,71 @@ msgid "Use this form to edit your application."
msgstr "Gebruik dit formulier om uw applicatiegegevens te bewerken."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Een naam is verplicht."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "De naam is te lang (maximaal 255 tekens)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Deze naam wordt al gebruikt. Kies een andere."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Een beschrijving is verplicht"
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "De bron-URL is te lang."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "De bron-URL is niet geldig."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organisatie is verplicht."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "De organisatienaam is te lang (maximaal 255 tekens)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "De homepage voor een organisatie is verplicht."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "De callback is te lang."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "De callback-URL is niet geldig."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Het was niet mogelijk de applicatie bij te werken."
@@ -2107,14 +2381,17 @@ msgid "Edit %s group"
msgstr "Groep %s bewerken"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "U moet aangemeld zijn om een groep aan te kunnen maken."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "U moet beheerder zijn om de groep te kunnen bewerken."
@@ -2125,63 +2402,65 @@ msgstr "Gebruik dit formulier om de groep te bewerken."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Ongeldige alias: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Het was niet mogelijk de groep bij te werken."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Het was niet mogelijk de aliassen aan te maken."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "De instellingen zijn opgeslagen."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "E-mailvoorkeuren"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Uw e-mailinstellingen op %%site.name%% beheren."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "E-mailadres"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Huidige bevestigde e-mailadres"
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Verwijderen"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2194,134 +2473,136 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "E-mailadres, zoals \"gebruikersnaam@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Toevoegen"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Inkomende e-mail"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Ik wil mededelingen per e-mail plaatsen."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Stuur een email naar dit adres om een nieuw bericht te posten"
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
"Stelt een nieuw e-mailadres in voor het ontvangen van berichten. Het "
"bestaande e-mailadres wordt verwijderd."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
+"Om via e-mail mededelingen te kunnen sturen moet er een uniek e-mailadres "
+"voor u gemaakt worden op deze server:"
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nieuw"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "E-mailvoorkeuren"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Mij e-mailen bij nieuwe abonnementen."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Mij e-mailen als iemand mijn mededeling als favoriet instelt."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Mij e-mailen als iemand mij een privébericht zendt."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Mij e-mailen als iemand mij een antwoord met \"@\" erin stuurt."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Vrienden mogen me porren en e-mailen."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Een MicroID voor mijn e-mailadres publiceren."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "De e-mailvoorkeuren zijn opgeslagen."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Geen e-mailadres"
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
-msgstr "Kan het emailadres niet normaliseren"
+#: actions/emailsettings.php:388
+msgid "Cannot normalize that email address."
+msgstr "Kan het e-mailadres niet normaliseren."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Geen geldig e-mailadres."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "U hebt dit e-mailadres als ingesteld als uw e-mailadres."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Dit e-mailadres is al geregistreerd door een andere gebruiker."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
msgstr "De bevestigingscode kon niet ingevoegd worden."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2331,89 +2612,102 @@ msgstr ""
"hoe het te gebruiken."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Er is geen openstaand bevestigingsverzoek om te annuleren."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Dat is het verkeerde e-mailadres."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
msgstr "De e-mailbevestiging kon niet verwijderd worden."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "E-mailbevestiging geannuleerd."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Dit is niet uw e-mailadres."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Het e-mailadres is verwijderd."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Geen binnenkomend e-mailadres"
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
-msgstr "Kan de gebruikersgegevens niet vernieuwen"
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
+msgstr "Kan de gebruikersgegevens niet vernieuwen."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Het e-mailadres voor inkomende mail is verwijderd."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Deze mededeling staat al in uw favorietenlijst."
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
-msgstr "Van favorietenlijst verwijderen"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
+msgstr "Van uw favorietenlijst verwijderen."
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Populaire mededelingen"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Populaire mededelingen, pagina %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "De meest populaire mededelingen op de site op dit moment."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Favoriete mededelingen zijn te zien op deze pagina, maar er zijn nog geen "
"favoriete mededelingen."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2423,7 +2717,9 @@ msgstr ""
"favorieten toevoegen\" te klikken bij mededelingen die u de moeite waard "
"vindt."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2432,146 +2728,190 @@ msgstr ""
"U kunt een [gebruiker aanmaken](%%action.register%%) en de eerste mededeling "
"voor de favorietenlijst plaatsen!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Favoriete mededelingen van %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Updates op de favorietenlijst van %1$s op %2$s."
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Nieuwe gebruikers"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Nieuwe gebruikers, pagina %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
-msgstr "Een selectie van gewaardeerde gebruikers op %s"
+msgid "A selection of some great users on %s."
+msgstr "Een selectie van gewaardeerde gebruikers op %s."
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Geen mededelingnummer."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Geen mededeling."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Geen bijlagen."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Geen toegevoegde bijlagen."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Onverwacht antwoord!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "De gebruiker waarnaar wordt geluisterd bestaat niet."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "U kunt het lokale abonnement gebruiken!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr ""
"Die gebruiker heeft de mogelijkheid om te abonneren voor u geblokkeerd."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "U hebt niet de juiste toegangsrechten."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
"Het was niet mogelijk het verzoektoken te converteren naar een toegangstoken."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
"De diensten op afstand gebruiken een onbekende versie van het OMB-protocol."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr ""
"Er is een fout opgetreden tijdens het bijwerken van het profiel op afstand."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Het bestand bestaat niet."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Het bestand kon niet gelezen worden."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Ongeldige rol."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Deze rol is gereserveerd en kan niet ingesteld worden."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Op deze website kunt u geen gebruikersrollen toekennen."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Deze gebruiker heeft deze rol al."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Er is geen profiel opgegeven."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Er is geen profiel met dat ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Er is geen groep aangegeven."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Alleen een beheerder kan groepsleden blokkeren."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Deze gebruiker is al de toegang tot de groep ontzegd."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "De gebruiker is geen lid van de groep."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Gebruiker toegang tot de groep blokkeren"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2583,34 +2923,40 @@ msgstr ""
"plaatsen en kan zich in de toekomst ook niet meer op de groep abonneren."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
-msgstr "Deze gebruiker niet de toegang tot deze groep ontzeggen"
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
+msgstr "Deze gebruiker niet de toegang tot deze groep ontzeggen."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
-msgstr "Deze gebruiker de toegang tot deze groep ontzeggen"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "Deze gebruiker de toegang tot deze groep ontzeggen."
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
"Er is een databasefout opgetreden bij het uitsluiten van de gebruiker van de "
"groep."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Geen ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "U moet aangemeld zijn om een groep te kunnen bewerken."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Groepsontwerp"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2618,22 +2964,25 @@ msgstr ""
"De vormgeving van uw groep aanpassen met een achtergrondafbeelding en een "
"kleurenpalet van uw keuze."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Het was niet mogelijk uw ontwerp bij te werken."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
+msgstr "Het was niet mogelijk om uw ontwerpinstellingen bij te werken."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "De ontwerpvoorkeuren zijn opgeslagen."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Groepslogo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2641,113 +2990,130 @@ msgstr ""
"Hier kunt u een logo voor uw groep uploaden. De maximale bestandsgrootte is %"
"s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Uploaden"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Uitsnijden"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Selecteer een vierkant uit de afbeelding die het logo wordt."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo geactualiseerd."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Het bijwerken van het logo is mislukt."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "leden van de groep %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s groeps leden, pagina %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Ledenlijst van deze groep"
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Beheerder"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Blokkeren"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Deze gebruiker blokkeren"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Deze gebruiker groepsbeheerder maken"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Beheerder maken"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Deze gebruiker beheerder maken"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Updates voor leden van %1$s op %2$s."
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr "Groepen"
-#: actions/groups.php:64
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
#, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Groepen, pagina %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Met groepen van %%%%site.name%%%% kunt u gebruikers vinden met gelijke "
-"interessen en daarmee in contact treden. Nadat u lid bent geworden van een "
+"interesses en daarmee in contact treden. Nadat u lid bent geworden van een "
"groep, kunt u berichten naar alle gebruikers zenden met door het voorvoegsel "
"\"!groepsnaam\" te gebruiken. Als u geen groep ziet die u aantreft, "
"[doorzoek dan de groepen](%%%%action.groupsearch%%%%) of [start zelf een "
-"groep!](%%%%action.newgroup%%%%)."
+"groep](%%%%action.newgroup%%%%)!"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Nieuwe groep aanmaken"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2757,25 +3123,33 @@ msgstr ""
"interesses of beschrijving. Scheid de zoektermen met spaties. Iedere "
"zoekterm moet uit drie of meer tekens bestaan."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Groepen zoeken"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Geen resultaten."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Als u de groep waar u naar zoekt niet kunt vinden, dan kunt u deze zelf "
"[aanmaken](%%action.newgroup%%)."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2785,138 +3159,144 @@ msgstr ""
"[aanmaken](%%action.newgroup%%)!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Alleen beheerders kunnen groepsleden deblokkeren."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "De gebruiker is niet de toegang tot de groep ontzegd."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Er is een fout opgetreden bij het verwijderen van de blokkade."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM-instellingen"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-"U kunt berichten verzenden en ontvangen via Jabber/GTalk [\"onmiddellijke "
-"berichten\"](%%doc.im%%). Maak hieronder uw instellingen."
+"U kunt berichten verzenden en ontvangen via [\"onmiddellijke berichten\"](%%"
+"doc.im%%) van Jabber en Google Talk. Voer hieronder uw adres in en maak uw "
+"instellingen."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM is niet beschikbaar."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM-adres"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Huidige bevestigde Jabber/GTalk adres."
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
+msgstr "Huidige bevestigde Jabber- of Google Talk-adres."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
-"Er wordt gewacht op bevestiging van dit adres. Controleer uw Jabber/GTalk-"
-"gebruiker op een bericht met nadere instructies. Hebt u %s aan uw "
-"contactenlijst toegevoegd?"
+"Er wordt gewacht op bevestiging van dit adres. Controleer uw Jabber- of "
+"Google Talk-gebruiker op een bericht met nadere instructies. Hebt u %s aan "
+"uw contactenlijst toegevoegd?"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-"Jabber-ID of GTalk-adres, zoals \"gebruiker@example.org\". Zorg ervoor dat u "
-"%s eerst aan uw contactenlijst in uw IM-programma of in GTalk toevoegt."
+"Jabber-ID of Google Talk-adres, zoals \"gebruiker@example.org\". Zorg ervoor "
+"dat u %s eerst aan uw contactenlijst in uw IM-programma of in Google Talk "
+"toevoegt."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "IM-voorkeuren"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Mij berichten sturen via Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
+msgstr "Mij berichten sturen via Jabber of Google Talk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Een mededeling versturen als mijn Jabber/GTalk-status wijzigt."
-
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
-"Mij antwoorden sturen via Jabber/GTalk van gebruikers op wie ik niet "
-"geabonneerd ben."
+"Een mededeling verzenden als mijn Jabber- of Google Talk-status wijzigt."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "Een MicroID voor mijn Jabber/GTalk-adres publiceren."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
+msgstr ""
+"Mij antwoorden sturen via Jabber of Google Talk van gebruikers op wie ik "
+"niet geabonneerd ben."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr "Een MicroID voor mijn Jabber- of Google Talk-adres publiceren."
+
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Uw voorkeuren zijn opgeslagen."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Geen Jabber-ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
-msgstr "Het was niet mogelijk om het Jabber-ID te normaliseren"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+msgid "Cannot normalize that Jabber ID."
+msgstr "Het was niet mogelijk om het Jabber-ID te normaliseren."
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
-msgstr "Geen geldige Jabber-ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+msgid "Not a valid Jabber ID."
+msgstr "Geen geldige Jabber-ID."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "U hebt dit al ingesteld als uw Jabber-ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Het Jabber-ID wordt al gebruikt door een andere gebruiker."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2925,54 +3305,59 @@ msgstr ""
"Er is een bevestigingscode verstuurd naar het opgegeven IM-adres. U moet "
"ermee akkoord gaan dat %s berichten aan u verzendt."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Dat is het verkeerde IM-adres."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
msgstr "De IM-bevestiging kon niet verwijderd worden."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "IM-bevestiging geannuleerd."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Dit is niet uw Jabber-ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Het IM-adres is verwijderd."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Postvak IN van %s - pagina %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Postvak IN van %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "Dit is uw Postvak IN dat uw inkomende privéberichten bevat."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Het is niet mogelijk uitnodigingen te verzenden."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2981,18 +3366,18 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Ongeldig e-mailadres: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "De uitnodigingen zijn verzonden"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Nieuwe gebruikers uitnodigen"
@@ -3000,7 +3385,7 @@ msgstr "Nieuwe gebruikers uitnodigen"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "U bent al geabonneerd op deze gebruiker:"
@@ -3008,7 +3393,7 @@ msgstr[1] "U bent al geabonneerd op deze gebruikers:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3017,7 +3402,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3028,7 +3413,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "De uitnodiging is verzonden naar de volgende persoon:"
@@ -3036,7 +3421,7 @@ msgstr[1] "De uitnodigingen zijn verzonden naar de volgende personen:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3046,7 +3431,7 @@ msgstr ""
"gemeenschap!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3054,27 +3439,27 @@ msgstr ""
"te gebruiken."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "E-mailadressen"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
-msgstr "Adressen van uit te nodigen vrienden (één per regel)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
+msgstr "Adressen van uit te nodigen vrienden (één per regel)."
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Persoonlijk bericht"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Verzenden"
@@ -3082,7 +3467,7 @@ msgstr "Verzenden"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s heeft u uitgenodigd voor %2$s"
@@ -3092,7 +3477,7 @@ msgstr "%1$s heeft u uitgenodigd voor %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3149,44 +3534,51 @@ msgstr ""
"\n"
"Met vriendelijke groet, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "U moet aangemeld zijn om lid te worden van een groep."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s is lid geworden van de groep %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "U moet aangemeld zijn om een groep te kunnen verlaten."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "U bent geen lid van deze groep"
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s heeft de groep %2$s verlaten"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Licentie"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Licentie voor deze StatusNetsite"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Ongeldige licentieselectie."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3194,125 +3586,134 @@ msgstr ""
"U moet de eigenaar van de inhoud opgeven als u de licentie \"Alle rechten "
"voorbehouden\" gebruikt."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "De licentienaam is ongeldig. De maximale lengte is 255 tekens."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Ongeldige licentie-URL."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Ongeldige URL voor licentieafbeelding."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "De licentie-URL moet leeg zijn of een geldige URL."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "De licentieafbeelding moet leeg zijn of een geldige URL."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Licentieselectie"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privé"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Alle rechten voorbehouden"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Type"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Selecteer licentie"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Licentiedetails"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Eigenaar"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Naam van de eigenaar van de inhoud van de site (als van toepassing)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Licentienaam"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "De naam van de licentie."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "Licentie-URL"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL voor meer informatie over de licentie."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL voor licentieafbeelding"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "Een URL voor een afbeelding om weer te geven met de licentie."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Opslaan"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Licentieinstellingen opslaan"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "U bent al aangemeld."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "De gebruikersnaam of wachtwoord is onjuist."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
"Er is een fout opgetreden bij het maken van de instellingen. U hebt "
"waarschijnlijk niet de juiste rechten."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Aanmelden"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Aanmelden"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Aanmeldgegevens onthouden"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "Voortaan automatisch aanmelden. Niet gebruiken op gedeelde computers!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Wachtwoord kwijt of vergeten?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3320,11 +3721,11 @@ msgstr ""
"Om veiligheidsredenen moet u uw gebruikersnaam en wachtwoord nogmaals "
"invoeren alvorens u uw instellingen kunt wijzigen."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Aanmelden met uw gebruikersnaam en wachtwoord."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3361,19 +3762,22 @@ msgid "New application"
msgstr "Nieuwe applicatie"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "U moet aangemeld zijn om een applicatie te kunnen registreren."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Gebruik dit formulier om een nieuwe applicatie te registreren."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Een bron-URL is verplicht."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Het was niet mogelijk de applicatie aan te maken."
@@ -3382,11 +3786,21 @@ msgstr "Het was niet mogelijk de applicatie aan te maken."
msgid "New group"
msgstr "Nieuwe groep"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr "U mag geen groepen aanmaken op deze site."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Gebruik dit formulier om een nieuwe groep aan te maken."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nieuw bericht"
@@ -3436,7 +3850,9 @@ msgstr "Nieuw bericht"
msgid "Notice posted"
msgstr "De mededeling is verzonden"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3445,16 +3861,21 @@ msgstr ""
"Zoek naar mededelingen op %%site.name%% op basis van inhoud. Scheid "
"zoektermen met spaties. Zoektermen moeten uit drie of meer tekens bestaan."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Tekst doorzoeken"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Zoekresultaten voor \"%1$s\" op %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3463,7 +3884,9 @@ msgstr ""
"U kunt de eerste zijn die een bericht plaatst in [dit onderwerp](%%%%action."
"newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3473,14 +3896,17 @@ msgstr ""
"zijn die een bericht plaatst in [dit onderwerp](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Updates met \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Updates die overeenkomen met de zoekterm \"%1$s\" op %2$s."
#: actions/nudge.php:85
@@ -3521,24 +3947,24 @@ msgid "You have not registered any applications yet."
msgstr "U hebt nog geen applicaties geregistreerd."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Verbonden applicaties"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
"U hebt de onderstaande applicaties toegang gegeven tot uw gebruikersgegevens."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "U bent geen gebruiker van die applicatie."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr ""
@@ -3547,7 +3973,7 @@ msgstr ""
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3557,7 +3983,7 @@ msgstr ""
"ingetrokken."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
"U hebt geen enkele applicatie geautoriseerd voor toegang tot uw "
@@ -3566,7 +3992,7 @@ msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3575,6 +4001,16 @@ msgstr ""
"Bet u ontwikkelaar? [Registreer dan een OAuthprogramma](%s) om te gebruiken "
"met deze Statusnetsite."
+#: actions/oembed.php:64
+#, php-format
+msgid "\"%s\" not found."
+msgstr "\"%s\" is niet aangetroffen."
+
+#: actions/oembed.php:76
+#, php-format
+msgid "Notice %s not found."
+msgstr "Opmerking \"%s\" is niet gevonden."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Mededeling heeft geen profiel."
@@ -3584,6 +4020,16 @@ msgstr "Mededeling heeft geen profiel."
msgid "%1$s's status on %2$s"
msgstr "Status van %1$s op %2$s"
+#: actions/oembed.php:95
+#, php-format
+msgid "Attachment %s not found."
+msgstr "De bijlage %s is niet gevonden."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr "\"%s\" wordt niet ondersteund voor oembed-verzoeken."
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3597,16 +4043,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Alleen URL's voor %s via normale HTTP alstublieft."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Geen ondersteund gegevensformaat."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Mensen zoeken"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Mededeling zoeken"
@@ -3620,68 +4067,79 @@ msgid "Manage various other options."
msgstr "Overige instellingen beheren."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (gratis dienst)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "URL's inkorten met"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Te gebruiken automatische verkortingsdienst."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Profielontwerpen gebruiken"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Profielontwerpen weergeven of verbergen"
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "De URL voor de verkortingdienst is te lang (maximaal 50 tekens)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Er is geen ID opgegeven."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Er is geen token opgegeven."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Er is niet om een aanmeldtoken gevraagd."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Het opgegeven token is ongeldig."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Het aanmeldtoken is verlopen."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Postvak UIT voor %1$s - pagina %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Postvak UIT voor %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "Dit is uw Postvak UIT waarin de door u verzonden privéberichten staan."
@@ -3693,7 +4151,8 @@ msgstr "Wachtwoord wijzigen"
msgid "Change your password."
msgstr "Wachtwoord wijzigen"
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Wachtwoord wijzigen"
@@ -3701,48 +4160,47 @@ msgstr "Wachtwoord wijzigen"
msgid "Old password"
msgstr "Huidige wachtwoord"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nieuw wachtwoord"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
msgstr "Zes of meer tekens"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Bevestigen"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Gelijk aan het wachtwoord hierboven"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
+msgstr "Gelijk aan het wachtwoord hierboven."
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Wijzigen"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Het wachtwoord moet zes of meer tekens bevatten."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "De wachtwoorden komen niet overeen."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Het oude wachtwoord is onjuist"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Fout bij opslaan gebruiker; ongeldig."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Het wachtwoord is opgeslagen."
@@ -3948,7 +4406,7 @@ msgstr "Map waar achtergronden worden opgeslagen."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Bijlagen"
@@ -4016,7 +4474,9 @@ msgstr "De server waar SSL-verzoeken heen gestuurd moeten worden."
msgid "Save paths"
msgstr "Opslagpaden"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4026,7 +4486,8 @@ msgstr ""
"interesses. Scheid de zoektermen met spaties. Zoektermen moeten uit drie of "
"meer tekens bestaan."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Gebruikers zoeken"
@@ -4052,12 +4513,12 @@ msgstr ""
"van deze site."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profielinstellingen"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4065,39 +4526,40 @@ msgstr ""
"andere gebruikers."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profielinformatie"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Volledige naam"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
-msgstr "Thuispagina"
+msgstr "Startpagina"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "De URL van uw thuispagina, blog of profiel bij een andere website."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4105,82 +4567,86 @@ msgstr[0] "Beschrijf uzelf en uw interesses in %d teken"
msgstr[1] "Beschrijf uzelf en uw interesses in %d tekens"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Beschrijf uzelf en uw interesses"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Beschrijving"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Locatie"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Mijn huidige locatie weergeven bij het plaatsen van mededelingen"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Labels"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of "
-"spaties"
+"spaties."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Taal"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
-msgstr "Voorkeurstaal"
+#: actions/profilesettings.php:171
+msgid "Preferred language."
+msgstr "Uw voorkeurstaal."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Tijdzone"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "In welke tijdzone verblijft u meestal?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Automatisch abonneren bij abonnement op mij (beste voor automatische "
-"processen)"
+"processen)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4188,51 +4654,52 @@ msgstr[0] "De persoonlijke beschrijving is te lang (maximaal %d teken)."
msgstr[1] "De persoonlijke beschrijving is te lang (maximaal %d tekens)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Er is geen tijdzone geselecteerd."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "De taal is te lang (maximaal 50 tekens)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
+#: actions/profilesettings.php:291
#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "Ongeldig label: '%s'"
+msgid "Invalid tag: \"%s\"."
+msgstr "Ongeldig label: \"%s\"."
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
msgstr ""
"Het was niet mogelijk de instelling voor automatisch abonneren voor de "
"gebruiker bij te werken."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
msgstr "Het was niet mogelijk de locatievoorkeuren op te slaan."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Het profiel kon niet opgeslagen worden."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Het was niet mogelijk de labels op te slaan."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "De instellingen zijn opgeslagen."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr "Gebruiker terugladen van back-up"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4308,6 +4775,12 @@ msgstr ""
"Micro-blogging) gebaseerd op de Vrije Software [StatusNet](http://status."
"net/)"
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s updates van iedereen"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4353,37 +4826,45 @@ msgstr ""
msgid "Tag cloud"
msgstr "Woordwolk"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "U bent al aangemeld!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Onbekende herstelcode."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Geen geldige herstelcode."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Herstelcode voor onbekende gebruiker."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Er is een fout opgetreden die te maken heeft met de bevestigingscode."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Deze bevestigingscode is te oud. Begin alstublieft opnieuw."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr ""
"Het was niet mogelijk het bevestigde e-mailadres voor de gebruiker bij te "
"werken."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4392,69 +4873,98 @@ msgstr ""
"nieuw wachtwoord toegezonden te krijgen op het e-mailadres dat bij uw "
"gebruiker staat opgeslagen."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "U bent geïdentificeerd. Voer hieronder een nieuw wachtwoord in. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "U bent geïdentificeerd. Voer hieronder een nieuw wachtwoord in."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Wachtwoordherstel"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Gebruikersnaam of e-mailadres"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Uw gebruikersnaam op deze server, of uw geregistreerde e-mailadres."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Herstellen"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Herstellen"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Wachtwoord herstellen"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Wachtwoord herstellen"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Wachtwoordherstel aangevraagd"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+msgid "Password saved"
+msgstr "Het wachtwoord is opgeslagen"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Onbekende handeling"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
msgstr "Zes of meer tekens, en vergeet uw wachtwoord niet!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
-msgstr "Herstellen"
+msgstr "Opnieuw instellen"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Voer een gebruikersnaam of e-mailadres in."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr ""
"Er bestaat geen gebruiker met het opgegeven e-mailadres of de opgegeven "
"gebruikersnaam."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Die gebruiker heeft geen e-mailadres geregistreerd."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Er is een fout opgetreden bij het opslaan van de adresbevestiging."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4462,120 +4972,113 @@ msgstr ""
"De instructies om uw wachtwoord te herstellen zijn verstuurd naar het e-"
"mailadres dat voor uw gebruiker is geregistreerd."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Het wachtwoord is onverwacht opnieuw ingesteld."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Het wachtwoord moet uit zes of meer tekens bestaan."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Het wachtwoord en de bevestiging komen niet overeen."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Er is een fout opgetreden tijdens het instellen van de gebruiker."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Het nieuwe wachtwoord is opgeslagen. U bent nu aangemeld."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "U kunt zich alleen registreren als u wordt uitgenodigd."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Sorry. De uitnodigingscode is ongeldig."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "De registratie is voltooid"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registreren"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registratie is niet toegestaan."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
-msgstr "U kunt zich niet registreren als u niet met de licentie akkoord gaat."
+#: actions/register.php:201
+msgid "You cannot register if you don't agree to the license."
+msgstr "U kunt zich niet registreren als u niet akkoord gaat met de licentie."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Het e-mailadres bestaat al."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Ongeldige gebruikersnaam of wachtwoord."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Via dit formulier kunt u een nieuwe gebruiker aanmaken. Daarna kunt u "
-"mededelingen uitsturen en contact maken met vrienden en collega's. "
-
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties. Verplicht."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "Zes of meer tekens. Verplicht"
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Gelijk aan het wachtwoord hierboven. Verplicht"
+"mededelingen uitsturen en contact maken met vrienden en collega's."
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-mail"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
-msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel"
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
+msgstr "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
-msgstr "Een langere naam, mogelijk uw echte naam"
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
+msgstr "Een langere naam, mogelijk uw echte naam."
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "De URL van uw thuispagina, blog of profiel bij een andere website"
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"."
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
"Ik begrijp dat inhoud en gegevens van %1$s persoonlijk en vertrouwelijk zijn."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Voor mijn teksten en bestanden rust het auteursrecht bij %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Ik ben de rechthebbende voor mijn teksten en bestanden."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Alle rechten voorbehouden."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4584,7 +5087,7 @@ msgstr ""
"Mijn teksten en bestanden zijn beschikbaar onder %s, behalve de volgende "
"privégegevens: wachtwoord, e-mailadres, IM-adres, telefoonnummer."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4618,7 +5121,7 @@ msgstr ""
"Dank u wel voor het registreren en we hopen dat deze dienst u biedt wat u "
"ervan verwacht."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4626,7 +5129,7 @@ msgstr ""
"U ontvangt snel een e-mailbericht met daarin instructies over hoe u uw e-"
"mail kunt bevestigen."
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4638,79 +5141,82 @@ msgstr ""
"[compatibele microblogsite](%%doc.openmublog%%) hebt, voer dan hieronder uw "
"profiel-URL in."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Abonneren op afstand"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Op een gebruiker uit een andere systeem abonneren"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Gebruikersnaam"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr "De gebruikersnaam van de gebruiker die u wilt volgen"
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
+msgstr "Gebruikersnaam van de gebruiker waarop u wilt abonneren."
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profiel-URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
+msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst."
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Abonneren"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "Ongeldige profiel-URL (foutieve opmaak)"
+#: actions/remotesubscribe.php:158
+msgid "Invalid profile URL (bad format)."
+msgstr "Ongeldige profiel-URL (foutieve opmaak)."
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"De URL is niet geldig (het is geen YADIS-document of er een ongeldige XRDS "
"gedefinieerd)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
msgstr "Dat is een lokaal profiel. Meld u aan om te abonneren."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
msgstr "Het was niet mogelijk een verzoektoken te krijgen."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Alleen aangemelde gebruikers kunnen hun mededelingen herhalen."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Er is geen mededeling opgegeven."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
msgstr "U kunt uw eigen mededeling niet herhalen."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "U hent die mededeling al herhaald."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Herhaald"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Herhaald!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Antwoorden aan %s"
@@ -4762,11 +5268,106 @@ msgstr ""
"U kunt proberen [%1$s te porren](../%2$s) of [een bericht voor die gebruiker "
"plaatsen](%%%%action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Antwoorden aan %1$s op %2$s."
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+"Alleen aangemelde gebruikers kunnen hun gebruiker terugladen van back-up."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr "U mag uw gebruiker niet terugladen van back-up."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr "Er is geen geüpload bestand."
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Het te uploaden bestand is groter dan de ingestelde upload_max_filesize in "
+"php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Het te uploaden bestand is groter dan de ingestelde MAX_FILE_SIZE in het "
+"HTML-formulier."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "De upload is slechts gedeeltelijk voltooid."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "De tijdelijke map is niet aanwezig."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Het was niet mogelijk naar schijf te schrijven."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Het uploaden van het bestand is tegengehouden door een uitbreiding."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr "Dit is geen Atomfeed."
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+"De feed is teruggeplaatst. Uw oude berichten worden nu in zoekopdrachten "
+"weergegeven en op uw profielpagina."
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr "De feed wordt teruggeplaatst. Een paar minuten geduld, alstublieft."
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+"U kunt een back-up van een tijdlijn uploaden in het formaat Activity Streams."
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "Bestand uploaden"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "U kunt geen gebruikersrollen intrekken op deze website."
@@ -4775,7 +5376,7 @@ msgstr "U kunt geen gebruikersrollen intrekken op deze website."
msgid "User doesn't have this role."
msgstr "Deze gebruiker heeft deze rol niet."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4817,85 +5418,87 @@ msgstr "Debuguitvoer voor sessies inschakelen."
msgid "Save site settings"
msgstr "Websiteinstellingen opslaan"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "U moet aangemeld zijn om een applicatie te kunnen bekijken."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Applicatieprofiel"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Icoon"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Naam"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organisatie"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Beschrijving"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistieken"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Aangemaakt door %1$s - standaardtoegang \"%2$s\" - %3$d gebruikers"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Applicatiehandelingen"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Sleutel en wachtwoord op nieuw instellen"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Verwijderen"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Applicatieinformatie"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Gebruikerssleutel"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Gebruikersgeheim"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL voor verzoektoken"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL voor toegangstoken"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Autorisatie-URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4903,36 +5506,43 @@ msgstr ""
"Opmerking: HMAC-SHA1 ondertekening wordt ondersteund. Ondertekening in "
"platte tekst is niet mogelijk."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Weet u zeker dat u uw gebruikerssleutel en geheime code wilt verwijderen?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Favoriete mededelingen van %1$s, pagina %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Het was niet mogelijk de favoriete mededelingen op te halen."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Favorietenfeed van %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Favorietenfeed van %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Favorietenfeed van %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4941,7 +5551,9 @@ msgstr ""
"toevoegen\" bij mededelingen die u aanstaan om ze op een lijst te bewaren en "
"ze uit te lichten."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4951,7 +5563,10 @@ msgstr ""
"een interessant bericht, en dan komt u misschien wel op de "
"favorietenlijst. :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4962,7 +5577,8 @@ msgstr ""
"%%%action.register%%%%) en dan interessante mededelingen plaatsten die "
"misschien aan favorietenlijsten zijn toe te voegen. :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Dit is de manier om dat te delen wat u wilt."
@@ -4980,81 +5596,88 @@ msgid "%1$s group, page %2$d"
msgstr "Groep %1$s, pagina %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Groepsprofiel"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Opmerking"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Aliassen"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Groepshandelingen"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Mededelingenfeed voor groep %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Mededelingenfeed voor groep %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Mededelingenfeed voor groep %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Vriend van een vriend voor de groep %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Leden"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(geen)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Alle leden"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Aangemaakt"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Leden"
@@ -5063,7 +5686,7 @@ msgstr "Leden"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5082,7 +5705,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5096,30 +5719,30 @@ msgstr ""
"over hun ervaringen en interesses. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Beheerders"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Dat bericht bestaat niet."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Alleen de verzender en de ontvanger kunnen dit bericht lezen."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Bericht aan %1$s op %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Bericht van %1$s op %2$s"
@@ -5135,7 +5758,7 @@ msgid "%1$s tagged %2$s"
msgstr "%2$s gelabeld door %1$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5391,74 +6014,74 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
-msgstr "Websitebrede mededeling opslaan"
+msgid "Save site notice."
+msgstr "Websitebrede mededeling opslaan."
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS-instellingen"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "U kunt SMS-berichten per e-mail ontvangen van %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS is niet beschikbaar."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS-adres"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Huidige bevestigde telefoonnummer met SMS-functie."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Er wordt gewacht op bevestiging van dit telefoonnummer."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Bevestigingscode"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Voer de code in die u via uw telefoon hebt ontvangen."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Bevestigen"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMS-nummer"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr "Telefoonnummer zonder spaties of leestekens, met netnummer"
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
+msgstr "Telefoonnummer zonder spaties of leestekens, met netnummer."
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMS-voorkeuren"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5467,32 +6090,32 @@ msgstr ""
"van mijn provider kan opleveren."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Uw SMS-voorkeuren zijn opgeslagen."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Geen telefoonnummer."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Er is geen provider geselecteerd."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "U hebt dit al ingesteld als uw telefoonnummer."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Dit telefoonnummer is al geregistrerd door een andere gebruiker."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5501,39 +6124,39 @@ msgstr ""
"toegevoegd. Op uw telefoon vindt u de code en de instructies."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Dit is het verkeerde bevestigingsnummer."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS-bevestiging geannuleerd."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Dit is niet uw telefoonnummer."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Het SMS-nummer is verwijderd."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Mobiele aanbieder"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Selecteer een provider"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5544,9 +6167,9 @@ msgstr ""
"via e-mail weten op het e-mailadres %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
-msgstr "Er is geen code ingevoerd"
+#: actions/smssettings.php:535
+msgid "No code entered."
+msgstr "Er is geen code ingevoerd."
#. TRANS: Menu item for site administration
#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
@@ -5618,17 +6241,21 @@ msgstr "U bent niet geabonneerd op dat profiel."
msgid "Could not save subscription."
msgstr "Het was niet mogelijk het abonnement op te slaan."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Deze handeling accepteert alleen POST-verzoeken."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
"U kunt niet abonneren op een OMB 1.0 profiel van een andere omgeving via "
"deze handeling."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Geabonneerd"
@@ -5660,7 +6287,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Dit zijn de gebruikers die de mededelingen van %s volgen."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5670,7 +6297,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s heeft geen abonnees. Wilt u de eerste zijn?"
@@ -5680,7 +6307,7 @@ msgstr "%s heeft geen abonnees. Wilt u de eerste zijn?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5713,7 +6340,7 @@ msgstr "Dit zijn de gebruikers waarvan %s de mededelingen volgt."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5733,23 +6360,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s volgt niemand."
-#: actions/subscriptions.php:178
-#, fuzzy, php-format
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
msgid "Subscription feed for %s (Atom)"
-msgstr "Mededelingenfeed voor %s (Atom)"
+msgstr "Abonneefeed voor %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5782,12 +6410,15 @@ msgstr "Geen ID-argument."
msgid "Tag %s"
msgstr "Label %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Gebruikersprofiel"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Foto"
@@ -5803,6 +6434,11 @@ msgstr ""
"Labels voor deze gebruiker (letters, cijfers, -, ., en _). Gebruik komma's "
"of spaties als scheidingsteken"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Ongeldig label: '%s'"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5810,10 +6446,6 @@ msgstr ""
"U kunt alleen gebruikers labelen waarop u geabonneerd bent of die op u "
"geabonneerd zijn."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Het was niet mogelijk de labels op te slaan."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5824,6 +6456,7 @@ msgstr ""
msgid "No such tag."
msgstr "Onbekend label."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "U hebt deze gebruiker niet geblokkeerd."
@@ -5844,7 +6477,7 @@ msgstr "Het profiel-ID was niet aanwezig in het verzoek."
msgid "Unsubscribed"
msgstr "Het abonnement is opgezegd"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5877,12 +6510,11 @@ msgstr "Ongeldige welkomsttekst. De maximale lengte is 255 tekens."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Ongeldig standaardabonnement: \"%1$s\" is geen gebruiker."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profiel"
@@ -5938,56 +6570,66 @@ msgstr "Of gebruikers nieuwe gebruikers kunnen uitnodigen."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr "Gebruikersinstellingen opslaan"
+msgid "Save user settings."
+msgstr "Gebruikersinstellingen opslaan."
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Abonneren"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
"Controleer alstublieft deze details om er zeker van te zijn dat u zich wilt "
"abonneren op de mededelingen van deze gebruiker. Als u zojuist niet hebt "
"aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, "
"klik dan op \"Afwijzen\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licentie"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Aanvaarden"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
-msgstr "Abonneren op deze gebruiker"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
+msgstr "Abonneren op deze gebruiker."
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Afwijzen"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
-msgstr "Dit abonnement weigeren"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
+msgstr "Dit abonnement weigeren."
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Geen autorisatieverzoek!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Het abonnement is geautoriseerd"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5997,11 +6639,12 @@ msgstr ""
"Controleer de instructies van de site voor informatie over het volledig "
"afwijzen van een abonnement. Uw abonnementstoken is:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Het abonnement is afgewezen"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -6011,48 +6654,73 @@ msgstr ""
"Controleer de instructies van de site voor informatie over het volledig "
"afwijzen van een abonnement."
-#: actions/userauthorization.php:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr "De abonnee-URI \"%s\" is hier niet te vinden."
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr "De URI \"%s\" voor de stream is te lang."
+msgid "Listenee URI \"%s\" is too long."
+msgstr "De URI \"%s\" van de gevolgde gebruiker is te lang."
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr "de URI \"%s\" voor de stream is een lokale gebruiker."
+msgid "Listenee URI \"%s\" is a local user."
+msgstr "De abonnements-URI \"%s\" is een lokale gebruiker."
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr "De profiel-URL ‘%s’ is van een lokale gebruiker."
+msgid "Profile URL \"%s\" is for a local user."
+msgstr "De profiel-URL \"%s\" is van een lokale gebruiker."
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"De licentie \"%1$s\" voor de stream die u wilt volgen is niet compatibel met "
+"de sitelicentie \"%2$s\"."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "De avatar-URL \"%s\" is niet geldig."
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen."
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Profielontwerp"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6060,7 +6728,7 @@ msgstr ""
"U kunt de vormgeving van uw profiel aanpassen door een achtergrondafbeelding "
"toe te voegen of het kleurenpalet aan te passen."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Geniet van uw hotdog!"
@@ -6091,7 +6759,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Updates van %1$s op %2$s."
@@ -6152,7 +6820,7 @@ msgid "Plugins"
msgstr "Plug-ins"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Versie"
@@ -6161,32 +6829,32 @@ msgid "Author(s)"
msgstr "Auteur(s)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Aan favorieten toevoegen"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s heeft de mededeling %2$s als favoriet gemarkeerd."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Het was niet mogelijk de URL \"%s\" te verwerken."
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin denkt dat iets onmogelijk is."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6203,7 +6871,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6212,7 +6880,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6223,7 +6891,7 @@ msgstr[1] ""
"bytes."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Ongeldige bestandsnaam."
@@ -6281,7 +6949,7 @@ msgid "Could not create login token for %s"
msgstr "Het was niet mogelijk een aanmeldtoken aan te maken voor %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Geen databasenaam of DSN gevonden."
@@ -6308,27 +6976,27 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Er is geen profiel (%1$d) te vinden bij de mededeling (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr ""
"Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te "
"lang."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr ""
"Er was een probleem bij het opslaan van de mededeling. De gebruiker is "
"onbekend."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6336,7 +7004,7 @@ msgstr ""
"het over enige tijd weer."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6345,24 +7013,24 @@ msgstr ""
"plaats over een aantal minuten pas weer een bericht."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr ""
"U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr "Het gegevenstype dat is opgegeven aan saveKnownGroups is onjuist"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr ""
"Er is een probleem opgetreden bij het opslaan van het Postvak IN van de "
@@ -6370,20 +7038,20 @@ msgstr ""
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Het was niet mogelijk antwoord %1$d voor %2$d op te slaan."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6391,7 +7059,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
@@ -6400,7 +7068,7 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6473,36 +7141,57 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Welkom bij %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
"De \"single-user\"-modus is aangeroepen terwijl deze niet is ingeschakeld."
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Het was niet mogelijk de groep aan te maken."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Het was niet mogelijk de groeps-URI in te stellen."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr "De gebruiker %s is niet gevonden."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr "Er is geen XSD aangetroffen voor %s."
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr "Er is geen AtomPub API-dienst voor %s."
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6539,211 +7228,214 @@ msgid "Other"
msgstr "Overige"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Naamloze pagina"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Meer weergeven"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Primaire sitenavigatie"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Persoonlijk profiel en tijdlijn van vrienden"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Persoonlijk"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Gebruiker"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Met andere diensten koppelen"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Koppelen"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Websiteinstellingen wijzigen"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Beheer"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Uitnodigingen"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Gebruiker afmelden"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Afmelden"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Gebruiker aanmaken"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registreren"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Gebruiker aanmelden"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Aanmelden"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Help me!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Help"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Naar gebruikers of tekst zoeken"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Zoeken"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Mededeling van de website"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Lokale weergaven"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Mededeling van de pagina"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Secundaire sitenavigatie"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Help"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Over"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "Veel gestelde vragen"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Gebruiksvoorwaarden"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Privacy"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Broncode"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Contact"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Widget"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licentie van de StatusNet-software"
@@ -6751,7 +7443,7 @@ msgstr "Licentie van de StatusNet-software"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6761,7 +7453,7 @@ msgstr ""
"broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** is een microblogdienst."
@@ -6770,7 +7462,7 @@ msgstr "**%%site.name%%** is een microblogdienst."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6782,20 +7474,20 @@ msgstr ""
"www.fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licentie voor siteinhoud"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Inhoud en gegevens van %1$s zijn persoonlijk en vertrouwelijk."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
@@ -6803,7 +7495,7 @@ msgstr ""
"voorbehouden."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Auteursrechten op inhoud en gegevens rusten bij de respectievelijke "
@@ -6811,26 +7503,26 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
"Alle inhoud en gegevens van %1$s zijn beschikbaar onder de licentie %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paginering"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Later"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Eerder"
@@ -6839,10 +7531,82 @@ msgstr "Eerder"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "Verwachtte een root-feed element maar kreeg een heel XML-document."
-#: lib/activity.php:360
-#, fuzzy
-msgid "Post"
-msgstr "Foto"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Onbekend werkwoord: \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+"Het is niet mogelijk een niet-vertrouwde gebruiker gedwongen te abonneren."
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr ""
+"Het is niet mogelijk een gebruiker op een andere server te verplichten te "
+"abonneren."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr "Onbekende profiel."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr "Deze activiteit lijkt geen relatie te hebben met onze gebruiker."
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr "Het profiel op de andere server is geen groep!"
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr "De gebruiker is al lid van deze groep."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr "De mededeling %1$s is al bekend en heeft een andere auteur %2$s."
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+"De auteursgegevens voor de niet-vertrouwde gebruiker worden niet "
+"overschreven."
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr "Geen inhoud voor mededeling %s."
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "De gebruiker %s bestaat niet."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s %2$s %3$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6914,7 +7678,7 @@ msgid "User configuration"
msgstr "Gebruikersinstellingen"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Gebruiker"
@@ -6960,19 +7724,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Er is geen applicatie voor die gebruikerssleutel."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Ongeldig toegangstoken."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Er is geen gebruiker voor dat token."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "U kon niet geauthenticeerd worden."
@@ -6995,29 +7763,34 @@ msgstr ""
"niet aangetroffen."
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "Het was niet mogelijk het toegangstoken uit te geven."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr ""
"Er is een databasefout opgetreden tijdens het toevoegen van de OAuth "
"applicatiegebruiker."
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr ""
+"Er is een databasefout opgetreden tijdens het toevoegen van de OAuth "
+"applicatiegebruiker."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Er is geprobeerd een onbekend token in te trekken."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Het was niet mogelijk een ingetrokken token te verwijderen."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Icoon voor deze applicatie"
@@ -7129,17 +7902,22 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Intrekken"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr "Het element author moet een element name bevatten."
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr "Gebruik deze methode niet!"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Auteur"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Provider"
@@ -7168,6 +7946,11 @@ msgstr "Wachtwoord wijzigen is niet toegestaan"
msgid "Block"
msgstr "Blokkeren"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Deze gebruiker blokkeren"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7281,7 +8064,7 @@ msgstr "Volledige naam: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Locatie: %s"
@@ -7289,7 +8072,7 @@ msgstr "Locatie: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Thuispagina: %s"
@@ -7572,25 +8355,25 @@ msgstr ""
"tracking - nog niet beschikbaar\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "Er is geen instellingenbestand aangetroffen."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
"U kunt proberen de installer uit te voeren om dit probleem op te lossen."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Naar het installatieprogramma gaan."
@@ -7631,14 +8414,19 @@ msgstr "Geautoriseerde verbonden applicaties"
msgid "Database error"
msgstr "Databasefout"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Gebruiker verwijderen"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Bestand uploaden"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7657,25 +8445,72 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Uit"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Opnieuw instellen"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Kleuren wijzigen"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Standaardinstellingen gebruiken"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Standaardontwerp toepassen"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Standaardinstellingen toepassen"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Ontwerp opslaan"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Het was niet mogelijk uw ontwerp bij te werken."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Het standaardontwerp is weer ingesteld."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr "Er zijn geen diensten aantroffen voor %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Uit de favorietenlijst verwijderen"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Van favorietenlijst verwijderen"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Op de favorietenlijst plaatsen"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Aan favorietenlijst toevoegen"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7692,6 +8527,18 @@ msgstr "Atom"
msgid "FOAF"
msgstr "Vrienden van vrienden (FOAF)"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr "Dit is geen Atomfeed."
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr "Er staat geen auteur in de feed."
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr "Het is niet mogelijk te importeren zonder gebruiker."
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7726,32 +8573,32 @@ msgstr "OK"
msgid "Grant this user the \"%s\" role"
msgstr "Deze gebruiker de rol \"%s\" geven"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties"
+msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties."
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "De URL van de thuispagina of de blog van de groep of het onderwerp"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Beschrijf de groep of het onderwerp"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Beschrijf de group in %d teken of minder"
msgstr[1] "Beschrijf de group in %d tekens of minder"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Locatie voor de groep - als relevant. Iets als \"Plaats, regio, land\"."
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7858,40 +8705,41 @@ msgstr "Labels in de groepsmededelingen van %s"
msgid "This page is not available in a media type you accept"
msgstr "Deze pagina is niet beschikbaar in een mediatype dat u accepteert"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Niet ondersteund beeldbestandsformaat."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Dat bestand is te groot. De maximale bestandsgrootte is %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Gedeeltelijke upload."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Er is een systeemfout opgetreden tijdens het uploaden van het bestand."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Het bestand is geen afbeelding of het bestand is beschadigd."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Het bestand is zoekgeraakt."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Onbekend bestandstype"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7899,7 +8747,7 @@ msgstr[0] "%d MB"
msgstr[1] "%d MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7907,7 +8755,7 @@ msgstr[0] "%d kB"
msgstr[1] "%d kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7928,23 +8776,25 @@ msgstr "Onbekende bron Postvak IN %d."
msgid "Leave"
msgstr "Verlaten"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Aanmelden met gebruikersnaam en wachtwoord"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Nieuwe gebruiker aanmaken"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "E-mailadresbevestiging"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7976,14 +8826,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s volgt nu uw berichten %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7997,7 +8847,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -8024,14 +8874,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Beschrijving: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nieuw e-mailadres om e-mail te versturen aan %s"
@@ -8039,7 +8889,7 @@ msgstr "Nieuw e-mailadres om e-mail te versturen aan %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8062,34 +8912,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s status"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS-bevestiging"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: bevestig dat u deze telefoon bezit met deze code:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
+msgid "You have been nudged by %s"
msgstr "%s heeft u gepord"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8119,7 +8969,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "U hebt een nieuw privébericht van %s."
@@ -8128,7 +8978,7 @@ msgstr "U hebt een nieuw privébericht van %s."
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8164,7 +9014,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) heeft uw mededeling als favoriet toegevoegd"
@@ -8174,7 +9024,7 @@ msgstr "%1$s (@%2$s) heeft uw mededeling als favoriet toegevoegd"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8213,7 +9063,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8226,7 +9076,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) heeft u een mededeling gestuurd"
@@ -8237,7 +9087,7 @@ msgstr "%1$s (@%2$s) heeft u een mededeling gestuurd"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8287,11 +9137,11 @@ msgstr ""
"\n"
"Ps. U kunt de e-mailmeldingen hier uitschakelen: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Gebruikers kunnen alleen hun eigen postvakken lezen."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8299,10 +9149,6 @@ msgstr ""
"U hebt geen privéberichten. U kunt privéberichten verzenden aan andere "
"gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "van"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Het was niet mogelijk het bericht te verwerken."
@@ -8331,42 +9177,6 @@ msgstr ""
"Er is een databasefout opgetreden tijdens het opslaan van uw bestand. "
"Probeer het alstublieft opnieuw."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Het te uploaden bestand is groter dan de ingestelde upload_max_filesize in "
-"php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Het te uploaden bestand is groter dan de ingestelde MAX_FILE_SIZE in het "
-"HTML-formulier."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "De upload is slechts gedeeltelijk voltooid."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "De tijdelijke map is niet aanwezig."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Het was niet mogelijk naar schijf te schrijven."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Het uploaden van het bestand is tegengehouden door een uitbreiding."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8387,7 +9197,7 @@ msgstr "Het was niet mogelijk het MIME-type van het bestand te bepalen."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8398,7 +9208,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "\"%s\" is geen ondersteund bestandstype op deze server."
@@ -8430,20 +9240,28 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Verzenden"
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr "Berichten"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "van"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"De gebruikersnaam mag alleen kleine letters en cijfers bevatten. Spaties "
"zijn niet toegestaan."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "Gebruikersnaam kan niet leeg zijn."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8459,11 +9277,11 @@ msgstr "Mededeling verzenden"
msgid "What's up, %s?"
msgstr "Hallo, %s."
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Toevoegen"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Bestand toevoegen"
@@ -8484,55 +9302,59 @@ msgstr ""
"nog eens"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "Z"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "O"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "W"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "op"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "in context"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Herhaald door"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Op deze mededeling antwoorden"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Antwoorden"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Deze mededeling verwijderen"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Mededeling herhaald"
@@ -8569,77 +9391,108 @@ msgstr "Dubbele mededeling."
msgid "Couldn't insert new subscription."
msgstr "Kon nieuw abonnement niet toevoegen."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Persoonlijk"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+msgctxt "MENU"
msgid "Replies"
msgstr "Antwoorden"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profiel"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favorieten"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr "Postvak IN"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Uw inkomende berichten"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
msgid "Outbox"
msgstr "Postvak UIT"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Uw verzonden berichten"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Labels in de mededelingen van %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Onbekend"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Abonnementen"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Alle abonnementen"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Abonnees"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Alle abonnees"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Gebruikers-ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Lid sinds"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Groepen"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Dagelijks gemiddelde"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Alle groepen"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Methode niet geïmplementeerd."
@@ -8686,7 +9539,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "De gebruikersrol \"%s\" voor deze gebruiker intrekken"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "De pagina is niet aangetroffen."
@@ -8776,6 +9629,10 @@ msgstr "Uitnodigen"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Abonneren op deze gebruiker"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8897,64 +9754,81 @@ msgstr "Abonnement opheffen"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Gebruiker %1$s (%2$d) heeft geen profielrecord."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Avatar bewerken"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Gebruikershandelingen"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Bezig met het verwijderen van de gebruiker..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Profielinstellingen bewerken"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Bewerken"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Deze gebruiker een direct bericht zenden"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Bericht"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Modereren"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Gebruikersrol"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Beheerder"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderator"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Niet aangemeld."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "een paar seconden geleden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "ongeveer een minuut geleden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8962,12 +9836,12 @@ msgstr[0] "ongeveer een minuut geleden"
msgstr[1] "ongeveer %d minuten geleden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "ongeveer een uur geleden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8975,12 +9849,12 @@ msgstr[0] "ongeveer een uur geleden"
msgstr[1] "ongeveer %d uur geleden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "ongeveer een dag geleden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8988,12 +9862,12 @@ msgstr[0] "ongeveer een dag geleden"
msgstr[1] "ongeveer %d dagen geleden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "ongeveer een maand geleden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -9001,18 +9875,13 @@ msgstr[0] "ongeveer een maand geleden"
msgstr[1] "ongeveer %d maanden geleden"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "ongeveer een jaar geleden"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s is geen geldige kleur."
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s is geen geldige kleur. Gebruik drie of zes hexadecimale tekens."
@@ -9038,30 +9907,17 @@ msgstr[1] ""
"bericht was %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "Ongeldige XML."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr "Ongeldige XML. De XRD-root mist."
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "De back-up wordt uit het bestand \"%s\" geladen."
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Geen gebruiker opgegeven; de back-upgebruiker wordt gebruikt."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "%d element in de back-up."
-msgstr[1] "%d elementen in de back-up."
diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po
index 2bfd4a044a..0329f9d044 100644
--- a/locale/nn/LC_MESSAGES/statusnet.po
+++ b/locale/nn/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Norwegian Nynorsk (Norsk (nynorsk))
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Nghtwlkr
# Author: Ranveig
@@ -10,17 +10,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:06+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:23+0000\n"
"Language-Team: Norwegian Nynorsk \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nn\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -82,8 +82,9 @@ msgid "Save access settings"
msgstr "Avatar-innstillingar"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -93,13 +94,13 @@ msgstr "Avatar-innstillingar"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
#, fuzzy
msgctxt "BUTTON"
msgid "Save"
@@ -108,7 +109,7 @@ msgstr "Lagra"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
#, fuzzy
msgid "No such page."
msgstr "Dette emneord finst ikkje."
@@ -119,6 +120,8 @@ msgstr "Dette emneord finst ikkje."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -134,13 +137,23 @@ msgstr "Dette emneord finst ikkje."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -148,15 +161,15 @@ msgstr "Dette emneord finst ikkje."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Brukaren finst ikkje."
@@ -170,9 +183,10 @@ msgstr "%s med vener"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s med vener"
@@ -280,12 +294,11 @@ msgstr "Oppdateringar frå %1$s og vener på %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
#: actions/apitimelineuser.php:206 actions/apiusershow.php:100
-#, fuzzy
msgid "API method not found."
msgstr "Fann ikkje API-metode."
@@ -313,8 +326,21 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
-#, fuzzy
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Kan ikkje oppdatera brukar."
@@ -324,19 +350,23 @@ msgstr "Kan ikkje oppdatera brukar."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Brukaren har inga profil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
-#, fuzzy
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Kan ikkje lagra profil."
@@ -346,8 +376,8 @@ msgstr "Kan ikkje lagra profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -363,13 +393,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
#, fuzzy
msgid "Unable to save your design settings."
msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!"
@@ -378,50 +409,61 @@ msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!"
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
#, fuzzy
msgid "Could not update your design."
msgstr "Kan ikkje oppdatera brukar."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s tidsline"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s tingarar"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Favorittar"
+msgstr "%s favorittar"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "%s medlemmar i gruppa"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Kan ikkje oppdatera brukar."
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Blokkering av brukar feila."
@@ -477,7 +519,8 @@ msgstr "Kunne ikkje finne mottakar."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Kan ikkje senda direktemeldingar til brukarar som du ikkje er ven med."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -504,8 +547,9 @@ msgid "This status is already a favorite."
msgstr "Denne notisen er alt ein favoritt!"
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Kunne ikkje lagre favoritt."
@@ -516,7 +560,8 @@ msgid "That status is not a favorite."
msgstr "Denne notisen er ikkje ein favoritt!"
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Kunne ikkje slette favoritt."
@@ -563,9 +608,9 @@ msgstr "Kan ikkje oppdatera brukar."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Kallenamnet er allereie i bruk. Prøv eit anna."
@@ -573,21 +618,22 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit anna."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Ikkje eit gyldig brukarnamn."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Heimesida er ikkje ei gyldig internettadresse."
@@ -595,9 +641,9 @@ msgstr "Heimesida er ikkje ei gyldig internettadresse."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)."
@@ -605,14 +651,15 @@ msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -623,9 +670,9 @@ msgstr[1] "Plassering er for lang (maksimalt 255 teikn)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "Plassering er for lang (maksimalt 255 teikn)."
@@ -636,8 +683,8 @@ msgstr "Plassering er for lang (maksimalt 255 teikn)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -654,18 +701,16 @@ msgstr "Ugyldig merkelapp: %s"
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, fuzzy, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Kallenamnet er allereie i bruk. Prøv eit anna."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -676,29 +721,33 @@ msgstr ""
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Finst ikkje."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
#, fuzzy
msgid "You are already a member of that group."
msgstr "Du er allereie medlem av den gruppa"
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr ""
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Kunne ikkje bli med i gruppa."
@@ -711,9 +760,11 @@ msgstr "Du er ikkje medlem av den gruppa."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -751,7 +802,7 @@ msgid "Upload failed."
msgstr "Last opp fil"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "Ugyldig notisinnhald"
@@ -774,20 +825,25 @@ msgid "Request token already authorized."
msgstr "Du tingar ikkje oppdateringar til den profilen."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Der var eit problem med sesjonen din. Vennlegst prøv på nytt."
@@ -806,18 +862,22 @@ msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s"
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Uventa skjemasending."
@@ -862,29 +922,31 @@ msgstr "Konto"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Kallenamn"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Passord"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
#, fuzzy
msgctxt "BUTTON"
@@ -958,6 +1020,7 @@ msgstr "Du kan ikkje sletta statusen til ein annan brukar."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -978,40 +1041,53 @@ msgstr "Kan ikkje slå på notifikasjon."
msgid "Already repeated that notice."
msgstr "Kan ikkje sletta notisen."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Fann ikkje API-metode."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Støttar ikkje bileteformatet."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
#, fuzzy
msgid "Status deleted."
msgstr "Lasta opp brukarbilete."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Fann ingen status med den ID-en."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Kan ikkje sletta notisen."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Slett notis"
@@ -1070,7 +1146,7 @@ msgstr "%1$s oppdateringar som svarar på oppdateringar frå %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Kann ikkje oppdatera gruppa."
@@ -1091,13 +1167,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s oppdateringar som svarar på oppdateringar frå %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s offentleg tidsline"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s oppdateringar frå alle saman!"
@@ -1146,203 +1223,270 @@ msgstr "Kun brukaren kan lese sine eigne meldingar."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Søk i innhaldet av notisar"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Fann ingen profil med den IDen."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API-metoden er ikkje ferdig enno."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Fann ikkje API-metode."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Denne notisen finst ikkje."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Kan ikkje leggja til ny tinging."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Søk i innhaldet av notisar"
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Uventa handling."
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Legg til i favorittar"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
#, fuzzy
msgid "No such profile."
msgstr "Denne notisen finst ikkje."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Oppdateringar frå %1$s og vener på %2$s!"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+#, fuzzy
+msgid "Cannot add someone else's subscription."
+msgstr "Kan ikkje leggja til ny tinging."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Søk i innhaldet av notisar"
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+#, fuzzy
+msgid "Can only fave notices."
+msgstr "Søk i innhaldet av notisar"
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+#, fuzzy
+msgid "Unknown note."
+msgstr "Uventa handling."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+#, fuzzy
+msgid "Already a favorite."
+msgstr "Legg til i favorittar"
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s medlemmar i gruppa"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Grupper %s er medlem av"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Kan ikkje leggja til ny tinging."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Søk i innhaldet av notisar"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Uventa handling."
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Alle medlemmar"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Denne notisen finst ikkje."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Kunne ikkje slette favoritt."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Denne gruppa finst ikkje."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Alle medlemmar"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Fann ikkje API-metode."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Denne notisen finst ikkje."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Du tingar ikkje oppdateringar til den profilen."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Kunne ikkje lagra abonnement."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Denne notisen finst ikkje."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Du tingar ikkje oppdateringar til den profilen."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Kunne ikkje lagra abonnement."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Mennesker som tingar %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Ukjend fil type"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Ikkje tinga."
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1351,11 +1495,15 @@ msgstr "Dette emneord finst ikkje."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Ingen kallenamn."
@@ -1372,7 +1520,7 @@ msgstr "Ugyldig storleik."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Brukarbilete"
@@ -1385,42 +1533,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Du kan lasta opp ein logo for gruppa."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Brukaren har inga profil."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Avatar-innstillingar"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Original"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Forhandsvis"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Slett"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1439,32 +1597,72 @@ msgstr "Skaler"
msgid "No file uploaded."
msgstr "Ingen vald profil."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Velg eit utvalg av bildet som vil blir din avatar."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Fant ikkje igjen fil data."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Lasta opp brukarbilete."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Feil ved oppdatering av brukarbilete."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
#, fuzzy
msgid "Avatar deleted."
msgstr "Lasta opp brukarbilete."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Kun brukaren kan lese sine eigne meldingar."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr ""
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1472,7 +1670,8 @@ msgstr "Du tingar allereie oppdatering frå desse brukarane:"
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Blokker brukaren"
@@ -1492,16 +1691,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Merknad"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
+#: actions/block.php:158
#, fuzzy
-msgid "Do not block this user"
+msgid "Do not block this user."
msgstr "Lås opp brukaren"
#. TRANS: Button label on the user block form.
@@ -1512,16 +1710,16 @@ msgstr "Lås opp brukaren"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
#, fuzzy
msgctxt "BUTTON"
msgid "Yes"
msgstr "Jau"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Blokkér denne brukaren"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1529,31 +1727,6 @@ msgstr "Blokkér denne brukaren"
msgid "Failed to save block information."
msgstr "Lagring av informasjon feila."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Denne gruppa finst ikkje."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1626,23 +1799,6 @@ msgstr "Ukjend adressetype %s"
msgid "That address has already been confirmed."
msgstr "Den addressa har alt blitt bekrefta."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Kan ikkje oppdatera brukar."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1669,11 +1825,85 @@ msgid "Conversation"
msgstr "Stadfestingskode"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Notisar"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Kun brukaren kan lese sine eigne meldingar."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Kan ikkje oppdatera brukar."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Lasta opp brukarbilete."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Opprett ei ny gruppe"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Godta"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Kan ikkje oppdatera brukar."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Kan ikkje oppdatera brukar."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1687,15 +1917,15 @@ msgstr "Fann ikkje stadfestingskode."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
#, fuzzy
msgid "You are not the owner of this application."
msgstr "Du er ikkje medlem av den gruppa."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Det var eit problem med sesjons billetten din."
@@ -1717,13 +1947,13 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
#, fuzzy
-msgid "Do not delete this application"
+msgid "Do not delete this application."
msgstr "Kan ikkje sletta notisen."
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
#, fuzzy
-msgid "Delete this application"
+msgid "Delete this application."
msgstr "Slett denne notisen"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1733,8 +1963,10 @@ msgid "You must be logged in to delete a group."
msgstr "Du må være innlogga for å melde deg ut av ei gruppe."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
#, fuzzy
msgid "No nickname or ID."
msgstr "Ingen kallenamn."
@@ -1777,25 +2009,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
-msgstr "Kan ikkje sletta notisen."
+msgid "Do not delete this group."
+msgstr "Ikkje slett denne gruppa"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
-msgstr "Slett denne notisen"
+msgid "Delete this group."
+msgstr "Slett denne gruppa"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Ikkje logga inn"
@@ -1824,115 +2062,149 @@ msgstr "Sikker på at du vil sletta notisen?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
#, fuzzy
-msgid "Do not delete this notice"
+msgid "Do not delete this notice."
msgstr "Kan ikkje sletta notisen."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Slett denne notisen"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
#, fuzzy
msgid "You cannot delete users."
msgstr "Kan ikkje oppdatera brukar."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
#, fuzzy
msgid "You can only delete local users."
msgstr "Du kan ikkje sletta statusen til ein annan brukar."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
+msgid "Delete user"
+msgstr "Slett"
+
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
#, fuzzy
msgid "Delete user"
msgstr "Slett"
-#: actions/deleteuser.php:136
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
-#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
#, fuzzy
-msgid "Delete this user"
+msgid "Do not delete this user."
+msgstr "Ikkje slett denne gruppa"
+
+#. TRANS: Submit button title for 'Yes' when deleting a user.
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Slett denne notisen"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr ""
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
#, fuzzy
msgid "Invalid logo URL."
msgstr "Ugyldig storleik."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "Ugyldig storleik."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, fuzzy, php-format
msgid "Theme not available: %s."
msgstr "Denne sida er ikkje tilgjengleg i eit"
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Endra"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Statusmelding"
-#: actions/designadminpanel.php:457
-#, fuzzy
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
-msgstr "Statusmelding"
+msgstr "SSL-logo"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
#, fuzzy
msgid "Change theme"
msgstr "Endra"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
#, fuzzy
msgid "Site theme"
msgstr "Statusmelding"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
#, fuzzy
msgid "Theme for the site."
msgstr "Logg ut or sida"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
#, fuzzy
msgid "Custom theme"
msgstr "Statusmelding"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr ""
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr ""
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1940,101 +2212,108 @@ msgid ""
msgstr "Du kan lasta opp ein logo for gruppa."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr ""
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr ""
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr ""
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr ""
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
#, fuzzy
-msgid "Change colours"
+msgid "Change colors"
msgstr "Endra passordet ditt"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Innhald"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
#, fuzzy
msgid "Sidebar"
msgstr "Søk"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Tekst"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
#, fuzzy
msgid "Links"
msgstr "Logg inn"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr ""
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr ""
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
+msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!"
+
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
msgstr ""
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
-msgstr ""
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
+msgstr "Profilinnstillingar"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Lagra"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
-msgstr ""
-
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Denne notisen er ikkje ein favoritt!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Legg til i favorittar"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Denne notisen finst ikkje."
#. TRANS: Title for "Edit application" form.
@@ -2050,7 +2329,7 @@ msgid "You must be logged in to edit an application."
msgstr "Du må være logga inn for å lage ei gruppe."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
#, fuzzy
msgid "No such application."
msgstr "Denne notisen finst ikkje."
@@ -2062,67 +2341,76 @@ msgid "Use this form to edit your application."
msgstr "Bruk dette skjemaet for å redigere gruppa"
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
#, fuzzy
msgid "Name is required."
msgstr "Samme som passord over. Påkrevd."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
-#, fuzzy
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
-msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)."
+msgstr "Namnet er for langt (maksimalt 255 teikn)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
#, fuzzy
msgid "Name already in use. Try another one."
msgstr "Kallenamnet er allereie i bruk. Prøv eit anna."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
#, fuzzy
msgid "Description is required."
msgstr "Beskriving"
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
#, fuzzy
msgid "Source URL is not valid."
msgstr "Heimesida er ikkje ei gyldig internettadresse."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr ""
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "Plassering er for lang (maksimalt 255 teikn)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr ""
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
#, fuzzy
msgid "Could not update application."
msgstr "Kann ikkje oppdatera gruppa."
@@ -2134,14 +2422,17 @@ msgid "Edit %s group"
msgstr "Rediger %s gruppa"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Du må være logga inn for å lage ei gruppe."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Du må være logga inn for å lage ei gruppe."
@@ -2152,65 +2443,67 @@ msgstr "Bruk dette skjemaet for å redigere gruppa"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, fuzzy, php-format
msgid "Invalid alias: \"%s\""
msgstr "Ugyldig merkelapp: %s"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Kann ikkje oppdatera gruppa."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
#, fuzzy
msgid "Could not create aliases."
msgstr "Kunne ikkje lagre favoritt."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Lagra innstillingar."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Profilinnstillingar"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Styr korleis du får epost frå %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
#, fuzzy
msgid "Email address"
msgstr "Epostadresser"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Godkjent epostadresse."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Gjenopprett"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2223,15 +2516,15 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Epostadresse («brukarnamn@example.org»)"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
#, fuzzy
msgctxt "BUTTON"
msgid "Add"
@@ -2239,29 +2532,29 @@ msgstr "Legg til"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Innkomande epost"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Eg vil senda notisar med epost."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Send epost til denne addressa for å legge til nye notisar."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Vel ny epostadresse til å oppdatera med; fjerner den gamle."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2269,90 +2562,92 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
#, fuzzy
msgctxt "BUTTON"
msgid "New"
msgstr "Ny"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Epostadresser"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Send meg ein notis ved nye tingingar på epost."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Send meg ein epost når nokon legg til ein av mine notisar som favoritt."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Send meg ein epost når nokon sender meg ei privat melding."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
#, fuzzy
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Send meg ein epost når nokon sender meg ei privat melding."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Tillat vennar å sende meg ein epost."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publiser ein MicroID for epost addressa mi."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Lagra brukarval."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Ingen epostadresse."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Klarar ikkje normalisera epostadressa"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Ikkje ei gyldig epostadresse."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Det er alt din epost addresse"
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Den epost addressa er alt registrert hos ein annan brukar."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Kan ikkje leggja til godkjenningskode."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2361,250 +2656,312 @@ msgstr ""
"søppelpostboksen) for koden og veiledning på korleis du nyttar han."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Ingen ventande stadfesting å avbryta."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
#, fuzzy
msgid "That is the wrong email address."
msgstr "Det er feil lynmeldings addresse."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Kan ikkje sletta e-postgodkjenning."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Ingen ventande stadfesting å avbryta."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Det er ikkje din epost addresse."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Fjerna innkomande epostadresse."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Ingen innkomande epostadresse."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Kan ikkje oppdatera brukarinformajon."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Fjerna innkomande epostadresse."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "La til ny innkomande epostadresse."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Denne notisen er alt ein favoritt!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Fjern favoritt"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Populære notisar"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Populære notisar, side %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Viser dei mest populære notisane på sida akkurat no."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%s's favoritt meldingar"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, fuzzy, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Oppdateringar frå %1$s på %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Profilerte folk"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Profilerte folk, side %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, fuzzy, php-format
-msgid "A selection of some great users on %s"
+msgid "A selection of some great users on %s."
msgstr "Eit utval av nokre av dei flotte folka på %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Denne notisen finst ikkje."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Denne notisen finst ikkje."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
#, fuzzy
msgid "No attachments."
msgstr "Slikt dokument finst ikkje."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
#, fuzzy
msgid "No uploaded attachments."
msgstr "Slikt dokument finst ikkje."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Venta ikkje dette svaret!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
#, fuzzy
msgid "User being listened to does not exist."
msgstr "Brukaren du lyttar til eksisterer ikkje."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Du kan nytta det lokale abonnementet!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Brukaren tillet deg ikkje å tinga meldingane sine."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Du tingar ikkje oppdateringar til den profilen."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
#, fuzzy
msgid "Could not convert request token to access token."
msgstr "Kan ikkje konvertera spyrjebillett til tilgongsbillett."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
#, fuzzy
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Ukjend versjon av OMB-protokollen."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
#, fuzzy
msgid "Error updating remote profile."
msgstr "Feil ved oppdatering av ekstern profil"
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
#, fuzzy
msgid "No such file."
msgstr "Denne notisen finst ikkje."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
#, fuzzy
msgid "Cannot read file."
msgstr "Mista fila vår."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
#, fuzzy
msgid "Invalid role."
msgstr "Ugyldig storleik."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Du kan ikkje lengre legge inn notisar på denne sida."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Brukaren har inga profil."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Ingen vald profil."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Fann ingen profil med den IDen."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
#, fuzzy
msgid "No group specified."
msgstr "Ingen vald profil."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr ""
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
#, fuzzy
msgid "User is already blocked from group."
msgstr "Brukar har blokkert deg."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
#, fuzzy
msgid "User is not a member of group."
msgstr "Du er ikkje medlem av den gruppa."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
#, fuzzy
msgid "Block user from group"
msgstr "Blokker brukaren"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2613,166 +2970,193 @@ msgid ""
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
+#: actions/groupblock.php:191
#, fuzzy
-msgid "Do not block this user from this group"
+msgid "Do not block this user from this group."
msgstr "Ei liste over brukarane i denne gruppa."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
+#: actions/groupblock.php:198
#, fuzzy
-msgid "Block this user from this group"
+msgid "Block this user from this group."
msgstr "Ei liste over brukarane i denne gruppa."
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Nei Jabber-ID"
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
#, fuzzy
msgid "You must be logged in to edit a group."
msgstr "Du må være logga inn for å lage ei gruppe."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
#, fuzzy
msgid "Group design"
msgstr "Grupper"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
#, fuzzy
-msgid "Couldn't update your design."
-msgstr "Kan ikkje oppdatera brukar."
+msgid "Unable to update your design settings."
+msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!"
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Lagra brukarval."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo åt gruppa"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, fuzzy, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "Du kan lasta opp ein logo for gruppa."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Last opp"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Skaler"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
#, fuzzy
msgid "Pick a square area of the image to be the logo."
msgstr "Velg eit utvalg av bildet som vil blir din avatar."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logo oppdatert."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Feil ved oppdatering av logo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s medlemmar i gruppa"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%s medlemmar i gruppa"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Ei liste over brukarane i denne gruppa."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Administrator"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
#, fuzzy
msgid "Make user an admin of the group"
msgstr "Du må være administrator for å redigere gruppa"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, fuzzy, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Oppdateringar frå %1$s på %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grupper"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Grupper, side %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Opprett ei ny gruppe"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, fuzzy, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2781,23 +3165,31 @@ msgstr ""
"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer "
"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Gruppesøk"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Resultat frå kommandoen"
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2805,137 +3197,147 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr ""
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
#, fuzzy
msgid "User is not blocked from group."
msgstr "Brukar har blokkert deg."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Feil ved fjerning av blokka."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Avatar-innstillingar"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Du kan sende og motta meldingar gjennom Jabber/GTalk [direktemeldingar](%%"
"doc.im%%). Set opp adressa og innstillingar under."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
#, fuzzy
msgid "IM is not available."
msgstr "Denne sida er ikkje tilgjengleg i eit"
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Epostadresser"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Stadfesta Jabber/Gtalk-adresse."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Venter på godkjenning. Sjekk din Jabber/GTalk-konto for ei melding med "
"instruksjonar (la du %s til venelista di?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber- eller GTalk-adresse, døme «brukarnamn@example.org». Hugs å fyrst "
"leggja %s til venelista di i ljonmeldingsklienten din."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Lagra brukarval."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Send meg ein notis via Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Legg til ein notis når min Jabber/GTalk status forandrar seg."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr "Send meg svar via Jabber/GTalk fra folk eg ikkje abbonnerar på."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publiser ein MicroID for Jabber/GTalk addressene mine"
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Lagra brukarval."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Nei Jabber-ID"
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Klarar ikkje normalisera Jabber-IDen"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Ikkje ein gyldig Jabber-ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Det er alt din Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber-ID tilhøyrer allereie ein annan brukar."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2944,74 +3346,79 @@ msgstr ""
"Sendte godkjenningskode til ljonmeldingsadressa du la til. Du må godtaka %s "
"for å senda meldinger til deg."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Det er feil lynmeldings addresse."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
#, fuzzy
-msgid "Couldn't delete IM confirmation."
+msgid "Could not delete IM confirmation."
msgstr "Kan ikkje sletta e-postgodkjenning."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Ingen stadfestingskode."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Det er ikkje din Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Fjerna innkomande epostadresse."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, fuzzy, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Innboks for %s"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Innboks for %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "Dette er innboksen for dine private meldingar."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr ""
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Du må være logga inn for å bli med i ei gruppe."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
-#, fuzzy, php-format
+#: actions/invite.php:78
+#, php-format
msgid "Invalid email address: %s."
-msgstr "Ugyldig epostadresse: «%s»"
+msgstr "Ugyldig epostadresse: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Invitasjon(er) sendt"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Invitér nye brukarar"
@@ -3019,7 +3426,7 @@ msgstr "Invitér nye brukarar"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3028,8 +3435,8 @@ msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
-#, fuzzy, php-format
+#: actions/invite.php:146 actions/invite.php:160
+#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
msgstr "%1$s (%2$s)"
@@ -3037,7 +3444,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3050,7 +3457,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3059,7 +3466,7 @@ msgstr[1] "Invitasjon(er) sendt til fylgjande folk:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3068,7 +3475,7 @@ msgstr ""
"har registrert seg på sida. Takk for å bidra til fellesskapet her!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3076,27 +3483,28 @@ msgstr ""
"tenesta."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Epostadresser"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Venene sine adresser for invitasjon (ei per line)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Personleg melding"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Eventuelt legg til ei personleg melding til invitasjonen."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
#, fuzzy
msgctxt "BUTTON"
msgid "Send"
@@ -3105,7 +3513,7 @@ msgstr "Send"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s har invitert deg til %2$s"
@@ -3115,7 +3523,7 @@ msgstr "%1$s har invitert deg til %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3167,169 +3575,185 @@ msgstr ""
"\n"
"Beste helsing, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Du må være logga inn for å bli med i ei gruppe."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%s blei medlem av gruppe %s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Du må være innlogga for å melde deg ut av ei gruppe."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Du er ikkje medlem av den gruppa."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s sin status på %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Plassering er for lang (maksimalt 255 teikn)."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
#, fuzzy
msgid "Private"
msgstr "Personvern"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Lagra"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Allereie logga inn."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Feil brukarnamn eller passord."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
#, fuzzy
msgid "Error setting user. You are probably not authorized."
msgstr "Ikkje autorisert."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Logg inn"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Logg inn "
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Hugs meg"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "Logg inn automatisk i framtidi (ikkje for delte maskiner)."
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Mista eller gløymd passord?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3337,12 +3761,12 @@ msgstr ""
"Skriv inn brukarnam og passord før du endrar innstillingar (av "
"tryggleiksomsyn)."
-#: actions/login.php:292
+#: actions/login.php:281
#, fuzzy
msgid "Login with your username and password."
msgstr "Log inn med brukarnamn og passord."
-#: actions/login.php:295
+#: actions/login.php:284
#, fuzzy, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3382,21 +3806,24 @@ msgid "New application"
msgstr "Denne notisen finst ikkje."
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
#, fuzzy
msgid "You must be logged in to register an application."
msgstr "Du må være logga inn for å lage ei gruppe."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
#, fuzzy
msgid "Use this form to register a new application."
msgstr "Bruk dette skjemaet for å lage ein ny gruppe."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr ""
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
#, fuzzy
msgid "Could not create application."
msgstr "Kunne ikkje lagre favoritt."
@@ -3406,11 +3833,22 @@ msgstr "Kunne ikkje lagre favoritt."
msgid "New group"
msgstr "Ny gruppe"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Du er ikkje medlem av den gruppa."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Bruk dette skjemaet for å lage ein ny gruppe."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Ny melding"
@@ -3463,7 +3901,9 @@ msgstr "Ny notis"
msgid "Notice posted"
msgstr "Melding lagra"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3472,37 +3912,47 @@ msgstr ""
"Søk i notisar på %%site.name%% i innhald. Separer nøkkelord med mellomrom; "
"dei må være minimum 3 bokstavar eller meir."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Tekstsøk"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Melding fra %1$s på %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, 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:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, fuzzy, php-format
msgid "Updates with \"%s\""
msgstr "Oppdateringar frå %1$s på %2$s!"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Oppdateringar frå %1$s på %2$s!"
#: actions/nudge.php:85
@@ -3545,31 +3995,31 @@ msgid "You have not registered any applications yet."
msgstr ""
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr ""
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
#, fuzzy
msgid "You are not a user of that application."
msgstr "Du er ikkje medlem av den gruppa."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Bruk dette skjemaet for å redigere gruppa"
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3577,20 +4027,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Fann ikkje API-metode."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Fann ikkje API-metode."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Brukaren har inga profil."
@@ -3600,6 +4060,16 @@ msgstr "Brukaren har inga profil."
msgid "%1$s's status on %2$s"
msgstr "%1$s sin status på %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Kunne ikkje finne mottakar."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3613,16 +4083,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Ikkje eit støtta dataformat."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Søk etter folk"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Notissøk"
@@ -3636,74 +4107,85 @@ msgid "Manage various other options."
msgstr "Velikehald andre innstillingar"
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr ""
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr ""
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Den automatisk forkortingstenesta du vil bruke"
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
#, fuzzy
msgid "View profile designs"
msgstr "Profilinnstillingar"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr ""
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Adressa til forkortingstenesta er for lang (maksimalt 50 teikn)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
#, fuzzy
msgid "No user ID specified."
msgstr "Ingen vald profil."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
#, fuzzy
msgid "No login token specified."
msgstr "Ingen vald profil."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Ingen autoriserings-spørjing!"
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
#, fuzzy
msgid "Invalid login token specified."
msgstr "Ugyldig notisinnhald"
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
#, fuzzy
msgid "Login token expired."
msgstr "Logg inn "
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, fuzzy, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Utboks for %s"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Utboks for %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "Dette er din utboks som syner alle private meldingar du har sendt."
@@ -3715,7 +4197,8 @@ msgstr "Endra passord"
msgid "Change your password."
msgstr "Endra passordet ditt"
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Endra passord"
@@ -3723,48 +4206,50 @@ msgstr "Endra passord"
msgid "Old password"
msgstr "Gamalt passord"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nytt passord"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 eller fleire teikn"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Godta"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Samme passord som over"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Endra"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Passord må være minst 6 teikn."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Passorda var ikkje like."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Det gamle passordet stemmer ikkje"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Feil ved lagring av brukar; fungerer ikkje."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Klarar ikkje lagra nytt passord."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Lagra passord."
@@ -3983,7 +4468,7 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr ""
@@ -4057,7 +4542,9 @@ msgstr ""
msgid "Save paths"
msgstr "Statusmelding"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4066,7 +4553,8 @@ msgstr ""
"Søk for mennesker på %%site.name%% i namn, lokasjon eller interesse. Separer "
"nøkkelord med mellomrom; dei må være minimum 3 bokstavar eller meir."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Søk etter folk"
@@ -4090,12 +4578,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profilinnstillingar"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4103,12 +4591,12 @@ msgstr ""
"deg."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profil informasjon"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
@@ -4116,21 +4604,22 @@ msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Fullt namn"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Heimeside"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side."
@@ -4138,7 +4627,7 @@ msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4146,82 +4635,89 @@ msgstr[0] "Skriv om deg og interessene dine med 140 teikn"
msgstr[1] "Skriv om deg og interessene dine med 140 teikn"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
#, fuzzy
msgid "Describe yourself and your interests"
msgstr "Skildra deg sjølv og din"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Om meg"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Plassering"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Merkelappar"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller "
"mellomroms separert."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Språk"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Foretrukke språk"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Tidssone"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Kva tidssone er du vanlegvis i?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4229,51 +4725,54 @@ msgstr[0] "Plassering er for lang (maksimalt %d teikn)."
msgstr[1] "Plassering er for lang (maksimalt %d teikn)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Tidssone er ikkje valt."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Språk er for langt (maksimalt 50 teikn)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Ugyldig merkelapp: %s"
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Kan ikkje oppdatera brukar for automatisk tinging."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
+#: actions/profilesettings.php:405
#, fuzzy
-msgid "Couldn't save location prefs."
+msgid "Could not save location prefs."
msgstr "Kan ikkje lagra merkelapp."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Kan ikkje lagra profil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "Kan ikkje lagra merkelapp."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "Kunne ikkje lagra emneord."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Lagra innstillingar."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Opprett ei ny gruppe"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4343,6 +4842,12 @@ msgstr ""
"Dette er %%site.name%%, ei [mikroblogging](http://en.wikipedia.org/wiki/"
"Micro-blogging)-teneste"
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s oppdateringar frå alle saman!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4385,35 +4890,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Emne sky"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Du er allereie logga inn!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Opprettingskoden finst ikkje."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Ikkje ei gjenopprettingskode."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Hent fram passord for ukjend brukar."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Feil med stadfestingskode."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Denne godkjenningskoden er for gammal. Vennligst start på nytt."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Kunne ikkje oppdatera brukar med stadfesta e-postadresse."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
#, fuzzy
msgid ""
"If you have forgotten or lost your password, you can get a new one sent to "
@@ -4422,69 +4935,102 @@ msgstr ""
"Instruksjonar for å få att passordet ditt er send til epostadressa som er "
"lagra i kontoen din."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
#, fuzzy
msgid "Password recovery"
msgstr "Passord opphenting etterspurt"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
#, fuzzy
msgid "Nickname or email address"
msgstr "Skriv inn kallenamn eller epostadresse."
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Ditt kallenamn på denne servere, eller din registrerte epost addresse."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Gjenopprett"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Gjenopprett"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Tilbakestill passord"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Hent fram passord"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Passord opphenting etterspurt"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Lagra passord."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Uventa handling."
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 eller fleire teikn, og ikkje gløym dei."
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Avbryt"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Skriv inn kallenamn eller epostadresse."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Ingen brukar med den epostadressa eller det brukarnamnet."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Ingen registrert epostadresse for den brukaren."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Feil med lagring av adressestadfesting."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4492,122 +5038,116 @@ msgstr ""
"Instruksjonar for å få att passordet ditt er send til epostadressa som er "
"lagra i kontoen din."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Uventa passordnullstilling."
-#: actions/recoverpassword.php:365
-#, fuzzy
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Passord må vera 6 tekn eller meir."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Passord og stadfesting stemmer ikkje."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Feil ved å setja brukar."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Lagra det nye passordet. Du er logga inn."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Beklage, men kun inviterte kan registrere seg."
-#: actions/register.php:99
+#: actions/register.php:94
#, fuzzy
msgid "Sorry, invalid invitation code."
msgstr "Feil med stadfestingskode."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registreringa gikk bra"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registrér"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registrering ikkje tillatt."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Epostadressa finst allereie."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Ugyldig brukarnamn eller passord."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom. "
-"Kravd."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 eller fleire teikn. Kravd."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Samme som passord over. Påkrevd."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Epost"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Blir berre brukt for uppdateringar, viktige meldingar og for gløymde passord"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Lengre namn, fortrinnsvis ditt «ekte» namn"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL til heimesida di, bloggen din, eller ein profil på ei anna side."
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, fuzzy, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4616,7 +5156,7 @@ msgstr ""
" unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og "
"telefonnummer."
-#: actions/register.php:589
+#: actions/register.php:573
#, fuzzy, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4648,7 +5188,7 @@ msgstr ""
"\n"
"Takk for at du blei med, og vi håpar du vil lika tenesta!"
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4656,7 +5196,7 @@ msgstr ""
"(Du mottek ein epost med instruksjonar på korleis du stadfester epostadressa "
"di)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4668,86 +5208,92 @@ msgstr ""
"[kompatibel mikrobloggingside](%%doc.openmublog%%), kann du oppgje URLen til "
"profilen under."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Eksternt abbonement"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
#, fuzzy
msgid "Subscribe to a remote user"
msgstr "Lagre tinging for brukar: %s"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Brukaren sitt kallenamn"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Kallenamnet til brukaren du vil fylgja"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profil-adresse"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste."
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Ting"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Ugyldig profil-nettadresse (feil format)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr "Ikkje ein brukande profil-netadresse (ingen YADIS-dokument)."
-#: actions/remotesubscribe.php:176
+#: actions/remotesubscribe.php:175
#, fuzzy
-msgid "That’s a local profile! Login to subscribe."
+msgid "That is a local profile! Login to subscribe."
msgstr "Det er ikkje ein lokal profil! Log inn for å tinge."
-#: actions/remotesubscribe.php:183
+#: actions/remotesubscribe.php:182
#, fuzzy
-msgid "Couldn’t get a request token."
+msgid "Could not get a request token."
msgstr "Fekk ikkje spørjingsbillett (request token)."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
#, fuzzy
msgid "Only logged-in users can repeat notices."
msgstr "Kun brukaren kan lese sine eigne meldingar."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
#, fuzzy
msgid "No notice specified."
msgstr "Ingen vald profil."
-#: actions/repeat.php:76
+#: actions/repeat.php:75
#, fuzzy
-msgid "You can't repeat your own notice."
+msgid "You cannot repeat your own notice."
msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
#, fuzzy
msgid "You already repeated that notice."
msgstr "Du har allereie blokkert denne brukaren."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Framheva"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
#, fuzzy
msgid "Repeated!"
msgstr "Lag"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Svar til %s"
@@ -4793,11 +5339,102 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
+msgid "Replies to %1$s on %2$s."
msgstr "Melding til %1$s på %2$s"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Kun brukaren kan lese sine eigne meldingar."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Last opp fil"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Systemfeil ved opplasting av fil."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Alle medlemmar"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Last opp fil"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Du kan ikkje lengre legge inn notisar på denne sida."
@@ -4807,7 +5444,7 @@ msgstr "Du kan ikkje lengre legge inn notisar på denne sida."
msgid "User doesn't have this role."
msgstr "Kan ikkje finne brukar"
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "Statistikk"
@@ -4852,137 +5489,151 @@ msgstr ""
msgid "Save site settings"
msgstr "Avatar-innstillingar"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
#, fuzzy
msgid "You must be logged in to view an application."
msgstr "Du må være innlogga for å melde deg ut av ei gruppe."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
#, fuzzy
msgid "Application profile"
msgstr "Notisen har ingen profil"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr ""
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
#, fuzzy
msgid "Name"
msgstr "Kallenamn"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
#, fuzzy
msgid "Organization"
msgstr "Paginering"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Beskriving"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistikk"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr ""
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Slett"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr ""
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr ""
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Sikker på at du vil sletta notisen?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%s's favoritt meldingar"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Kunne ikkje hente fram favorittane."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Straum for vener av %s"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Straum for vener av %s"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Straum for vener av %s"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4990,7 +5641,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr ""
@@ -5008,83 +5660,88 @@ msgid "%1$s group, page %2$d"
msgstr "Grupper, side %d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Gruppe profil"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Merknad"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr ""
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Gruppe handlingar"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Straum for vener av %s"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Straum for vener av %s"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Notisstraum for %s"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "Utboks for %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Medlemmar"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Ingen)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Alle medlemmar"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
-#, fuzzy
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
-msgstr "Framheva"
+msgstr "Oppretta"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
-#, fuzzy
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Medlemmar"
@@ -5093,7 +5750,7 @@ msgstr "Medlemmar"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5106,7 +5763,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, fuzzy, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5118,31 +5775,31 @@ msgstr ""
"wikipedia.org/wiki/Micro-blogging)-teneste"
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
#, fuzzy
msgid "Admins"
msgstr "Administrator"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Kan ikkje finne den meldinga."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Kun sendaren og mottakaren kan lese denne meldinga."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Melding til %1$s på %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Melding fra %1$s på %2$s"
@@ -5159,7 +5816,7 @@ msgid "%1$s tagged %2$s"
msgstr "Grupper, side %d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5404,76 +6061,77 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
#, fuzzy
-msgid "Save site notice"
+msgid "Save site notice."
msgstr "Statusmelding"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Avatar-innstillingar"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Du kan motta SMS-meldingar gjennom e-post frå %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
#, fuzzy
msgid "SMS is not available."
msgstr "Denne sida er ikkje tilgjengleg i eit"
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Epostadresser"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Godkjent mobiltelefonnummer."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Ventar på godkjenning for dette telefonnummeret."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Stadfestingskode"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Skriv inn koden du fekk på telefonen."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
#, fuzzy
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Godta"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Ingen telefonnummer."
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Telefonnummer, kun tall, med landskode"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Lagra brukarval."
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5482,33 +6140,33 @@ msgstr ""
"min tilbydar."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
#, fuzzy
msgid "SMS preferences saved."
msgstr "Lagra brukarval."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Ingen telefonnummer."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Ingen mobiloperatør vald."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Det er alt ditt telefonnummer"
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Det telefonnummeret er alt registrert hos ein annan brukar."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5517,40 +6175,40 @@ msgstr ""
"søppelpostboksen) for koden og veiledning på korleis du nyttar han."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Det er feil godkjennings nummer."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS bekreftelse"
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Det er ikkje ditt telefonnummer"
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
#, fuzzy
msgid "The SMS phone number was removed."
msgstr "SMS telefon nummer"
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Telefontilbydar"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Velg ein tilbydar"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5560,8 +6218,9 @@ msgstr ""
"aksepterer SMS-over-epost, men ikkje vistast her."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Ingen innskriven kode"
#. TRANS: Menu item for site administration
@@ -5634,16 +6293,20 @@ msgstr "Du tingar ikkje oppdateringar til den profilen."
msgid "Could not save subscription."
msgstr "Kunne ikkje lagra abonnement."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Du tingar ikkje oppdateringar til den profilen."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Abonnent"
@@ -5675,7 +6338,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Dette er folk som lyttar til %s's notisar"
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5683,7 +6346,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5693,7 +6356,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5724,7 +6387,7 @@ msgstr "Dette er folka som %s tingar oppdateringar frå."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5738,23 +6401,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%1$s høyrer no på notisane dine på %2$s."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Notisstraum for %s"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5788,12 +6452,15 @@ msgstr "Manglar argumentet ID."
msgid "Tag %s"
msgstr "Merkelapp %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Brukarprofil"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Bilete"
@@ -5809,6 +6476,11 @@ msgstr ""
"Emneord for denne brukaren (bokstavar, tal, -, ., og "
"_, separert med komma eller mellomrom"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Ugyldig merkelapp: %s"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5816,10 +6488,6 @@ msgstr ""
"Du kan berre leggje til emneord på folk som du tingar notisar frå, eller som "
"tingar notisar frå deg."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Kunne ikkje lagra emneord."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5830,6 +6498,7 @@ msgstr ""
msgid "No such tag."
msgstr "Dette emneord finst ikkje."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Du tingar ikkje oppdateringar til den profilen."
@@ -5851,7 +6520,7 @@ msgstr "Fann ingen profil med den IDen."
msgid "Unsubscribed"
msgstr "Fjerna tinging"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5883,12 +6552,11 @@ msgstr ""
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5951,57 +6619,71 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Avatar-innstillingar"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autoriser tinging"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
#, 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”."
+"click \"Reject\"."
msgstr ""
"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne "
"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\""
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
#, fuzzy
msgid "License"
msgstr "lisens."
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Godta"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Lagre tinging for brukar: %s"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Avslå"
-#: actions/userauthorization.php:220
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
#, fuzzy
-msgid "Reject this subscription"
+msgid "Reject this subscription."
msgstr "%s tingarar"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Ingen autoriserings-spørjing!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Tinging autorisert"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
#, fuzzy
msgid ""
"The subscription has been authorized, but no callback URL was passed. Check "
@@ -6012,11 +6694,12 @@ msgstr ""
"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal "
"gjennomførast. Ditt tingings teikn er: "
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Tinging avvist"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
#, fuzzy
msgid ""
"The subscription has been rejected, but no callback URL was passed. Check "
@@ -6026,55 +6709,78 @@ msgstr ""
"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk "
"med sida sine instruksjonar for korleis ein skal avvise tinginga."
-#: actions/userauthorization.php:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+msgid "Listenee URI \"%s\" is too long."
msgstr ""
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+msgid "Listenee URI \"%s\" is a local user."
msgstr ""
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+msgid "Profile URL \"%s\" is for a local user."
msgstr ""
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
msgstr ""
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "Heimesida er ikkje ei gyldig internettadresse."
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Kan ikkje lesa brukarbilete-URL «%s»"
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Feil biletetype for '%s'"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
#, fuzzy
msgid "Profile design"
msgstr "Profilinnstillingar"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -6105,7 +6811,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Oppdateringar frå %1$s på %2$s!"
@@ -6154,7 +6860,7 @@ msgid "Plugins"
msgstr ""
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
#, fuzzy
msgid "Version"
msgstr "Personleg"
@@ -6164,33 +6870,33 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Tjeneste"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr ""
"Send meg ein epost når nokon legg til ein av mine notisar som favoritt."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6203,7 +6909,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6212,7 +6918,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6220,7 +6926,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Ugyldig filnamn."
@@ -6282,7 +6988,7 @@ msgid "Could not create login token for %s"
msgstr "Kunne ikkje lagre favoritt."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6310,31 +7016,31 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Feil med innhenting av brukarbilete."
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Eit problem oppstod ved lagring av notis."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Feil ved lagring av notis. Ukjend brukar."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
#, fuzzy
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
@@ -6343,43 +7049,43 @@ msgstr ""
"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Du kan ikkje lengre legge inn notisar på denne sida."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Eit problem oppstod ved lagring av notis."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
#, fuzzy
msgid "Problem saving group inbox."
msgstr "Eit problem oppstod ved lagring av notis."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Kunne ikkje lagra abonnement."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6387,14 +7093,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6468,36 +7174,57 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Melding til %1$s på %2$s"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Kunne ikkje laga gruppa."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Kunne ikkje laga gruppa."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Kunne ikkje bli med i gruppa."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
#, fuzzy
msgid "Could not save local group info."
msgstr "Kunne ikkje lagra abonnement."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Kan ikkje oppdatera brukar."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6535,152 +7262,155 @@ msgid "Other"
msgstr "Anna"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, fuzzy, php-format
msgid "%1$s - %2$s"
msgstr "%1$s (%2$s)"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Ingen tittel"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Navigasjon for hovudsida"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
#, fuzzy
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Personleg profil og oversyn over vener"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
#, fuzzy
msgctxt "MENU"
msgid "Personal"
msgstr "Personleg"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Endra passordet ditt"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Konto"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
#, fuzzy
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Klarte ikkje å omdirigera til tenaren: %s"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Kopla til"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
#, fuzzy
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Navigasjon for hovudsida"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
#, fuzzy
msgctxt "MENU"
msgid "Admin"
msgstr "Administrator"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, fuzzy, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviter vennar og kollega til å bli med deg på %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
#, fuzzy
msgctxt "MENU"
msgid "Invite"
msgstr "Invitér"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Logg inn "
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Logo"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Opprett ei ny gruppe"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
#, fuzzy
msgctxt "MENU"
msgid "Register"
msgstr "Registrér"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Logg inn "
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
#, fuzzy
msgctxt "MENU"
msgid "Login"
msgstr "Logg inn"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Hjelp"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Hjelp"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
#, fuzzy
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Søk etter folk eller innhald"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
#, fuzzy
msgctxt "MENU"
msgid "Search"
@@ -6688,69 +7418,69 @@ msgstr "Søk"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Statusmelding"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Lokale syningar"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Sidenotis"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Andrenivås side navigasjon"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Hjelp"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Om"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "OSS"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr ""
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Personvern"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Kjeldekode"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Kontakt"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
#, fuzzy
msgid "Badge"
msgstr "Dult"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNets programvarelisens"
@@ -6758,7 +7488,7 @@ msgstr "StatusNets programvarelisens"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, fuzzy, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6768,7 +7498,7 @@ msgstr ""
"broughtbyurl%%). "
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** er ei mikrobloggingteneste."
@@ -6777,7 +7507,7 @@ msgstr "**%%site.name%%** er ei mikrobloggingteneste."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6789,51 +7519,51 @@ msgstr ""
"org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
#, fuzzy
msgid "Site content license"
msgstr "StatusNets programvarelisens"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paginering"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "« Etter"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Før »"
@@ -6842,10 +7572,80 @@ msgstr "Før »"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Ukjend fil type"
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Bilete"
+msgid "Cannot force remote user to subscribe."
+msgstr "Spesifer namnet til brukaren du vil tinge"
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Ukjend fil type"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Du er allereie medlem av den gruppa"
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Søk i innhaldet av notisar"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Brukaren finst ikkje."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s (%2$s)"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6927,7 +7727,7 @@ msgid "User configuration"
msgstr "SMS bekreftelse"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Brukar"
@@ -6976,19 +7776,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -7011,29 +7815,33 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Kunne ikkje lagre melding."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
#, fuzzy
msgid "Database error inserting OAuth application user."
msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s"
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr ""
@@ -7147,17 +7955,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Gjenopprett"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Ikkje slett denne gruppa"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr ""
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Forhandsvis"
@@ -7188,6 +8002,11 @@ msgstr "Endra passord"
msgid "Block"
msgstr "Blokkér"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Blokkér denne brukaren"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7301,7 +8120,7 @@ msgstr "Fullt namn: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Stad: %s"
@@ -7309,7 +8128,7 @@ msgstr "Stad: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Heimeside: %s"
@@ -7546,26 +8365,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Ingen stadfestingskode."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Invitasjon(er) sendt til fylgjande folk:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
#, fuzzy
msgid "Go to the installer."
msgstr "Logg inn or sida"
@@ -7610,14 +8429,20 @@ msgstr ""
msgid "Database error"
msgstr ""
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+#, fuzzy
+msgid "Delete this user"
+msgstr "Slett denne notisen"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Last opp fil"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Du kan lasta opp ein logo for gruppa."
@@ -7634,26 +8459,76 @@ msgctxt "RADIO"
msgid "Off"
msgstr ""
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Avbryt"
+msgid "Change colours"
+msgstr "Endra passordet ditt"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr ""
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+#, fuzzy
+msgid "Couldn't update your design."
+msgstr "Kan ikkje oppdatera brukar."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr ""
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Bruk dette skjemaet for å redigere gruppa"
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Fjern favoriseringsmerket"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Fjern favoritt"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Favoriser denne notisen"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Tjeneste"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr ""
@@ -7670,6 +8545,19 @@ msgstr ""
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Alle medlemmar"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7705,35 +8593,35 @@ msgstr "Gå"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
"1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL til heimesida eller bloggen for gruppa eller emnet"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
#, fuzzy
msgid "Describe the group or topic"
msgstr "Beskriv gruppa eller emnet med 140 teikn"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Beskriv gruppa eller emnet med 140 teikn"
msgstr[1] "Beskriv gruppa eller emnet med 140 teikn"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "Kvar er du, t.d. «Stavanger, Rogaland, Noreg»"
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7838,40 +8726,41 @@ msgstr "Merkelappar i %s gruppa sine notisar"
msgid "This page is not available in a media type you accept"
msgstr "Denne sida er ikkje tilgjengeleg i nokon mediatype du aksepterer."
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Støttar ikkje bileteformatet."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, fuzzy, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Du kan lasta opp ein logo for gruppa."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Hallvegs opplasta."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Systemfeil ved opplasting av fil."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Korrupt bilete."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Mista fila vår."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Ukjend fil type"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7879,7 +8768,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7887,7 +8776,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7908,23 +8797,25 @@ msgstr ""
msgid "Leave"
msgstr "Forlat"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Log inn med brukarnamn og passord."
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Opprett ny konto"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Stadfesting av epostadresse"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7943,14 +8834,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s høyrer no på notisane dine på %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7962,7 +8853,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7985,14 +8876,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Stad: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Ny epostadresse for å oppdatera %s"
@@ -8000,7 +8891,7 @@ msgstr "Ny epostadresse for å oppdatera %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8022,34 +8913,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s status"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS bekreftelse"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, fuzzy, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "Ventar på godkjenning for dette telefonnummeret."
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "Du har blitt dulta av %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8067,7 +8958,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Ny privat melding fra %s"
@@ -8076,7 +8967,7 @@ msgstr "Ny privat melding fra %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8097,7 +8988,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr ""
@@ -8108,7 +8999,7 @@ msgstr ""
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8130,7 +9021,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8140,7 +9031,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr ""
@@ -8151,7 +9042,7 @@ msgstr ""
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8178,21 +9069,16 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Kun brukaren kan lese sine eigne meldingar."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-#, fuzzy
-msgid "from"
-msgstr " frå "
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Kunne ikkje prosessera melding."
@@ -8219,38 +9105,6 @@ msgstr "Støttar ikkje bileteformatet."
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8271,7 +9125,7 @@ msgstr "Kunne ikkje slette favoritt."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8280,7 +9134,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8315,18 +9169,28 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Send"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Melding"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+#, fuzzy
+msgid "from"
+msgstr " frå "
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8342,11 +9206,11 @@ msgstr "Send ei melding"
msgid "What's up, %s?"
msgstr "Kva skjer, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr ""
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr ""
@@ -8367,58 +9231,62 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
#, fuzzy
msgid "N"
msgstr "Nei"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
#, fuzzy
msgid "in context"
msgstr "Ingen innhald."
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
#, fuzzy
msgid "Repeated by"
msgstr "Lag"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Svar på denne notisen"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Svar"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Slett denne notisen"
+
+#: lib/noticelist.php:691
#, fuzzy
msgid "Notice repeated"
msgstr "Melding lagra"
@@ -8456,79 +9324,115 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "Kan ikkje leggja til ny tinging."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Personleg"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Svar"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favorittar"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Innboks"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Dine innkomande meldinger"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Utboks"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Dine sende meldingar"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Merkelappar i %s sine notisar"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
#, fuzzy
msgid "Unknown"
msgstr "Uventa handling."
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Tingingar"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Alle tingingar"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Tingarar"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Tingarar"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
#, fuzzy
msgid "User ID"
msgstr "Brukar"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Medlem sidan"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grupper"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Alle gruppar"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8578,7 +9482,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Ei liste over brukarane i denne gruppa."
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Fann ikkje API-metode."
@@ -8675,6 +9579,10 @@ msgstr "Invitér"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviter vennar og kollega til å bli med deg på %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Lagre tinging for brukar: %s"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8789,68 +9697,85 @@ msgstr "Fjern tinging"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Brukaren har inga profil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
#, fuzzy
msgid "Edit Avatar"
msgstr "Brukarbilete"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Brukarverkty"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
#, fuzzy
msgid "Edit profile settings"
msgstr "Profilinnstillingar"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr ""
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Send ei direktemelding til denne brukaren"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Melding"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr ""
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
#, fuzzy
msgid "User role"
msgstr "Brukarprofil"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
#, fuzzy
msgctxt "role"
msgid "Administrator"
msgstr "Administrator"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr ""
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Ikkje logga inn"
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "eit par sekund sidan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "omtrent eitt minutt sidan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8858,12 +9783,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "omtrent ein time sidan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8871,12 +9796,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "omtrent ein dag sidan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8884,12 +9809,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "omtrent ein månad sidan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8897,18 +9822,13 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "omtrent eitt år sidan"
-#: lib/webcolor.php:80
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "Heimesida er ikkje ei gyldig internettadresse."
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "Heimesida er ikkje ei gyldig internettadresse."
@@ -8929,32 +9849,18 @@ msgstr[0] "Melding for lang - maksimum 140 teikn, du skreiv %d"
msgstr[1] "Melding for lang - maksimum 140 teikn, du skreiv %d"
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Ugyldig storleik."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Ingen vald profil."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po
index 1990b8092f..d69609d4f4 100644
--- a/locale/pl/LC_MESSAGES/statusnet.po
+++ b/locale/pl/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Polish (Polski)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: McDutchie
# Author: Raven
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:09+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:28+0000\n"
"Last-Translator: Piotr Drąg \n"
"Language-Team: Polish \n"
"MIME-Version: 1.0\n"
@@ -20,11 +20,11 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && "
"(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pl\n"
"X-Message-Group: #out-statusnet-core\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -79,8 +79,9 @@ msgid "Save access settings"
msgstr "Zapisz ustawienia dostępu"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -90,13 +91,13 @@ msgstr "Zapisz ustawienia dostępu"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Zapisz"
@@ -104,7 +105,7 @@ msgstr "Zapisz"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Nie ma takiej strony."
@@ -114,6 +115,8 @@ msgstr "Nie ma takiej strony."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -129,13 +132,23 @@ msgstr "Nie ma takiej strony."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -143,15 +156,15 @@ msgstr "Nie ma takiej strony."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Brak takiego użytkownika."
@@ -165,9 +178,10 @@ msgstr "%1$s i przyjaciele, strona %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "Użytkownik %s i przyjaciele"
@@ -282,7 +296,7 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s."
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -315,7 +329,21 @@ msgstr ""
"Należy podać parametr o nazwie \"device\" z jedną z wartości: sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Nie można zaktualizować użytkownika."
@@ -325,18 +353,23 @@ msgstr "Nie można zaktualizować użytkownika."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Użytkownik nie posiada profilu."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Nie można zapisać profilu."
@@ -346,8 +379,8 @@ msgstr "Nie można zapisać profilu."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -370,13 +403,14 @@ msgstr[2] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Nie można zapisać ustawień wyglądu."
@@ -384,48 +418,59 @@ msgstr "Nie można zapisać ustawień wyglądu."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Nie można zaktualizować wyglądu."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
-msgstr "Główna"
+msgstr "Główny"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Oś czasu użytkownika %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Subskrypcje użytkownika %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Ulubione"
+msgstr "%s ulubionych"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "Członkowie grupy %s"
+msgstr "%s członków"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Nie można zablokować siebie."
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Zablokowanie użytkownika nie powiodło się."
@@ -482,7 +527,8 @@ msgstr "Nie odnaleziono odbiorcy."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są "
"twoimi przyjaciółmi."
@@ -507,8 +553,9 @@ msgid "This status is already a favorite."
msgstr "Ten stan jest już ulubiony."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Nie można utworzyć ulubionego wpisu."
@@ -518,7 +565,8 @@ msgid "That status is not a favorite."
msgstr "Ten stan nie jest ulubiony."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Nie można usunąć ulubionego wpisu."
@@ -564,9 +612,9 @@ msgstr "Nie można odnaleźć użytkownika docelowego."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Pseudonim jest już używany. Spróbuj innego."
@@ -574,21 +622,22 @@ msgstr "Pseudonim jest już używany. Spróbuj innego."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "To nie jest prawidłowy pseudonim."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Strona domowa nie jest prawidłowym adresem URL."
@@ -596,23 +645,24 @@ msgstr "Strona domowa nie jest prawidłowym adresem URL."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -624,9 +674,9 @@ msgstr[2] "Opis jest za długi (maksymalnie %d znaków)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Położenie jest za długie (maksymalnie 255 znaków)."
@@ -636,8 +686,8 @@ msgstr "Położenie jest za długie (maksymalnie 255 znaków)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -655,18 +705,16 @@ msgstr "Nieprawidłowy alias: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Alias \"%s\" jest już używany. Spróbuj innego."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Alias nie może być taki sam jak pseudonim."
@@ -677,28 +725,32 @@ msgstr "Alias nie może być taki sam jak pseudonim."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Nie odnaleziono grupy."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Jesteś już członkiem tej grupy."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Zostałeś zablokowany w tej grupie przez administratora."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Nie można dołączyć użytkownika %1$s do grupy %2$s."
@@ -710,9 +762,11 @@ msgstr "Nie jesteś członkiem tej grupy."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -749,7 +803,7 @@ msgid "Upload failed."
msgstr "Wysłanie nie powiodło się."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Nieprawidłowy token lub element sprawdzający żądania."
@@ -769,20 +823,25 @@ msgid "Request token already authorized."
msgstr "Token żądania został już upoważniony."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie."
@@ -799,18 +858,22 @@ msgstr "Błąd bazy danych podczas wprowadzania oauth_token_association."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Nieoczekiwane wysłanie formularza."
@@ -860,29 +923,31 @@ msgstr "Konto"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Pseudonim"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Hasło"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -956,6 +1021,7 @@ msgstr "Nie można usuwać stanów innych użytkowników."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -975,38 +1041,50 @@ msgstr "Nie można powtórzyć własnego wpisu."
msgid "Already repeated that notice."
msgstr "Już powtórzono ten wpis."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "Metoda HTTP nie jest obsługiwana."
-#: actions/apistatusesshow.php:141
-#, php-format
-msgid "Unsupported format: %s"
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
+#, fuzzy, php-format
+msgid "Unsupported format: %s."
msgstr "Nieobsługiwany format: %s"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Usunięto stan."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Nie odnaleziono stanów z tym identyfikatorem."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Można usunąć tylko używając formatu Atom."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "Nie można usunąć tego wpisu."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "Usunięto wpis %d"
@@ -1068,7 +1146,7 @@ msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Nie można utworzyć kanału dla grupy - %s"
@@ -1089,13 +1167,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Publiczna oś czasu użytkownika %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "Użytkownik %s aktualizuje od każdego."
@@ -1139,211 +1218,257 @@ msgstr "Tylko użytkownik może dodawać do swojej osi czasu."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
msgstr "Akceptowanie tylko AtomPub dla kanałów Atom."
-#: actions/apitimelineuser.php:310
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr "Wpis Atom musi być wpisem Atom."
+msgstr "Wpis Atom nie może być pusty."
-#: actions/apitimelineuser.php:315
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr "Wpis Atom musi być wpisem Atom."
+msgstr "Wpis Atom musi być poprawnie sformatowanym kodem XML."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr "Wpis Atom musi być wpisem Atom."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
-#, fuzzy
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr "Można obsługiwać tylko działania wpisów."
+msgstr "Można obsługiwać tylko działania POST."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
-#, fuzzy, php-format
+#: actions/apitimelineuser.php:345
+#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr "Nie można obsłużyć typu obiektu działania \"%s\""
+msgstr "Nie można obsłużyć typu obiektu działania \"%s\"."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Przeszukaj zawartość wpisów"
+msgstr "Brak zawartości dla wpisu %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Wpis z adresem URI \"%s\" już istnieje."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr "Wpis AtomPub z nieznanym adresem URI %s uwagi"
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Metoda API jest w trakcie tworzenia."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Nie odnaleziono strony."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Nie ma takiego profilu."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Nie można wprowadzić nowej subskrypcji."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-#, fuzzy
-msgid "Can only handle Favorite activities."
-msgstr "Można obsługiwać tylko działania wpisów."
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Można obsługiwać tylko działania wpisów."
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Nieznane"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Dodaj do ulubionych"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "Nie ma takiego profilu."
-#: actions/atompubmembershipfeed.php:144
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
#, fuzzy, php-format
-msgid "%s group memberships"
-msgstr "Członkowie grupy %s"
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Aktualizacje z %1$s i przyjaciół na %2$s."
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "Nie można dodać subskrypcji innej osoby."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "Można obsługiwać tylko działania ulubionych."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Można tylko dodawać wpisy do ulubionych."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Nieznany wpis."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Jest już ulubiony."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
+#: actions/atompubmembershipfeed.php:144
+#, php-format
+msgid "%s group memberships"
+msgstr "%s członków grupy"
+
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Grupy %s są członkiem"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "Nie można dodać członkostwa innej osoby."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-#, fuzzy
-msgid "Can only handle Join activities."
-msgstr "Można obsługiwać tylko działania wpisów."
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr "Można obsługiwać tylko działania dołączania."
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Nieznane"
+msgstr "Nieznana grupa."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Wszyscy członkowie"
+msgstr "Jest już członkiem."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Zablokowane przez administratora."
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "Nie ma takiego pliku."
+msgstr "Nie ma takiego ulubionego wpisu."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "Nie można usunąć ulubionego wpisu."
+msgid "Cannot delete someone else's favorite."
+msgstr "Nie można usunąć ulubionego wpisu innej osoby."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Nie ma takiej grupy."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "Wszyscy członkowie"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Metoda HTTP nie jest obsługiwana."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "Nie jest członkiem."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+msgid "Cannot delete someone else's membership."
+msgstr "Nie można usunąć członkostwa innej osoby."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Nie ma takiego profilu."
+#, php-format
+msgid "No such profile id: %d."
+msgstr "Nie ma takiego identyfikatora profilu: %d."
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Nie jesteś subskrybowany do tego profilu."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Profil %1$d nie jest subskrybowany do profilu %2$d."
-#: actions/atompubshowsubscription.php:154
-#, fuzzy
-msgid "Can't delete someone else's subscription"
-msgstr "Nie można usunąć autosubskrypcji."
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr "Nie można usunąć subskrypcji innej osoby."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Osoby subskrybowane do %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
-#, fuzzy
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
-msgstr "Można obsługiwać tylko działania wpisów."
+msgstr "Można obsługiwać tylko działania obserwowania."
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Można obserwować tylko osoby."
-#: actions/atompubsubscriptionfeed.php:262
-#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Nieznany typ pliku"
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "Nieznany profil %s."
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "%s jest już subskrybowane."
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1353,11 +1478,15 @@ msgstr "Nie ma takiego załącznika."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Brak pseudonimu."
@@ -1374,7 +1503,7 @@ msgstr "Nieprawidłowy rozmiar."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Awatar"
@@ -1387,41 +1516,51 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Można wysłać osobisty awatar. Maksymalny rozmiar pliku to %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Użytkownik bez odpowiadającego profilu."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Ustawienia awatara"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Oryginał"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Podgląd"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Usuń"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Wyślij"
@@ -1437,31 +1576,78 @@ msgstr "Przytnij"
msgid "No file uploaded."
msgstr "Nie wysłano pliku."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Wybierz kwadratowy obszar obrazu do awatara"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Utracono dane pliku."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Zaktualizowano awatar."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Zaktualizowanie awatara nie powiodło się."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Usunięto awatar."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Wykonaj kopię zapasową konta"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr ""
+"Tylko zalogowani użytkownicy mogą wykonywać kopie zapasowe swoich kont."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "Użytkownik nie może wykonać kopii zapasowej konta."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+"Można wykonać kopię zapasową danych konta w formacie Strumieni działalności. Jest to funkcja "
+"eksperymentalna i nie zapewnia kompletnej kopii zapasowej; prywatne "
+"informacje o koncie, takie jak adresy e-mail i komunikatora nie są "
+"zachowywane w kopii zapasowej. Ponadto nie są zachowywane wysłane pliki i "
+"bezpośrednie wiadomości."
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Kopia zapasowa"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+#, fuzzy
+msgid "Backup your account."
+msgstr "Wykonuje kopię zapasową konta"
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1469,7 +1655,8 @@ msgstr "Użytkownik jest już zablokowany."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Zablokuj użytkownika"
@@ -1492,15 +1679,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Nie"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Nie blokuj tego użytkownika"
#. TRANS: Button label on the user block form.
@@ -1511,15 +1698,15 @@ msgstr "Nie blokuj tego użytkownika"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Tak"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Zablokuj tego użytkownika"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1527,31 +1714,6 @@ msgstr "Zablokuj tego użytkownika"
msgid "Failed to save block information."
msgstr "Zapisanie informacji o blokadzie nie powiodło się."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Nie ma takiej grupy."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1621,23 +1783,6 @@ msgstr "Nierozpoznany typ adresu %s."
msgid "That address has already been confirmed."
msgstr "Ten adres został już potwierdzony."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Nie można zaktualizować użytkownika."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1662,11 +1807,83 @@ msgid "Conversation"
msgstr "Rozmowa"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Wpisy"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr "Tylko zalogowani użytkownicy mogą usuwać swoje konta."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "Użytkownik nie może usunąć konta."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Jestem pewny."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "Należy wpisać dokładnie \"%s\" w polu obok."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "Usunięto konto."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Usuń konto"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"Spowoduje to trwałe usunięcie danych konta z tego serwera."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+"Zdecydowanie zaleca się wykonanie kopii zapasowej danych "
+"przed usunięciem."
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Potwierdź"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Proszę wpisać \"%s\", aby potwierdzić chęć usunięcia konta."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Trwale usuwa konto"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1680,14 +1897,14 @@ msgstr "Nie odnaleziono aplikacji."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Nie jesteś właścicielem tej aplikacji."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Wystąpił problem z tokenem sesji."
@@ -1709,12 +1926,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Nie usuwaj tej aplikacji"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Usuń tę aplikację"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1723,8 +1942,10 @@ msgid "You must be logged in to delete a group."
msgstr "Musisz być zalogowany, aby usunąć grupę."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Brak pseudonimu lub identyfikatora."
@@ -1766,24 +1987,32 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+#, fuzzy
+msgid "Do not delete this group."
msgstr "Nie usuwaj tej grupy"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+#, fuzzy
+msgid "Delete this group."
msgstr "Usuń tę grupę"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Niezalogowany."
@@ -1810,27 +2039,39 @@ msgstr "Jesteś pewien, że chcesz usunąć ten wpis?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Nie usuwaj tego wpisu"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Usuń ten wpis"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Nie można usuwać użytkowników."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Nie można usuwać lokalnych użytkowników."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Usuń użytkownika"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Usuń użytkownika"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1838,78 +2079,102 @@ msgstr ""
"Na pewno usunąć tego użytkownika? Wyczyści to wszystkie dane o użytkowniku z "
"bazy danych, bez utworzenia kopii zapasowej."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Nie usuwaj tego użytkownika"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Usuń tego użytkownika"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Wygląd"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Ustawienia wyglądu tej witryny StatusNet"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Nieprawidłowy adres URL logo."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "Nieprawidłowy adres URL logo SSL."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Motyw nie jest dostępny: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Zmień logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logo witryny"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "Logo SSL"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Zmień motyw"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Motyw witryny"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Motyw witryny."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Własny motyw"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Można wysłać własny motyw witryny StatusNet jako archiwum zip."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Zmień obraz tła"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Tło"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1917,99 +2182,107 @@ msgid ""
msgstr "Można wysłać obraz tła dla witryny. Maksymalny rozmiar pliku to %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Włączone"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Wyłączone"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Włącz lub wyłącz obraz tła."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Kafelkowy obraz tła"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
msgstr "Zmień kolory"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Treść"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Panel boczny"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Tekst"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Odnośniki"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Zaawansowane"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Własny plik CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
-msgstr "Użycie domyślnych"
+msgstr "Użyj domyślne"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Przywróć domyślny wygląd"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Przywróć domyślne ustawienia"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Zapisz"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Zapisz wygląd"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Ten wpis nie jest ulubiony."
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Dodaj do ulubionych"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
-msgstr "Nie ma takiego dokumentu \\\"%s\\\""
+msgid "No such document \"%s\"."
+msgstr "Nie ma takiego dokumentu \\\"%s\\\"."
#. TRANS: Title for "Edit application" form.
#. TRANS: Form legend.
@@ -2023,7 +2296,7 @@ msgid "You must be logged in to edit an application."
msgstr "Musisz być zalogowany, aby zmodyfikować aplikację."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Nie ma takiej aplikacji."
@@ -2033,61 +2306,71 @@ msgid "Use this form to edit your application."
msgstr "Użyj tego formularza, aby zmodyfikować aplikację."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Nazwa jest wymagana."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "Nazwa jest za długa (maksymalnie 255 znaków)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Nazwa jest już używana. Spróbuj innej."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Opis jest wymagany."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Źródłowy adres URL jest za długi."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "Źródłowy adres URL jest nieprawidłowy."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organizacja jest wymagana."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "Organizacja jest za długa (maksymalnie 255 znaków)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Strona domowa organizacji jest wymagana."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Adres zwrotny jest za długi."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "Adres zwrotny URL jest nieprawidłowy."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Nie można zaktualizować aplikacji."
@@ -2098,14 +2381,17 @@ msgid "Edit %s group"
msgstr "Zmodyfikuj grupę %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Musisz być zalogowany, aby utworzyć grupę."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Musisz być administratorem, aby zmodyfikować grupę."
@@ -2116,63 +2402,65 @@ msgstr "Użyj tego formularza, aby zmodyfikować grupę."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Nieprawidłowy alias: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Nie można zaktualizować grupy."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Nie można utworzyć aliasów."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Zapisano opcje."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Ustawienia adresu e-mail"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Zarządzanie, jak otrzymywać wiadomości e-mail od %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Adres e-mail"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Obecnie potwierdzone adresy e-mail."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Usuń"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2186,132 +2474,135 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Adres e-mail, taki jak \"NazwaUżytkownika@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Dodaj"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Wiadomości przychodzące"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Chcę wysyłać wpisy przez wiadomości e-mail."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Wyślij wiadomość e-mail na ten adres, aby wysyłać nowe wpisy."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Używaj nowego adresu e-mail do wysyłania; anuluj poprzedni."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
+"Aby wysyłać wpisy przez e-mail, należy utworzyć unikalny adres e-mail na tym "
+"serwerze:"
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Nowy"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Preferencje e-mail"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Wyślij wpisy nowych subskrypcji przez e-mail."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Wyślij wiadomość e-mail, kiedy ktoś doda mój wpis jako ulubiony."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Wyślij wiadomość e-mail, kiedy ktoś wyśle prywatną wiadomość."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Wyślij wiadomość e-mail, kiedy ktoś wyśle odpowiedź \"@\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Pozwól przyjaciołom na szturchanie mnie i wyślij mi wiadomość e-mail."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Opublikuj MicroID adresu e-mail."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Zapisano preferencje e-mail."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Brak adresu e-mail."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Nie można znormalizować tego adresu e-mail"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "To nie jest prawidłowy adres e-mail."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Ten adres e-mail jest już twój."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Ten adres e-mail należy już do innego użytkownika."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
msgstr "Nie można wprowadzić kodu potwierdzającego."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2321,89 +2612,103 @@ msgstr ""
"i instrukcje dotyczące jego użycia."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Brak oczekujących potwierdzeń do anulowania."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "To jest błędny adres e-mail."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
msgstr "Nie można usunąć potwierdzenia adresu e-mail."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Anulowano potwierdzenie e-mail."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "To nie jest twój adres e-mail."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Adres e-mail został usunięty."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Brak przychodzącego adresu e-mail."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr "Nie można zaktualizować wpisu użytkownika."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Usunięto przychodzący adres e-mail."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Dodano nowy przychodzący adres e-mail."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Ten wpis jest już ulubiony."
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Usuń wpis z ulubionych"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Popularne wpisy"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Popularne wpisy, strona %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Najpopularniejsze wpisy na witrynie w te chwili."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Ulubione wpisy są widoczne na tej stronie, ale nikt nie oznaczył jeszcze "
"żadnego jako ulubiony."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2412,7 +2717,9 @@ msgstr ""
"Bądź pierwszym, który doda wpis do ulubionych naciskając przycisk ulubionego "
"obok wpisu, który ci się podoba."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2421,142 +2728,186 @@ msgstr ""
"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz "
"pierwszym, który doda wpis do ulubionych."
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Ulubione wpisy użytkownika %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Aktualizacje ulubione przez użytkownika %1$s na %2$s."
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Znani użytkownicy"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Znani użytkownicy, strona %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Wybór znanych użytkowników w serwisie %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Brak identyfikatora wpisu."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Brak wpisu."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Brak załączników."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Nie wysłano załączników."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Nieoczekiwana odpowiedź."
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Nasłuchiwany użytkownik nie istnieje."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Można używać lokalnej subskrypcji."
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Ten użytkownik zablokował cię z subskrypcji."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Brak upoważnienia."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Nie można przekonwertować tokenów żądań na tokeny dostępu."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Zdalna usługa używa nieznanej wersji protokołu OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Błąd podczas aktualizowania zdalnego profilu."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Nie ma takiego pliku."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Nie można odczytać pliku."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Nieprawidłowa rola."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Ta rola jest zastrzeżona i nie może zostać ustawiona."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Nie można udzielić rol użytkownikom na tej witrynie."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Użytkownik ma już tę rolę."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Nie podano profilu."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Brak profilu o tym identyfikatorze."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Nie podano grupy."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Tylko administrator może blokować członków grupy."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Użytkownik został już zablokował w grupie."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Użytkownik nie jest członkiem grupy."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Zablokuj użytkownika w grupie"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2568,152 +2919,180 @@ msgstr ""
"grupy w przyszłości."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Nie blokuj tego użytkownika w tej grupie"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Zablokuj tego użytkownika w tej grupie"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Błąd bazy danych podczas blokowania użytkownika w grupie."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Brak identyfikatora."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Musisz być zalogowany, aby zmodyfikować grupę."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Wygląd grupy"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety kolorów."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Nie można zaktualizować wyglądu."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Nie można zapisać ustawień wyglądu."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Zapisano preferencje wyglądu."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo grupy"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Wyślij"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Przytnij"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Wybierz kwadratowy obszar obrazu, który będzie logo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Zaktualizowano logo."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Zaktualizowanie logo nie powiodło się."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Członkowie grupy %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Członkowie grupy %1$s, strona %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Lista użytkowników znajdujących się w tej grupie."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Administrator"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Zablokuj"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Zablokuj tego użytkownika"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Uczyń użytkownika administratorem grupy"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Uczyń administratorem"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Nadaje temu użytkownikowi uprawnienia administratora"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Aktualizacje od członków %1$s na %2$s."
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grupy"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Grupy, strona %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Grupy %%%%site.name%%%% umożliwiają odnalezienie i rozmawianie z osobami o "
"podobnych zainteresowaniach. Po dołączeniu do grupy można wysyłać wiadomości "
@@ -2721,11 +3100,13 @@ msgstr ""
"która cię interesuje? Spróbuj ją [znaleźć](%%%%action.groupsearch%%%%) lub "
"[założyć własną.](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Utwórz nową grupę"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2734,25 +3115,33 @@ msgstr ""
"Wyszukaj grupy na %%site.name%% według ich nazwy, położenia lub opisu. "
"Oddziel terminy spacjami; muszą mieć trzy znaki lub więcej."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Wyszukaj grupę"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Brak wyników."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Jeśli nie można odnaleźć grupy, której szukasz, można samemu [ją utworzyć](%%"
"action.newgroup%%)."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2762,137 +3151,147 @@ msgstr ""
"grupę](%%action.newgroup%%)."
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Tylko administrator może odblokowywać członków grupy."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Użytkownik nie został zablokowany w grupie."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Błąd podczas usuwania blokady."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Ustawienia komunikatora"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. "
"Skonfiguruj adres i ustawienia poniżej."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "Komunikator nie jest dostępny."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Adres komunikatora"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Obecnie potwierdzone adresy Jabber/GTalk."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Oczekiwanie na potwierdzenie tego adresu. Sprawdź swoje konto Jabber/GTalk, "
"czy otrzymałeś wiadomość z dalszymi instrukcjami (dodałeś %s do listy "
"znajomych?)."
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Adres Jabber lub GTalk, taki jak \"NazwaUżytkownika@example.org\". Najpierw "
"upewnij się, że dodałeś %s do listy znajomych w komunikatorze lub na GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Preferencje komunikatora"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Wyślij mi wpisy przez Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Wyślij wpis, kiedy zmieni się mój stan na Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Wyślij mi odpowiedzi przez Jabber/GTalk od osób, których nie subskrybuję."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Opublikuj MicroID adresu Jabber/GTalk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Zapisano preferencje."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Brak identyfikatora Jabbera."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Nie można znormalizować tego identyfikatora Jabbera"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "To nie jest prawidłowy identyfikator Jabbera"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Ten identyfikator Jabbera jest już twój."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Identyfikator Jabbera należy już do innego użytkownika."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2901,55 +3300,60 @@ msgstr ""
"Kod potwierdzający został wysłany na dodany adres komunikatora. Należy "
"zaakceptować otrzymywanie wiadomości od %s."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "To jest błędny adres komunikatora."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
msgstr "Nie można usunąć potwierdzenia komunikatora."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Anulowano potwierdzenie komunikatora."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "To nie jest twój identyfikator Jabbera."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Adres komunikatora został usunięty."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Odebrane wiadomości użytkownika %1$s - strona %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Odebrane wiadomości użytkownika %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"To jest skrzynka odbiorcza, która wyświetla przychodzące wiadomości prywatne."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Zaproszenia zostały wyłączone."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2957,18 +3361,18 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Nieprawidłowy adres e-mail: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Wysłano zaproszenia"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Zaproś nowych użytkowników"
@@ -2976,7 +3380,7 @@ msgstr "Zaproś nowych użytkowników"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Jesteś już subskrybowany do tego użytkownika:"
@@ -2985,7 +3389,7 @@ msgstr[2] "Jesteś już subskrybowany do tych użytkowników:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2994,7 +3398,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3009,7 +3413,7 @@ msgstr[2] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Wysłano zaproszenie do następującej osoby:"
@@ -3018,7 +3422,7 @@ msgstr[2] "Wysłano zaproszenia do następujących osób:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3027,7 +3431,7 @@ msgstr ""
"się na witrynie. Dziękujemy za pomoc w zwiększaniu społeczności."
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3035,27 +3439,28 @@ msgstr ""
"usługi."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Adresy e-mail"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Adresy przyjaciół, których zapraszasz (jeden na wiersz)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Osobista wiadomość"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Wyślij"
@@ -3063,7 +3468,7 @@ msgstr "Wyślij"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s zapraszają cię, abyś dołączył do nich w %2$s"
@@ -3073,7 +3478,7 @@ msgstr "%1$s zapraszają cię, abyś dołączył do nich w %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3130,44 +3535,51 @@ msgstr ""
"\n"
"Z poważaniem, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Musisz być zalogowany, aby dołączyć do grupy."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "Użytkownik %1$s dołączył do grupy %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Musisz być zalogowany, aby opuścić grupę."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Nie jesteś członkiem tej grupy."
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "Użytkownik %1$s opuścił grupę %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Licencja"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Licencja dla tej witryny StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Nieprawidłowy wybór licencji."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3175,125 +3587,134 @@ msgstr ""
"Należy podać właściciela treści podczas używania licencji \"Wszystkie prawa "
"zastrzeżone\"."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Nieprawidłowy tytuł licencji. Maksymalna długość to 255 znaków."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Nieprawidłowy adres URL licencji."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Nieprawidłowy adres URL obrazu licencji."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "Adres URL licencji musi być pusty lub być prawidłowym adresem URL."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "Obraz licencji musi być pusty lub być prawidłowym adresem URL."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Wybór licencji"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Prywatna"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Wszystkie prawa zastrzeżone"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Typ"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Wybierz licencję"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Szczegóły licencji"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Właściciel"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Nazwa właściciela treści witryny (jeśli dotyczy)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Tytuł licencji"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Tytuł licencji."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "Adres URL licencji"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "Adres URL dodatkowych informacji o licencji."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "Adres URL obrazu licencji"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "Adres URL obrazu do wyświetlenia z licencją."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Zapisz"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Zapisz ustawienia licencji"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Jesteś już zalogowany."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Niepoprawna nazwa użytkownika lub hasło."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Błąd podczas ustawiania użytkownika. Prawdopodobnie brak upoważnienia."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Zaloguj się"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Zaloguj się na witrynie"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Zapamiętaj mnie"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Automatyczne logowanie. Nie należy używać na komputerach używanych przez "
"wiele osób."
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Zgubione lub zapomniane hasło?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3301,11 +3722,11 @@ msgstr ""
"Z powodów bezpieczeństwa ponownie podaj nazwę użytkownika i hasło przed "
"zmienianiem ustawień."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Logowanie za pomocą nazwy użytkownika i hasła."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3342,19 +3763,22 @@ msgid "New application"
msgstr "Nowa aplikacja"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Musisz być zalogowany, aby zarejestrować aplikację."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Użyj tego formularza, aby zarejestrować aplikację."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Źródłowy adres URL jest wymagany."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Nie można utworzyć aplikacji."
@@ -3363,11 +3787,21 @@ msgstr "Nie można utworzyć aplikacji."
msgid "New group"
msgstr "Nowa grupa"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr "Brak uprawnienia do tworzenia grup w tej witrynie."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Użyj tego formularza, aby utworzyć nową grupę."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr "Alias nie może być taki sam jak pseudonim."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nowa wiadomość"
@@ -3417,7 +3851,9 @@ msgstr "Nowy wpis"
msgid "Notice posted"
msgstr "Wysłano wpis"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3426,16 +3862,21 @@ msgstr ""
"Wyszukaj wpisy na %%site.name%% według ich treści. Oddziel wyszukiwane "
"terminy spacjami. Terminy muszą mieć trzy znaki lub więcej."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Wyszukiwanie tekstu"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Wyniki wyszukiwania dla \"%1$s\" na %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3444,7 +3885,9 @@ msgstr ""
"Zostań pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?"
"status_textarea=%s)."
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3454,14 +3897,17 @@ msgstr ""
"pierwszym, który [wyśle coś na ten temat](%%%%action.newnotice%%%%?"
"status_textarea=%s)."
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Aktualizacje z \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Aktualizacje pasujące do wyszukiwanego terminu \"%1$s\" na %2$s."
#: actions/nudge.php:85
@@ -3502,30 +3948,30 @@ msgid "You have not registered any applications yet."
msgstr "Nie zarejestrowano jeszcze żadnych aplikacji."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Połączone aplikacje"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "Istnieją następujące połączenia dla konta."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Nie jesteś użytkownikiem tej aplikacji."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Nie można unieważnić dostępu dla aplikacji: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3535,14 +3981,14 @@ msgstr ""
"$s."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Nie upoważniono żadnych aplikacji do używania konta."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3551,6 +3997,16 @@ msgstr ""
"Jesteś programistą? [Zarejestruj aplikację kliencką OAuth](%s) do użycia z "
"tą witryną StatusNet."
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Nie odnaleziono strony."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Nie odnaleziono wpisu nadrzędnego."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Wpis nie posiada profilu."
@@ -3560,6 +4016,16 @@ msgstr "Wpis nie posiada profilu."
msgid "%1$s's status on %2$s"
msgstr "Stan użytkownika %1$s na %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Nie odnaleziono odbiorcy."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3573,16 +4039,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "To nie jest obsługiwany format danych."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Wyszukiwanie osób"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Wyszukiwanie wpisów"
@@ -3596,68 +4063,79 @@ msgid "Manage various other options."
msgstr "Zarządzaj różnymi innymi opcjami."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (wolna usługa)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Skracanie adresów URL za pomocą"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Używana automatyczna usługa skracania."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Wyświetl ustawienia wyglądu profilu"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Wyświetl lub ukryj ustawienia wyglądu profilu."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Adres URL usługi skracania jest za długi (maksymalnie 50 znaków)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Nie podano identyfikatora użytkownika."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Nie podano tokenu logowania."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Nie zażądano tokenu logowania."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Podano nieprawidłowy token logowania."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Token logowania wygasł."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Wysłane wiadomości użytkownika %1$s - strona %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Wysłane wiadomości użytkownika %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "To są wiadomości wysłane, czyli prywatne wiadomości, które wysłałeś."
@@ -3669,7 +4147,8 @@ msgstr "Zmień hasło"
msgid "Change your password."
msgstr "Zmień hasło."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Zmiana hasła"
@@ -3677,48 +4156,47 @@ msgstr "Zmiana hasła"
msgid "Old password"
msgstr "Poprzednie hasło"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nowe hasło"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
-msgstr "6 lub więcej znaków"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
+msgstr "6 lub więcej znaków."
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Potwierdź"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Takie samo jak powyższe hasło"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
+msgstr "Takie samo jak powyższe hasło."
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Zmień"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Hasło musi mieć sześć lub więcej znaków."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Hasła nie pasują do siebie."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Niepoprawne poprzednie hasło"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
msgstr "Nie można zapisać nowego hasła."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Zapisano hasło."
@@ -3926,7 +4404,7 @@ msgstr "Katalog, w którym położone są tła."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Załączniki"
@@ -3994,7 +4472,9 @@ msgstr "Serwer do przekierowywania żądań SSL."
msgid "Save paths"
msgstr "Ścieżki zapisu"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4004,7 +4484,8 @@ msgstr ""
"zainteresowań. Oddziel wyszukiwane terminy spacjami. Terminy muszą mieć trzy "
"znaki lub więcej."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Wyszukiwanie osób"
@@ -4028,12 +4509,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "Licencja wpisu \"%1$s\" nie jest zgodna z licencją witryny \"%2$s\"."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Ustawienia profilu"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4041,39 +4522,40 @@ msgstr ""
"lepiej cię poznać."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Informacje o profilu"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Imię i nazwisko"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Strona domowa"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "Adres URL strony domowej, bloga lub profilu na innej witrynie."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4082,81 +4564,88 @@ msgstr[1] "Opisz siebie i swoje zainteresowania w %d znakach"
msgstr[2] "Opisz siebie i swoje zainteresowania w %d znakach"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Opisz się i swoje zainteresowania"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "O mnie"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Położenie"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Podziel się swoim obecnym położeniem podczas wysyłania wpisów"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Znaczniki"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub "
"spacjami"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Język"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Preferowany język"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Strefa czasowa"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "W jakiej strefie czasowej zwykle się znajdujesz?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Automatycznie subskrybuj każdego, kto mnie subskrybuje (najlepsze dla botów)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4165,49 +4654,50 @@ msgstr[1] "Wpis \"O mnie\" jest za długi (maksymalnie %d znaki)."
msgstr[2] "Wpis \"O mnie\" jest za długi (maksymalnie %d znaków)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Nie wybrano strefy czasowej."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "Język jest za długi (maksymalnie 50 znaków)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Nieprawidłowy znacznik: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
msgstr "Nie można zapisać preferencji położenia."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Nie można zapisać profilu."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Nie można zapisać znaczników."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Zapisano ustawienia."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr "Przywróć konto"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4282,6 +4772,12 @@ msgstr ""
"To jest %%site.name%%, usługa [mikroblogowania](http://pl.wikipedia.org/wiki/"
"Mikroblog) oparta na wolnym narzędziu [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "Użytkownik %s aktualizuje od każdego."
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4327,35 +4823,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Chmura znaczników"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Jesteś już zalogowany."
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Nie ma takiego kodu przywracania."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "To nie jest kod przywracania."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Kod przywracania dla nieznanego użytkownika."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Błąd kodu potwierdzającego."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Kod potwierdzający jest za stary. Rozpocznij ponownie."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Nie można zaktualizować użytkownika z potwierdzonym adresem e-mail."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4363,67 +4867,97 @@ msgstr ""
"Jeśli zapomniano lub zgubiono swoje hasło, można otrzymać nowe, wysłane na "
"adres e-mail przechowywany w koncie."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Zostałeś zidentyfikowany. Podaj poniżej nowe hasło. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Zostałeś zidentyfikowany. Podaj poniżej nowe hasło."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Przywrócenie hasła"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Pseudonim lub adres e-mail"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Pseudonim na tym serwerze lub zarejestrowany adres e-mail."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Przywróć"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Przywróć"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Przywróć hasło"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Przywróć hasło"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Zażądano przywracania hasła"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Zapisano hasło."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Nieznane działanie"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
msgstr "6 lub więcej znaków, i nie zapomnij go."
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Przywróć"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Podaj pseudonim lub adres e-mail."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Brak użytkownika z tym adresem e-mail lub nazwą użytkownika."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Brak zarejestrowanych adresów e-mail dla tego użytkownika."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Błąd podczas zapisywania potwierdzenia adresu."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4431,121 +4965,118 @@ msgstr ""
"Instrukcje przywracania hasła zostały wysłane na adres e-mail zarejestrowany "
"z twoim kontem."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Nieoczekiwane przywrócenie hasła."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Hasło musi mieć sześć lub więcej znaków."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Hasło i potwierdzenie nie pasują do siebie."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Błąd podczas ustawiania użytkownika."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Pomyślnie zapisano nowe hasło. Jesteś teraz zalogowany."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Tylko zaproszone osoby mogą się rejestrować."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Nieprawidłowy kod zaproszenia."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Rejestracja powiodła się"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Zarejestruj się"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Rejestracja nie jest dozwolona."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr ""
"Nie można się zarejestrować, jeśli nie zgadzasz się z warunkami licencji."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Adres e-mail już istnieje."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Nieprawidłowa nazwa użytkownika lub hasło."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Za pomocą tego formularza można utworzyć nowe konto. Można wtedy wysyłać "
"wpisy i połączyć się z przyjaciółmi i kolegami. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 małe litery lub liczby, bez spacji i znaków przestankowych. Wymagane."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 lub więcej znaków. Wymagane."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Takie samo jak powyższe hasło. Wymagane."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-mail"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" imię i nazwisko"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "Adres URL strony domowej, bloga lub profilu na innej witrynie"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr "Rozumiem, że treść i dane %1$s są prywatne i poufne."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Moje teksty i pliki są objęte prawami autorskimi %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Moje teksty i pliki pozostają pod moimi prawami autorskimi."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Wszystkie prawa zastrzeżone."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4554,7 +5085,7 @@ msgstr ""
"Tekst i pliki są dostępne na warunkach licencji %s, poza tymi prywatnymi "
"danymi: hasło, adres e-mail, adres komunikatora i numer telefonu."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4587,7 +5118,7 @@ msgstr ""
"Dziękujemy za zarejestrowanie się i mamy nadzieję, że używanie tej usługi "
"sprawi ci przyjemność."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4595,7 +5126,7 @@ msgstr ""
"(Powinieneś właśnie otrzymać wiadomość e-mail, zawierającą instrukcje "
"potwierdzenia adresu e-mail)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4607,79 +5138,85 @@ msgstr ""
"witrynie mikroblogowania](%%doc.openmublog%%), podaj poniżej adres URL "
"profilu."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Subskrybuj zdalnie"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Subskrybuj zdalnego użytkownika"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Pseudonim użytkownika"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Pseudonim użytkownika którego chcesz obserwować"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Adres URL profilu"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Subskrybuj"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Nieprawidłowy adres URL profilu (błędny format)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Nieprawidłowy adres URL profilu (brak dokumentu YADIS lub określono "
"nieprawidłowe XRDS)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
msgstr "To jest profil lokalny. Zaloguj się, aby subskrybować."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
msgstr "Nie można uzyskać tokenu żądana."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Tylko zalogowani użytkownicy mogą powtarzać wpisy."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Nie podano wpisu."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
msgstr "Nie można powtórzyć własnego wpisu."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Już powtórzono ten wpis."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Powtórzono"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Powtórzono."
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Odpowiedzi na %s"
@@ -4731,11 +5268,102 @@ msgstr ""
"Można spróbować [szturchnąć użytkownika %1$s](../%2$s) lub [wysłać mu coś](%%"
"%%action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "odpowiedzi dla użytkownika %1$s na %2$s."
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr "Tylko zalogowani użytkownicy mogą przywracać swoje konta."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr "Użytkownik nie może przywrócić konta."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr "Nie wysłano pliku."
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Wysłany plik przekracza dyrektywę upload_max_filesize w php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Plik został tylko częściowo wysłany."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Brak katalogu tymczasowego."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Zapisanie pliku na dysku nie powiodło się."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Wysłanie pliku zostało zatrzymane przez rozszerzenie."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Błąd systemu podczas wysyłania pliku."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr "Nie jest kanałem Atom."
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+"Kanał został przywrócony. Starsze wpisy powinny teraz pojawić się w wynikach "
+"wyszukiwania i na stronie profilu."
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr "Kanał zostanie przywrócony. Proszę poczekać kilka minut na wyniki."
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+"Można wysłać kopię zapasową strumienia w formacie Strumieni działalności."
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "Wyślij plik"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Nie można unieważnić rol użytkowników na tej witrynie."
@@ -4744,7 +5372,7 @@ msgstr "Nie można unieważnić rol użytkowników na tej witrynie."
msgid "User doesn't have this role."
msgstr "Użytkownik nie ma tej roli."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4786,85 +5414,87 @@ msgstr "Włącza wyjście debugowania dla sesji."
msgid "Save site settings"
msgstr "Zapisz ustawienia witryny"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Musisz być zalogowany, aby wyświetlić aplikację."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Profil aplikacji"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Ikona"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nazwa"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organizacja"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Opis"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statystyki"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkowników"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Czynności aplikacji"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Przywrócenie klucza i sekretu"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Usuń"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Informacje o aplikacji"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Klucz klienta"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Sekret klienta"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "Adres URL tokenu żądania"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "Adres URL tokenu żądania"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Adres URL upoważnienia"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4872,35 +5502,42 @@ msgstr ""
"Uwaga: obsługiwane są podpisy HMAC-SHA1. Metoda podpisu w zwykłym tekście "
"nie jest obsługiwana."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Jesteś pewien, że chcesz przywrócić klucz i sekret klienta?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Ulubione wpisy użytkownika %1$s, strona %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Nie można odebrać ulubionych wpisów."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Kanał dla ulubionych wpisów użytkownika %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Kanał dla ulubionych wpisów użytkownika %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Kanał dla ulubionych wpisów użytkownika %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4909,7 +5546,9 @@ msgstr ""
"na wpisach, które chciałbyś dodać do zakładek na później lub rzucić na nie "
"trochę światła."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4918,7 +5557,10 @@ msgstr ""
"Użytkownik %s nie dodał jeszcze żadnych wpisów do ulubionych. Wyślij coś "
"interesującego, aby chcieli dodać to do swoich ulubionych. :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4929,7 +5571,8 @@ msgstr ""
"[zarejestrujesz konta](%%%%action.register%%%%) i wyślesz coś "
"interesującego, aby chcieli dodać to do swoich ulubionych. :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "To jest sposób na współdzielenie tego, co chcesz."
@@ -4947,81 +5590,88 @@ msgid "%1$s group, page %2$d"
msgstr "Grupa %1$s, strona %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Profil grupy"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "Adres URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Wpis"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Aliasy"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Działania grupy"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Kanał wpisów dla grupy %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Kanał wpisów dla grupy %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Kanał wpisów dla grupy %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF dla grupy %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Członkowie"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Brak)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Wszyscy członkowie"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Utworzono"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Członkowie"
@@ -5030,7 +5680,7 @@ msgstr "Członkowie"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5049,7 +5699,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5063,30 +5713,30 @@ msgstr ""
"krótkimi wiadomościami o swoim życiu i zainteresowaniach. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administratorzy"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Nie ma takiej wiadomości."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Tylko nadawca i odbiorca mogą przeczytać tę wiadomość."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Wiadomość do użytkownika %1$s na %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Wiadomość od użytkownika %1$s na %2$s"
@@ -5102,7 +5752,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s nadał etykietę %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5352,74 +6002,76 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Zapisz wpis witryny"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Ustawienia SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Można otrzymywać wiadomości SMS przez e-mail od %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "Wiadomości SMS nie są dostępne."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Adres SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Obecnie potwierdzone numery telefonów z włączoną usługą SMS."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Oczekiwanie na potwierdzenie tego numeru telefonu."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Kod potwierdzający"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Podaj kod, który otrzymałeś na telefonie."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Potwierdź"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Numer telefonu SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Numer telefonu, bez znaków przestankowych i spacji, z kodem państwa"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Preferencje SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5428,32 +6080,32 @@ msgstr ""
"swojego operatora."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Zapisano preferencje SMS."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Brak numeru telefonu."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Nie wybrano operatora."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Ten numer telefonu jest już twój."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Ten numer telefonu należy już do innego użytkownika."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5462,39 +6114,39 @@ msgstr ""
"czy otrzymałeś kod i instrukcje jak go użyć."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "To jest błędny numer potwierdzenia."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Anulowano potwierdzenie SMS."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "To nie jest twój numer telefonu."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Numer telefonu SMS został usunięty."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Operator komórkowy"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Wybierz operatora"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5505,8 +6157,9 @@ msgstr ""
"e-mail na %s (w języku angielskim), aby nam o tym powiedzieć."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Nie podano kodu"
#. TRANS: Menu item for site administration
@@ -5578,17 +6231,21 @@ msgstr "Nie jesteś subskrybowany do tego profilu."
msgid "Could not save subscription."
msgstr "Nie można zapisać subskrypcji."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Ta czynność przyjmuje tylko żądania POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
"Nie można subskrybować zdalnego profilu profilu OMB 0.1 za pomocą tej "
"czynności."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Subskrybowano"
@@ -5620,7 +6277,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Osoby obserwujące wpisy użytkownika %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5630,7 +6287,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "Użytkownik %s nie posiada subskrybentów. Chcesz być pierwszym?"
@@ -5640,7 +6297,7 @@ msgstr "Użytkownik %s nie posiada subskrybentów. Chcesz być pierwszym?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5673,7 +6330,7 @@ msgstr "Osoby, których wpisy obserwuje użytkownik %s."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5693,23 +6350,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "Użytkownik %s nie obserwuje nikogo."
-#: actions/subscriptions.php:178
-#, fuzzy, php-format
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
msgid "Subscription feed for %s (Atom)"
-msgstr "Kanał wpisów dla %s (Atom)"
+msgstr "Kanał subskrypcji dla %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5742,12 +6400,15 @@ msgstr "Brak parametru identyfikatora."
msgid "Tag %s"
msgstr "Znacznik %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Profil użytkownika"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Zdjęcie"
@@ -5763,6 +6424,11 @@ msgstr ""
"Znaczniki dla tego użytkownika (litery, liczby, -, . i _), oddzielone "
"przecinkami lub spacjami"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Nieprawidłowy znacznik: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5770,10 +6436,6 @@ msgstr ""
"Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy "
"subskrybują ciebie."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Nie można zapisać znaczników."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5783,6 +6445,7 @@ msgstr ""
msgid "No such tag."
msgstr "Nie ma takiego znacznika."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Ten użytkownik nie został zablokowany."
@@ -5803,7 +6466,7 @@ msgstr "Brak identyfikatora profilu w żądaniu."
msgid "Unsubscribed"
msgstr "Zrezygnowano z subskrypcji"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5835,13 +6498,12 @@ msgstr "Nieprawidłowy tekst powitania. Maksymalna długość to 255 znaków."
#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
-#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+#, fuzzy, php-format
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Nieprawidłowa domyślna subskrypcja: \"%1$s\" nie jest użytkownikiem."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5897,55 +6559,71 @@ msgstr "Czy zezwolić użytkownikom zapraszanie nowych użytkowników."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "Zapisz ustawienia użytkownika"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Upoważnij subskrypcję"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Sprawdź te szczegóły, aby upewnić się, czy na pewno chcesz subskrybować "
"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, "
"naciśnij \"Odrzuć\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licencja"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Zaakceptuj"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Subskrybuj tego użytkownika"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Odrzuć"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Odrzuć tę subskrypcję"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Brak żądania upoważnienia."
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Upoważniono subskrypcję"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5954,11 +6632,12 @@ msgstr ""
"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. "
"Sprawdź w instrukcjach witryny, jak upoważnić subskrypcję. Token subskrypcji:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Odrzucono subskrypcję"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5967,55 +6646,80 @@ msgstr ""
"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. "
"Sprawdź w instrukcjach witryny, jak w pełni odrzucić subskrypcję."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "Adres URI nasłuchującego \"%s\" nie został tutaj odnaleziony."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "Adres URI nasłuchującego \"%s\" jest za długi."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "Adres URI nasłuchującego \"%s\" jest lokalnym użytkownikiem."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "Adres URL profilu \"%s\" jest dla lokalnego użytkownika."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Licencja nasłuchiwanego strumienia \"%1$s\" nie jest zgodna z licencją "
+"witryny \"%2$s\"."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "Adres URL \"%s\" jest nieprawidłowy."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Nie można odczytać adresu URL awatara \"%s\"."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Błędny typ obrazu dla adresu URL awatara \"%s\"."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Wygląd profilu"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
"Dostosuj wygląd profilu za pomocą wybranego obrazu tła i palety kolorów."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Smacznego hot-doga."
@@ -6045,7 +6749,7 @@ msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i dołączyć do nich
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Aktualizacje z %1$s na %2$s."
@@ -6108,7 +6812,7 @@ msgid "Plugins"
msgstr "Wtyczki"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Wersja"
@@ -6117,32 +6821,32 @@ msgid "Author(s)"
msgstr "Autorzy"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Dodaj do ulubionych"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "Użytkownik %1$s oznaczył wpis %2$s jako ulubiony."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Nie można przetworzyć adresu URL \"%s\""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin sądzi, że coś jest niemożliwe."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6162,7 +6866,7 @@ msgstr[2] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6175,7 +6879,7 @@ msgstr[2] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6190,7 +6894,7 @@ msgstr[2] ""
"d bajtów."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Nieprawidłowa nazwa pliku."
@@ -6248,7 +6952,7 @@ msgid "Could not create login token for %s"
msgstr "Nie można utworzyć tokenów loginów dla %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Nigdzie nie odnaleziono nazwy lub DSN bazy danych."
@@ -6275,23 +6979,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Brak profilu (%1$d) dla wpisu (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problem podczas zapisywania wpisu. Za długi."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6299,7 +7003,7 @@ msgstr ""
"kilka minut."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6308,42 +7012,42 @@ msgstr ""
"wyślij ponownie za kilka minut."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Zabroniono ci wysyłania wpisów na tej witrynie."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problem podczas zapisywania wpisu."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr "Podano błędne dane do saveKnownGroups."
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Nie można zapisać odpowiedzi na %1$d, %2$d."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6351,14 +7055,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "Nie można unieważnić roli \"\"%1$s\" użytkownika #%2$d; nie istnieje."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6429,36 +7133,57 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Witaj w %1$s, @%2$s."
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
"Nie określono pojedynczego użytkownika dla trybu pojedynczego użytkownika."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr "Wywołano kod pojedynczego użytkownika, kiedy nie był włączony."
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Nie można utworzyć grupy."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Nie można ustawić adresu URI grupy."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Nie można ustawić członkostwa w grupie."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Nie można zapisać informacji o lokalnej grupie."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr "Nie można ustalić położenia konta %s."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr "Nie można odnaleźć XRD dla %s."
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr "Brak API usługi AtomPub dla %s."
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6495,211 +7220,214 @@ msgid "Other"
msgstr "Inne"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Strona bez nazwy"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Wyświetl więcej"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Główna nawigacja witryny"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Profil osobisty i oś czasu przyjaciół"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Osobiste"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Zmień adres e-mail, awatar, hasło, profil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Konto"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Połącz z serwisami"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Połącz"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Zmień konfigurację witryny"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Administrator"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Zaproś"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Wyloguj się z witryny"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Wyloguj się"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Utwórz konto"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Zarejestruj się"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Zaloguj się na witrynie"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Zaloguj się"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Pomóż mi."
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Pomoc"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Wyszukaj osoby lub tekst"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Wyszukaj"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Wpis witryny"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Lokalne widoki"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Wpis strony"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Druga nawigacja witryny"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Pomoc"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "O usłudze"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "TOS"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Prywatność"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Kod źródłowy"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Kontakt"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Odznaka"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licencja oprogramowania StatusNet"
@@ -6707,7 +7435,7 @@ msgstr "Licencja oprogramowania StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6717,7 +7445,7 @@ msgstr ""
"broughtby%%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** jest usługą mikroblogowania."
@@ -6726,7 +7454,7 @@ msgstr "**%%site.name%%** jest usługą mikroblogowania."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6738,20 +7466,20 @@ msgstr ""
"Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licencja zawartości witryny"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Treść i dane %1$s są prywatne i poufne."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
@@ -6759,7 +7487,7 @@ msgstr ""
"zastrzeżone."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie "
@@ -6767,7 +7495,7 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
@@ -6775,19 +7503,19 @@ msgstr ""
"$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paginacja"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Później"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Wcześniej"
@@ -6796,10 +7524,78 @@ msgstr "Wcześniej"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "Oczekiwano elementu kanału roota, ale otrzymano cały dokument XML."
-#: lib/activity.php:360
-#, fuzzy
-msgid "Post"
-msgstr "Zdjęcie"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Nieznany czasownik: \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr "Nie można wymusić subskrypcji niezaufanego użytkownika."
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr "Nie można wymusić subskrypcji na zdalnym użytkowniku."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr "Nieznany profil."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr "To działanie wydaje się nie mieć związku z użytkownikiem."
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr "Zdalny profil nie jest grupą."
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr "Użytkownik jest już członkiem tej grupy."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+"Informacje o autorze dla niezaufanego użytkownika nie zostaną zastąpione."
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr "Brak zawartości dla wpisu %s."
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "Brak użytkownika %s."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s %2$s %3$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6871,7 +7667,7 @@ msgid "User configuration"
msgstr "Konfiguracja użytkownika"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Użytkownik"
@@ -6917,19 +7713,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Brak aplikacji dla tego klucza klienta."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Błędny token dostępu."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Brak użytkownika dla tego tokenu."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Nie można uwierzytelnić."
@@ -6950,27 +7750,30 @@ msgid ""
msgstr "Nie można odnaleźć profilu i aplikacji powiązanych z tokenem żądania."
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "Nie można wywołać tokenu żądania."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Błąd bazy danych podczas wprowadzania użytkownika aplikacji OAuth."
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr "Błąd bazy danych podczas aktualizowania użytkownika aplikacji OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Spróbowano unieważnić nieznany token."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Usunięcie unieważnionego tokenu nie powiodło się."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Ikona tej aplikacji"
@@ -7083,17 +7886,22 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Unieważnij"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
-msgstr "element autora musi zawierać element nazwy."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr "Element \"author\" musi zawierać element \"name\"."
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr "Nie należy używać tej metody."
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autor"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Dostawca"
@@ -7122,6 +7930,11 @@ msgstr "Zmiana hasła nie jest dozwolona."
msgid "Block"
msgstr "Zablokuj"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Zablokuj tego użytkownika"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7235,7 +8048,7 @@ msgstr "Imię i nazwisko: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Położenie: %s"
@@ -7243,7 +8056,7 @@ msgstr "Położenie: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Strona domowa: %s"
@@ -7521,24 +8334,24 @@ msgstr ""
"tracking - jeszcze nie zaimplementowano\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "Nie odnaleziono pliku konfiguracji."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "Szukano plików konfiguracji w następujących miejscach:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Należy uruchomić instalator, aby to naprawić."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Przejdź do instalatora."
@@ -7579,14 +8392,19 @@ msgstr "Upoważnione połączone aplikacje"
msgid "Database error"
msgstr "Błąd bazy danych"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Usuń tego użytkownika"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Wyślij plik"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Można wysłać osobisty obraz tła. Maksymalny rozmiar pliku to 2 MB."
@@ -7603,25 +8421,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Wyłączone"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Przywróć"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Zmień kolory"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Użycie domyślnych"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Przywróć domyślny wygląd"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Przywróć domyślne ustawienia"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Zapisz wygląd"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Nie można zaktualizować wyglądu."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Przywrócono domyślny wygląd."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr "Nie można odnaleźć usług dla %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Usuń ten wpis z ulubionych"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Usuń wpis z ulubionych"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Dodaj ten wpis do ulubionych"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Dodaj do ulubionych"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7638,6 +8505,18 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr "Nie jest kanałem Atom."
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr "Brak autora w kanale."
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr "Nie można zaimportować bez użytkownika."
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7672,19 +8551,19 @@ msgstr "Przejdź"
msgid "Grant this user the \"%s\" role"
msgstr "Nadaj użytkownikowi rolę \"%s\""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych"
+msgstr "1-64 małe litery lub liczby, bez spacji i znaków przestankowych."
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "Adres URL strony domowej lub bloga grupy, albo temat."
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Opisz grupę lub temat"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
@@ -7692,14 +8571,14 @@ msgstr[0] "Opisz grupę lub temat w %d znaku"
msgstr[1] "Opisz grupę lub temat w %d znakach"
msgstr[2] "Opisz grupę lub temat w %d znakach"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Położenie grupy, jeśli istnieje, np. \"miasto, województwo (lub region), kraj"
"\"."
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7811,40 +8690,41 @@ msgstr "Znaczniki we wpisach grupy %s"
msgid "This page is not available in a media type you accept"
msgstr "Ta strona jest niedostępna dla akceptowanego typu medium"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Nieobsługiwany format pliku obrazu."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Ten plik jest za duży. Maksymalny rozmiar pliku to %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Częściowo wysłano."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Błąd systemu podczas wysyłania pliku."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "To nie jest obraz lub lub plik jest uszkodzony."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Utracono plik."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Nieznany typ pliku"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7853,7 +8733,7 @@ msgstr[1] "%d MB"
msgstr[2] "%d MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7862,7 +8742,7 @@ msgstr[1] "%d KB"
msgstr[2] "%d KB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7884,23 +8764,25 @@ msgstr "Nieznane źródło skrzynki odbiorczej %d."
msgid "Leave"
msgstr "Opuść"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Zaloguj się za pomocą nazwy użytkownika i hasła"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Załóż nowe konto"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Potwierdzenie adresu e-mail"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7932,14 +8814,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "Użytkownik %1$s obserwuje teraz twoje wpisy na %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7954,7 +8836,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7981,14 +8863,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "O mnie: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Nowy adres e-mail do wysyłania do %s"
@@ -7996,7 +8878,7 @@ msgstr "Nowy adres e-mail do wysyłania do %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8019,34 +8901,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Stan użytkownika %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Potwierdzenie SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: proszę potwierdzić własny numer telefonu za pomocą tego kodu:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
-msgstr "Zostałeś szturchnięty przez %s"
+msgid "You have been nudged by %s"
+msgstr "Zostałeś szturchnięty przez użytkownika %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8075,7 +8957,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nowa prywatna wiadomość od użytkownika %s"
@@ -8084,7 +8966,7 @@ msgstr "Nowa prywatna wiadomość od użytkownika %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8119,7 +9001,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "Użytkownik %1$s (@%2$s) dodał twój wpis jako ulubiony"
@@ -8129,7 +9011,7 @@ msgstr "Użytkownik %1$s (@%2$s) dodał twój wpis jako ulubiony"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8168,7 +9050,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8181,7 +9063,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "Użytkownik %1$s (@%2$s) wysłał wpis wymagający twojej uwagi"
@@ -8192,7 +9074,7 @@ msgstr "Użytkownik %1$s (@%2$s) wysłał wpis wymagający twojej uwagi"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8242,11 +9124,11 @@ msgstr ""
"\n"
"PS Można wyłączyć powiadomienia przez e-mail tutaj: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Tylko użytkownik może czytać swoje skrzynki pocztowe."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8255,10 +9137,6 @@ msgstr ""
"rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla "
"twoich oczu."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "z"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Nie można przetworzyć wiadomości."
@@ -8285,39 +9163,6 @@ msgstr "Nieobsługiwany typ wiadomości: %s"
msgid "There was a database error while saving your file. Please try again."
msgstr "Wystąpił błąd bazy danych podczas zapisywania pliku. Spróbuj ponownie."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Wysłany plik przekracza dyrektywę upload_max_filesize w php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Wysłany plik przekracza dyrektywę MAX_FILE_SIZE podaną w formularzu HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Plik został tylko częściowo wysłany."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Brak katalogu tymczasowego."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Zapisanie pliku na dysku nie powiodło się."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Wysłanie pliku zostało zatrzymane przez rozszerzenie."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8338,7 +9183,7 @@ msgstr "Nie można określić typu MIME pliku."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8349,7 +9194,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "\"%s\" nie jest obsługiwanym typem pliku na tym serwerze."
@@ -8381,18 +9226,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Wyślij"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Wiadomość"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "z"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "Pseudonim nie może być pusty."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8409,11 +9263,11 @@ msgstr "Wyślij wpis"
msgid "What's up, %s?"
msgstr "Co słychać, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Załącz"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Załącz plik"
@@ -8434,55 +9288,59 @@ msgstr ""
"ponownie później"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "Północ"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "Południe"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "Wschód"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "Zachód"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "w"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "WWW"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "w rozmowie"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Powtórzone przez"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Odpowiedz na ten wpis"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Odpowiedz"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Usuń ten wpis"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Powtórzono wpis"
@@ -8519,77 +9377,113 @@ msgstr "Podwójny wpis."
msgid "Couldn't insert new subscription."
msgstr "Nie można wprowadzić nowej subskrypcji."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Osobiste"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Odpowiedzi"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Ulubione"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Odebrane"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Wiadomości przychodzące"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Wysłane"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Wysłane wiadomości"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Znaczniki we wpisach użytkownika %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Nieznane"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Subskrypcje"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Wszystkie subskrypcje"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Subskrybenci"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Wszyscy subskrybenci"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Identyfikator użytkownika"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Członek od"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grupy"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Dziennie średnio"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Wszystkie grupy"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Niezaimplementowana metoda."
@@ -8636,7 +9530,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Unieważnij rolę \"%s\" tego użytkownika"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "Nie odnaleziono strony."
@@ -8726,6 +9620,10 @@ msgstr "Zaproś"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Subskrybuj tego użytkownika"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8847,64 +9745,81 @@ msgstr "Zrezygnuj z subskrypcji"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Użytkownik%1$s (%2$d) nie posiada wpisu profilu."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Zmodyfikuj awatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Czynności użytkownika"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Trwa usuwanie użytkownika..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Zmodyfikuj ustawienia profilu"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Edycja"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Wiadomość"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderuj"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Rola użytkownika"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrator"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderator"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Niezalogowany."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "kilka sekund temu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "około minutę temu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8913,12 +9828,12 @@ msgstr[1] "około %d minut temu"
msgstr[2] "około %d minut temu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "około godzinę temu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8927,12 +9842,12 @@ msgstr[1] "około %d godzin temu"
msgstr[2] "około %d godzin temu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "blisko dzień temu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8941,12 +9856,12 @@ msgstr[1] "około %d dni temu"
msgstr[2] "około %d dni temu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "około miesiąc temu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8955,18 +9870,13 @@ msgstr[1] "około %d miesięcy temu"
msgstr[2] "około %d miesięcy temu"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "około rok temu"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s nie jest prawidłowym kolorem."
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr ""
@@ -8991,31 +9901,17 @@ msgstr[1] "Wiadomość jest za długa. Maksymalnie %1$d znaki, wysłano %2$d."
msgstr[2] "Wiadomość jest za długa. Maksymalnie %1$d znaków, wysłano %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "Nieprawidłowy kod XML."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr "Nieprawidłowy kod XML, brak głównego XRD."
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Pobieranie kopii zapasowej z pliku \"%s\"."
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Nie podano użytkownika; używanie użytkownika zapasowego."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "%d wpis w kopii zapasowej."
-msgstr[1] "%d wpisy w kopii zapasowej."
-msgstr[2] "%d wpisów w kopii zapasowej."
diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po
index 2cad0907c7..7cd89e3ed8 100644
--- a/locale/pt/LC_MESSAGES/statusnet.po
+++ b/locale/pt/LC_MESSAGES/statusnet.po
@@ -1,6 +1,7 @@
# Translation of StatusNet - Core to Portuguese (Português)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
+# Author: Aracnus
# Author: Brion
# Author: Gallaecio
# Author: Giro720
@@ -14,17 +15,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:10+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:31+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -79,8 +80,9 @@ msgid "Save access settings"
msgstr "Gravar configurações de acesso"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -90,13 +92,13 @@ msgstr "Gravar configurações de acesso"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Gravar"
@@ -104,7 +106,7 @@ msgstr "Gravar"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Página não foi encontrada."
@@ -114,6 +116,8 @@ msgstr "Página não foi encontrada."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -129,13 +133,23 @@ msgstr "Página não foi encontrada."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -143,15 +157,15 @@ msgstr "Página não foi encontrada."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Utilizador não foi encontrado."
@@ -165,9 +179,10 @@ msgstr "%1$s e amigos, página %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s e amigos"
@@ -281,7 +296,7 @@ msgstr "Actualizações de %1$s e amigos no %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -314,7 +329,21 @@ msgstr ""
"Tem de especificar um parâmetro 'aparelho' com um dos valores: sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Não foi possível actualizar o utilizador."
@@ -324,18 +353,23 @@ msgstr "Não foi possível actualizar o utilizador."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Utilizador não tem perfil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Não foi possível gravar o perfil."
@@ -345,10 +379,10 @@ msgstr "Não foi possível gravar o perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
-#, fuzzy, php-format
+#, php-format
msgid ""
"The server was unable to handle that much POST data (%s byte) due to its "
"current configuration."
@@ -356,7 +390,7 @@ msgid_plural ""
"The server was unable to handle that much POST data (%s bytes) due to its "
"current configuration."
msgstr[0] ""
-"O servidor não conseguiu processar tantos dados POST (%s bytes) devido à sua "
+"O servidor não conseguiu processar tantos dados POST (%s byte) devido à sua "
"configuração actual."
msgstr[1] ""
"O servidor não conseguiu processar tantos dados POST (%s bytes) devido à sua "
@@ -366,13 +400,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Não foi possível gravar as configurações do estilo."
@@ -380,48 +415,60 @@ msgstr "Não foi possível gravar as configurações do estilo."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Não foi possível actualizar o seu estilo."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+#, fuzzy
+msgctxt "ATOM"
msgid "Main"
-msgstr ""
+msgstr "Principal"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Notas de %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Subscrições de %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Favoritas"
+msgstr "Favoritas de %s"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "Membros do grupo %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Os utilizadores não podem bloquear-se a si próprios!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Bloqueio do utilizador falhou."
@@ -477,7 +524,8 @@ msgstr "Destinatário não encontrado."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Não pode enviar mensagens directas a utilizadores que não sejam amigos."
@@ -502,8 +550,9 @@ msgid "This status is already a favorite."
msgstr "Este estado já é um favorito."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Não foi possível criar o favorito."
@@ -513,7 +562,8 @@ msgid "That status is not a favorite."
msgstr "Esse estado não é um favorito."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Não foi possível eliminar o favorito."
@@ -560,9 +610,9 @@ msgstr "Não foi possível encontrar o utilizador de destino."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Utilizador já é usado. Tente outro."
@@ -570,21 +620,22 @@ msgstr "Utilizador já é usado. Tente outro."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Utilizador não é válido."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Página de ínicio não é uma URL válida."
@@ -592,9 +643,9 @@ msgstr "Página de ínicio não é uma URL válida."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
#, fuzzy
msgid "Full name is too long (maximum 255 characters)."
msgstr "Nome completo demasiado longo (máx. 255 caracteres)."
@@ -602,14 +653,15 @@ msgstr "Nome completo demasiado longo (máx. 255 caracteres)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -620,9 +672,9 @@ msgstr[1] "Descrição demasiado longa (máx. %d caracteres)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "Localidade demasiado longa (máx. 255 caracteres)."
@@ -633,8 +685,8 @@ msgstr "Localidade demasiado longa (máx. 255 caracteres)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -651,18 +703,16 @@ msgstr "Nome alternativo inválido: \"%s\""
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Nome alternativo \"%s\" já em uso. Tente outro."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Um nome alternativo não pode ser igual ao nome do utilizador."
@@ -673,28 +723,32 @@ msgstr "Um nome alternativo não pode ser igual ao nome do utilizador."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Grupo não foi encontrado."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Já é membro desse grupo."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Foi bloqueado desse grupo pelo gestor."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Não foi possível adicionar %1$s ao grupo %2$s."
@@ -706,9 +760,11 @@ msgstr "Não é membro deste grupo."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -745,7 +801,7 @@ msgid "Upload failed."
msgstr "O upload falhou."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "Chave de entrada especificada é inválida."
@@ -768,20 +824,25 @@ msgid "Request token already authorized."
msgstr "Não tem autorização."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Ocorreu um problema com a sua sessão. Por favor, tente novamente."
@@ -799,18 +860,22 @@ msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Envio inesperado de formulário."
@@ -861,29 +926,31 @@ msgstr "Conta"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Utilizador"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Senha"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -957,6 +1024,7 @@ msgstr "Não pode apagar o estado de outro utilizador."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -976,39 +1044,52 @@ msgstr "Não pode repetir a sua própria nota."
msgid "Already repeated that notice."
msgstr "Já repetiu essa nota."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Método da API não encontrado."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Formato não suportado."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Estado apagado."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Não foi encontrado um estado com esse ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Nota não pode ser apagada."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Apagar nota"
@@ -1066,7 +1147,7 @@ msgstr "%1$s actualizações preferidas por %2$s / %2$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "Não foi possível actualizar o grupo."
@@ -1087,13 +1168,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s actualizações em resposta a actualizações de %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Notas públicas de %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s actualizações de todos!"
@@ -1142,203 +1224,270 @@ msgstr "Só o próprio utilizador pode ler a sua caixa de correio."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Procurar no conteúdo das notas"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Não existe nenhuma nota com essa identificação."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Método da API em desenvolvimento."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "Método da API não encontrado."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Perfil não foi encontrado."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Actualizações de %1$s e amigos no %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Não foi possível inserir nova subscrição."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Procurar no conteúdo das notas"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Procurar no conteúdo das notas"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Desconhecida"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Adicionar às favoritas"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Perfil não foi encontrado."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "Membros do grupo %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Grupos de que %s é membro"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Não foi possível inserir nova subscrição."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Procurar no conteúdo das notas"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Desconhecida"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Todos os membros"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Ficheiro não foi encontrado."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Não foi possível eliminar o favorito."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Grupo não foi encontrado."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Todos os membros"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "Método da API não encontrado."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Perfil não foi encontrado."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Não subscreveu esse perfil."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Não foi possível apagar a auto-subscrição."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Perfil não foi encontrado."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Não subscreveu esse perfil."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Não foi possível apagar a auto-subscrição."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Pessoas que subscrevem %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Tipo do ficheiro é desconhecido"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Já subscrito!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1347,11 +1496,15 @@ msgstr "Anexo não foi encontrado."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Nome de utilizador não definido."
@@ -1368,7 +1521,7 @@ msgstr "Tamanho inválido."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1381,42 +1534,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Pode carregar o seu avatar pessoal. O tamanho máximo do ficheiro é %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Utilizador sem perfil correspondente."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Configurações do avatar"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Original"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Antevisão"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
#, fuzzy
msgctxt "BUTTON"
msgid "Delete"
msgstr "Apagar"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1434,31 +1597,72 @@ msgstr "Cortar"
msgid "No file uploaded."
msgstr "Não foi carregado nenhum ficheiro."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Escolha uma área quadrada da imagem para ser o seu avatar"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Perdi os dados do nosso ficheiro."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Avatar actualizado."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Falha ao actualizar avatar."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Avatar apagado."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Só utilizadores com sessão iniciada podem repetir notas."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Fundo"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1466,7 +1670,8 @@ msgstr "Já bloqueou esse utilizador."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Bloquear utilizador"
@@ -1489,15 +1694,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Não"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Não bloquear este utilizador"
#. TRANS: Button label on the user block form.
@@ -1508,15 +1713,15 @@ msgstr "Não bloquear este utilizador"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Sim"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Bloquear este utilizador"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1524,31 +1729,6 @@ msgstr "Bloquear este utilizador"
msgid "Failed to save block information."
msgstr "Não foi possível gravar informação do bloqueio."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Grupo não foi encontrado."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1619,23 +1799,6 @@ msgstr "Tipo do endereço %s não reconhecido."
msgid "That address has already been confirmed."
msgstr "Esse endereço já tinha sido confirmado."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Não foi possível actualizar o utilizador."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1661,11 +1824,85 @@ msgid "Conversation"
msgstr "Conversação"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Notas"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Só utilizadores com sessão iniciada podem repetir notas."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Não pode apagar utilizadores."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Avatar apagado."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Criar uma conta"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Confirmação"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Não pode apagar utilizadores."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Não pode apagar utilizadores."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1679,14 +1916,14 @@ msgstr "Aplicação não foi encontrada."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Não é o proprietário desta aplicação."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Ocorreu um problema com a sua sessão."
@@ -1709,12 +1946,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Não apagar esta aplicação"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Apagar esta aplicação"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1724,8 +1963,10 @@ msgid "You must be logged in to delete a group."
msgstr "Tem de iniciar uma sessão para deixar um grupo."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Nenhum utilizador ou ID."
@@ -1770,25 +2011,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "Não apagar esta nota"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "Apagar este utilizador"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Não iniciou sessão."
@@ -1815,27 +2062,40 @@ msgstr "Tem a certeza de que quer apagar esta nota?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Não apagar esta nota"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Apagar esta nota"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Não pode apagar utilizadores."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Só pode apagar utilizadores locais."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Apagar utilizador"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Apagar utilizador"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1843,82 +2103,106 @@ msgstr ""
"Tem a certeza de que quer apagar este utilizador? Todos os dados do "
"utilizador serão eliminados da base de dados, sem haver cópias."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Não apagar esta nota"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Apagar este utilizador"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Estilo"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "URL do logotipo inválida."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "URL do logotipo inválida."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Tema não está disponível: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Alterar logotipo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logotipo do site"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
#, fuzzy
msgid "SSL logo"
msgstr "Logotipo do site"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Alterar tema"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Tema do site"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "O tema para o site."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Tema personalizado"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
"Pode fazer o upload de um tema personalizado para o StatusNet, na forma de "
"um arquivo .ZIP."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Alterar imagem de fundo"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Fundo"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1928,98 +2212,108 @@ msgstr ""
"é %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Ligar"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Desligar"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Ligar ou desligar a imagem de fundo."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Repetir imagem de fundo em mosaico"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Alterar cores"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Conteúdo"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Barra"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Texto"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Links"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avançado"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS personalizado"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Usar predefinições"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Repor estilos predefinidos"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Repor predefinição"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Gravar"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Gravar o estilo"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Esta nota não é uma favorita!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Adicionar às favoritas"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Documento \"%s\" não foi encontrado"
#. TRANS: Title for "Edit application" form.
@@ -2034,7 +2328,7 @@ msgid "You must be logged in to edit an application."
msgstr "Tem de iniciar uma sessão para editar uma aplicação."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Aplicação não foi encontrada."
@@ -2044,63 +2338,73 @@ msgid "Use this form to edit your application."
msgstr "Use este formulário para editar a sua aplicação."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Nome é obrigatório."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "Nome é demasiado longo (máx. 255 caracteres)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Nome já é usado. Tente outro."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Descrição é obrigatória."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "URL de origem é demasiado longa."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "A URL de origem é inválida."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organização é obrigatória."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "Organização é demasiado longa (máx. 255 caracteres)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Página da organização é obrigatória."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Callback é demasiado longo."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "A URL de callback é inválida."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Não foi possível actualizar a aplicação."
@@ -2111,14 +2415,17 @@ msgid "Edit %s group"
msgstr "Editar grupo %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Tem de iniciar uma sessão para criar o grupo."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Tem de ser administrador para editar o grupo."
@@ -2129,63 +2436,65 @@ msgstr "Use este formulário para editar o grupo."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Nome alternativo inválido: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Não foi possível actualizar o grupo."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Não foi possível criar os nomes alternativos."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Opções gravadas."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Configurações do correio electrónico"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Defina como receberá mensagens electrónicas de %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Endereço de correio electrónico"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Endereço de correio já confirmado."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Remover"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2198,45 +2507,45 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr ""
"Endereço de correio electrónico, por ex. \"nomedeutilizador@exemplo.pt\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Adicionar"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Correio recebido"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Quero publicar notas por correio electrónico."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Envie mensagens electrónicas para este endereço para publicar notas."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Crie um endereço electrónico novo para publicações; cancela o antigo."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2244,91 +2553,93 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Novo"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Preferências de correio electrónico"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Enviem-me notificação electrónica das novas subscrições."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Enviem-me notificação electrónica quando uma nota minha é adicionada às "
"favoritas."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr ""
"Enviem-me notificação electrónica quando me enviarem uma mensagem privada."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr ""
"Enviem-me notificação electrónica quando me enviarem uma \"resposta-@\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Permitir que amigos me toquem e enviem mensagens electrónicas."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publicar um MicroID para o meu endereço electrónico."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Preferências de correio electrónico foram gravadas."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Sem endereço de correio electrónico."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Não é possível normalizar esse endereço electrónico"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Correio electrónico é inválido."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Esse já é o seu endereço electrónico."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Esse endereço electrónico já pertence a outro utilizador."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Não foi possível inserir o código de confirmação."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2338,88 +2649,104 @@ msgstr ""
"respectivas instruções de utilização."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Nenhuma confirmação pendente para cancelar."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Esse endereço de correio electrónico está errado."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Não foi possível apagar a confirmação do endereço electrónico."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Confirmação de correio electrónico cancelada."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Esse não é o seu endereço electrónico."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "O endereço de correio electrónico foi removido."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Sem endereço electrónico de entrada."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Não foi possível actualizar o registo do utilizador."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Endereço electrónico de entrada foi removido."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Adicionado endereço electrónico de entrada novo."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Esta nota já é uma favorita!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Retirar das favoritas"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Notas populares"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Notas populares, página %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "As notas mais populares agora."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"As notas favoritas aparecem nesta página, mas ninguém elegeu nenhuma ainda."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2428,7 +2755,9 @@ msgstr ""
"Seja a primeira pessoa a adicionar uma nota às favoritas, clicando o botão "
"de marcação correspondente a uma nota de que goste."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2437,142 +2766,186 @@ msgstr ""
"Podia [registar uma conta](%%action.register%%) e ser o primeiro a adicionar "
"uma nota às favoritas!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Notas favoritas de %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Actualizações marcadas por %1$s em %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Utilizadores em destaque"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "utilizadores em destaque, página %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Uma selecção dos melhores utilizadores no %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Sem identificação de nota."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Sem nota."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Sem anexos."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Sem anexos carregados."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Não esperava esta resposta!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "O utilizador que está a escutar não existe."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Pode usar a subscrição local!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Esse utilizador bloqueou-o, impedindo que o subscreva."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Não tem autorização."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Não foi possível converter a chave de pedido numa chave de acesso."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Serviço remoto usa uma versão desconhecida do protocolo OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Erro ao actualizar o perfil remoto."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Ficheiro não foi encontrado."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Não foi possível ler o ficheiro."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Função inválida."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Esta função está reservada e não pode ser activada."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Não pode atribuir funções aos utilizadores neste site."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "O utilizador já tem esta função."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Não foi especificado um perfil."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Não foi encontrado um perfil com essa identificação."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Não foi especificado um grupo."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Só um gestor pode bloquear membros de um grupo."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Acesso do utilizador ao grupo já foi bloqueado."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Utilizador não é membro do grupo."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Bloquear acesso do utilizador ao grupo"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2584,32 +2957,40 @@ msgstr ""
"impossibilitado de subscrever o grupo no futuro."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Não bloquear acesso deste utilizador a este grupo"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Bloquear acesso deste utilizador a este grupo"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Erro na base de dados ao bloquear acesso do utilizador ao grupo."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Sem ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Tem de iniciar uma sessão para editar um grupo."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Estilo do grupo"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2617,22 +2998,26 @@ msgstr ""
"Personalize o aspecto do seu grupo com uma imagem de fundo e uma paleta de "
"cores à sua escolha."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Não foi possível actualizar o estilo."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Não foi possível gravar as configurações do estilo."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Preferências de estilo foram gravadas."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logotipo do grupo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2640,100 +3025,116 @@ msgstr ""
"Pode carregar uma imagem para logotipo do seu grupo. O tamanho máximo do "
"ficheiro é %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Carregar"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Cortar"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Escolha uma área quadrada da imagem para ser o logotipo."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logotipo actualizado."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Não foi possível actualizar o logotipo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Membros do grupo %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Membros do grupo %1$s, página %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Uma lista dos utilizadores neste grupo."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Gestor"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Bloquear"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Tornar utilizador o gestor do grupo"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Tornar Gestor"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Tornar este utilizador um gestor"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Actualizações dos membros de %1$s em %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grupos"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Grupos, página %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Os grupos no site %%site.name%% permitem-lhe encontrar e falar com pessoas "
"que têm interesses semelhantes aos seus. Após juntar-se a um grupo, pode "
@@ -2741,11 +3142,13 @@ msgstr ""
"encontra nenhum grupo de que gosta? Tente [pesquisar um grupo](%%action."
"groupsearch%%) ou [crie o seu!](%%action.newgroup%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Criar um grupo novo"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2754,25 +3157,33 @@ msgstr ""
"Procure grupos neste site pesquisando o nome, localização ou descrição. Os "
"termos de busca devem ter 3 ou mais caracteres e estar separados por espaços."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Pesquisa de grupos"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Sem resultados."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Se não encontra o grupo que procura, pode [criá-lo](%%action.newgroup%%) "
"você mesmo."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2782,137 +3193,147 @@ msgstr ""
"newgroup%%) você mesmo!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Só um gestor pode desbloquear membros de um grupo."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Acesso do utilizador ao grupo não foi bloqueado."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Erro ao remover o bloqueio."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Configurações do IM"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Pode enviar e receber notas através de [mensagens instantâneas](%%doc.im%%) "
"Jabber/GTalk. Configure o seu endereço e outras definições abaixo."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "MI não está disponível."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Endereço IM"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Endereço do Jabber/GTalk já confirmado."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"A aguardar confirmação deste endereço. Verifique as instruções que foram "
"enviadas para a sua conta de Jabber/GTalk. (Adicionou %s à sua lista de "
"amigos?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Endereço Jabber ou GTalk, por exemplo \"NomeDeUtilizador@exemplo.pt\". "
"Primeiro, certifique-se de que adicionou %s à sua lista de amigos no cliente "
"MI ou no GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Preferências de MI"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Enviar-me notas via Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Publicar uma nota quando o meu estado no Jabber/GTalk se altera."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr "Enviar-me via Jabber/GTalk respostas de pessoas que não subscrevo."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publicar um MicroID para o meu endereço Jabber/GTalk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Preferências gravadas."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Não introduziu o Jabber ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Não é possível normalizar esse Jabber ID"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Jabber ID não é válido"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Esse já é o seu Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "O Jabber ID introduzido já pertence a outro utilizador."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2921,56 +3342,62 @@ msgstr ""
"Um código de confirmação foi enviado para o endereço fornecido. Tem que "
"aprovar que %s envie mensagens para si."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Esse endereço de mensagens instantâneas está errado."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Não foi possível apagar a confirmação do mensageiro instantâneo."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Confirmação do mensageiro instantâneo cancelada."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Esse não é o seu Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "O endereço do mensageiro instantâneo foi removido."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Caixa de entrada de %s - página %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Caixa de entrada de %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Esta é a sua caixa de entrada, que apresenta as mensagens privadas que "
"recebeu."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Convites foram desabilitados."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2979,19 +3406,19 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Endereço electrónico inválido: %s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Convite(s) enviado(s)"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Convidar novos utilizadores"
@@ -2999,7 +3426,7 @@ msgstr "Convidar novos utilizadores"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -3008,7 +3435,7 @@ msgstr[1] "Já subscreveu estes utilizadores:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3017,7 +3444,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -3030,7 +3457,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3039,7 +3466,7 @@ msgstr[1] "Convite(s) enviado(s) para as seguintes pessoas:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3048,34 +3475,35 @@ msgstr ""
"registarem no site. Obrigado por aumentar a comunidade!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
"Use este formulário para convidar amigos e colegas a usar este serviço."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Endereços de correio electrónico"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Endereços dos amigos a convidar (um por linha)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Mensagem pessoal"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Pode optar por acrescentar uma mensagem pessoal ao convite"
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Enviar"
@@ -3083,7 +3511,7 @@ msgstr "Enviar"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s convidou-o a juntar-se a ele no %2$s"
@@ -3093,7 +3521,7 @@ msgstr "%1$s convidou-o a juntar-se a ele no %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3149,169 +3577,185 @@ msgstr ""
"\n"
"Sinceramente, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Tem de iniciar uma sessão para se juntar a um grupo."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s juntou-se ao grupo %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Tem de iniciar uma sessão para deixar um grupo."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Não é um membro desse grupo."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s deixou o grupo %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Texto de boas-vindas inválido. Tamanho máx. é 255 caracteres."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privado"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Gravar"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Sessão já foi iniciada."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Nome de utilizador ou senha incorrectos."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Erro ao preparar o utilizador. Provavelmente não está autorizado."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Entrar"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Iniciar sessão no site"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Lembrar-me neste computador"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"De futuro, iniciar sessão automaticamente. Não usar em computadores "
"partilhados!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Perdeu ou esqueceu-se da senha?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3319,11 +3763,11 @@ msgstr ""
"Por razões de segurança, por favor re-introduza o seu nome de utilizador e "
"senha antes de alterar as configurações."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Iniciar sessão com um nome de utilizador e senha."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3359,19 +3803,22 @@ msgid "New application"
msgstr "Aplicação Nova"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Tem de iniciar uma sessão para registar uma aplicação."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Use este formulário para registar uma nova aplicação."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "É necessária a URL de origem."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Não foi possível criar a aplicação."
@@ -3380,11 +3827,23 @@ msgstr "Não foi possível criar a aplicação."
msgid "New group"
msgstr "Grupo novo"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Não é membro deste grupo."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Use este formulário para criar um grupo novo."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Um nome alternativo não pode ser igual ao nome do utilizador."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Mensagem nova"
@@ -3434,7 +3893,9 @@ msgstr "Nota nova"
msgid "Notice posted"
msgstr "Nota publicada"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3443,16 +3904,21 @@ msgstr ""
"Procure notas no %%site.name%%, pesquisando o seu conteúdo. Os termos de "
"busca devem ter 3 ou mais caracteres e estar separados por espaços."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Pesquisa de texto"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Resultados da pesquisa de \"%1$s\" em %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3461,7 +3927,9 @@ msgstr ""
"Seja o primeiro a [publicar neste tópico](%%action.newnotice%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3470,14 +3938,17 @@ msgstr ""
"Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a "
"[publicar neste tópico](%%action.newnotice%%?status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Actualizações com \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Actualizações que contêm o termo \"%1$s\" em %2$s!"
#: actions/nudge.php:85
@@ -3519,30 +3990,30 @@ msgid "You have not registered any applications yet."
msgstr "Ainda não registou nenhuma aplicação."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Aplicações ligadas"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Não é utilizador dessa aplicação."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Não foi possível retirar acesso da aplicação: %s"
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3550,20 +4021,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Não permitiu que nenhuma aplicação use a sua conta."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Método da API não encontrado."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Método da API não encontrado."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Nota não tem perfil."
@@ -3573,6 +4054,16 @@ msgstr "Nota não tem perfil."
msgid "%1$s's status on %2$s"
msgstr "Estado de %1$s em %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Destinatário não encontrado."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3586,16 +4077,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Só URLs %s sobre HTTP simples, por favor."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Formato de dados não suportado."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Pesquisa de Pessoas"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Pesquisa de Notas"
@@ -3609,69 +4101,80 @@ msgid "Manage various other options."
msgstr "Gerir várias outras opções."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (serviço gratuito)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Encurtar URLs com"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Serviço de encurtamento que será usado automaticamente"
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Ver estilos para o perfil"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Mostrar ou esconder estilos para o perfil."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Serviço de encurtamento de URLs demasiado extenso (máx. 50 caracteres)"
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Não foi especificado um ID de utilizador."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Chave de entrada não foi especificada."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Chave de entrada não foi pedida."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Chave de entrada especificada é inválida."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Chave de entrada expirou."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Caixa de saída de %s - página %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Caixa de saída de %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Esta é a sua caixa de saída, que apresenta as mensagens privadas que enviou."
@@ -3684,7 +4187,8 @@ msgstr "Modificar senha"
msgid "Change your password."
msgstr "Modificar a sua senha."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Mudança da senha"
@@ -3692,48 +4196,50 @@ msgstr "Mudança da senha"
msgid "Old password"
msgstr "Antiga"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nova"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 ou mais caracteres"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Confirmação"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Repita a senha nova"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Modificar"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Senha tem de ter 6 ou mais caracteres."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Senhas não coincidem."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Senha antiga incorrecta."
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Erro ao guardar utilizador; inválido."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Não é possível guardar a nova senha."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Senha gravada."
@@ -3951,7 +4457,7 @@ msgstr "Localização do directório das línguas"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Anexos"
@@ -4025,7 +4531,9 @@ msgstr "Servidor para onde encaminhar pedidos SSL"
msgid "Save paths"
msgstr "Gravar localizações"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4035,7 +4543,8 @@ msgstr ""
"interesses. Os termos de busca devem ter 3 ou mais caracteres e estar "
"separados por espaços."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Pesquisa de pessoas"
@@ -4060,12 +4569,12 @@ msgstr ""
"A licença ‘%1$s’ da nota não é compatível com a licença ‘%2$s’ do site."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Configurações do perfil"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4073,33 +4582,34 @@ msgstr ""
"saibam mais sobre si."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Informação do perfil"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Nome completo"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Página pessoal"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL da sua página pessoal, blogue ou perfil noutro site na internet"
@@ -4107,7 +4617,7 @@ msgstr "URL da sua página pessoal, blogue ou perfil noutro site na internet"
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4115,80 +4625,87 @@ msgstr[0] "Descreva-se e aos seus interesses (máx. 140 caracteres)"
msgstr[1] "Descreva-se e aos seus interesses (máx. 140 caracteres)"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Descreva-se e aos seus interesses"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Biografia"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Localidade"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Onde está, por ex. \"Cidade, Região, País\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Compartilhar a minha localização presente ao publicar notas"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Categorias"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Categorias para si (letras, números, -, ., _), separadas por vírgulas ou "
"espaços"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Língua"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Língua preferida"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Fuso horário"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Em que fuso horário se encontra normalmente?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr "Subscrever automaticamente quem me subscreva (óptimo para não-humanos)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4196,50 +4713,54 @@ msgstr[0] "Biografia demasiado extensa (máx. %d caracteres)."
msgstr[1] "Biografia demasiado extensa (máx. %d caracteres)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Fuso horário não foi seleccionado."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Língua é demasiado extensa (máx. 50 caracteres)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Categoria inválida: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Não foi possível actualizar o utilizador para subscrição automática."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Não foi possível gravar as preferências de localização."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Não foi possível gravar o perfil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Não foi possível gravar as categorias."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Configurações gravadas."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Criar uma conta"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4315,6 +4836,12 @@ msgstr ""
"wikipedia.org/wiki/Micro-blogging) baseado no programa de Software Livre "
"[StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s actualizações de todos!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4359,37 +4886,45 @@ msgstr ""
msgid "Tag cloud"
msgstr "Nuvem de categorias"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Já tem uma sessão iniciada!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Código de recuperação não foi encontrado."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Não é um código de recuperação."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Código de recuperação para um utilizador desconhecido."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Erro no código de confirmação."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Este código de confirmação é demasiado antigo. Por favor, recomece."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr ""
"Não foi possivel actualizar o utilizador com um correio electrónico "
"confirmado."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4397,69 +4932,102 @@ msgstr ""
"Se perdeu ou se esqueceu da sua senha, podemos enviar-lhe uma nova para o "
"correio electrónico registado na sua conta."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Identificação positiva. Introduza abaixo uma senha nova. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Identificação positiva. Introduza abaixo uma senha nova."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Recuperação da senha"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Utilizador ou endereço de correio electrónico"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"O seu utilizador neste servidor, ou o seu correio electrónico registado."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Recuperar"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Recuperar"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Reiniciar senha"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Recuperar senha"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Solicitada recuperação da senha"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Senha gravada."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Acção desconhecida"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 ou mais caracteres, e não a esqueça!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Reiniciar"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Introduza um utilizador ou um endereço de correio electrónico."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr ""
"Não existe nenhum utilizador com esse correio electrónico nem com esse nome."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Nenhum endereço de email registado para esse utilizador."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Erro ao guardar confirmação do endereço."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4467,125 +5035,122 @@ msgstr ""
"Instruções para recuperação da sua senha foram enviadas para o correio "
"electrónico registado na sua conta."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Reinício inesperado da senha."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Senha tem de ter 6 ou mais caracteres."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "A senha e a confirmação não coincidem."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Erro ao configurar utilizador."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "A senha nova foi gravada com sucesso. Iniciou uma sessão."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Desculpe, só pessoas convidadas se podem registar."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Desculpe, código de convite inválido."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registo efectuado"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registar"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registo não é permitido."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Não se pode registar se não aceita a licença."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Correio electrónico já existe."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Nome de utilizador ou senha inválidos."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Com este formulário pode criar uma conta nova. Poderá então publicar notas e "
"ligar-se a amigos e colegas. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 letras minúsculas ou números, sem pontuação ou espaços. Obrigatório."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 ou mais caracteres. Obrigatório."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Repita a senha acima. Obrigatório."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Correio"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Usado apenas para actualizações, anúncios e recuperação da senha"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Nome mais longo, de preferência o seu nome \"verdadeiro\""
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL da sua página pessoal, blogue ou perfil noutro site na internet"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Onde está, por ex. \"Cidade, Região, País\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
"Compreendo que o conteúdo e dados do site %1$s são privados e confidenciais."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
"Os meus textos e ficheiros estão protegidos pelos direitos de autor de %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
"Os meus textos e ficheiros permanecem protegidos pelos meus próprios "
"direitos de autor."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Todos os direitos reservados."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4595,7 +5160,7 @@ msgstr ""
"estes dados privados: senha, endereço de correio electrónico, endereço de "
"mensageiro instantâneo, número de telefone."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4628,7 +5193,7 @@ msgstr ""
"\n"
"Obrigado por se ter registado e esperamos que se divirta usando este serviço."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4636,7 +5201,7 @@ msgstr ""
"(Deverá receber uma mensagem electrónica dentro de momentos, com instruções "
"para confirmar o seu endereço de correio electrónico.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4648,79 +5213,88 @@ msgstr ""
"microblogues compatível](%%doc.openmublog%%), introduza abaixo a URL do seu "
"perfil lá."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Subscrição remota"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Subscrever um utilizador remoto"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Nome do utilizador"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Nome do utilizador que pretende seguir"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL do perfil"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "URL do seu perfil noutro serviço de microblogues compatível"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Subscrever"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "URL de perfil inválido (formato incorrecto)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"URL do perfil não é válida (não há um documento Yadis, ou foi definido um "
"XRDS inválido)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Esse perfil é local! Inicie uma sessão para o subscrever."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Não foi possível obter uma chave de pedido."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Só utilizadores com sessão iniciada podem repetir notas."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Nota não foi especificada."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Não pode repetir a sua própria nota."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Já repetiu essa nota."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Repetida"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Repetida!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Respostas a %s"
@@ -4771,11 +5345,104 @@ msgstr ""
"Pode tentar [dar um toque em %1$s](../%2$s) ou [endereçar-lhe uma nota](%%%%"
"action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Respostas a %1$s em %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Só utilizadores com sessão iniciada podem repetir notas."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Ainda não registou nenhuma aplicação."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Carregar ficheiro"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Ficheiro carregado excede a directiva upload_max_filesize no php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Ficheiro carregado excede a directiva MAX_FILE_SIZE especificada no "
+"formulário HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Ficheiro só foi parcialmente carregado."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Falta um directório temporário."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Não foi possível gravar o ficheiro no disco."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Transferência do ficheiro interrompida pela extensão."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Ocorreu um erro de sistema ao transferir o ficheiro."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Todos os membros"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Carregar ficheiro"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Não pode retirar funções aos utilizadores neste site."
@@ -4784,7 +5451,7 @@ msgstr "Não pode retirar funções aos utilizadores neste site."
msgid "User doesn't have this role."
msgstr "O utilizador não tem esta função."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4826,85 +5493,87 @@ msgstr "Ligar a impressão de dados de depuração, para sessões."
msgid "Save site settings"
msgstr "Gravar configurações do site"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Tem de iniciar uma sessão para ver uma aplicação."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Perfil da aplicação"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Ícone"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nome"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organização"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Descrição"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Estatísticas"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Criado por %1$s - acesso por omissão %2$s - %3$d utilizadores"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Operações da aplicação"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Reiniciar chave e segredo"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Apagar"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Informação da aplicação"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Chave do consumidor"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Segredo do consumidor"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL da chave de pedido"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL da chave de acesso"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Autorizar URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4912,36 +5581,43 @@ msgstr ""
"Nota: Assinaturas HMAC-SHA1 são suportadas. O método de assinatura com texto "
"simples não é suportado."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Tem a certeza de que quer reiniciar a sua chave e segredo de consumidor?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Notas favoritas de %1$s, página %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Não foi possível importar notas favoritas."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Fonte dos favoritos de %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Fonte dos favoritos de %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Fonte dos favoritos de %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4950,7 +5626,9 @@ msgstr ""
"notas de que goste, para marcá-las para mais tarde ou para lhes dar "
"relevância."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4959,7 +5637,10 @@ msgstr ""
"%s ainda não adicionou nenhuma nota às favoritas. Publique algo interessante "
"que mude este estado de coisas :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4970,7 +5651,8 @@ msgstr ""
"conta](%%%%action.register%%%%) e publicar algo tão interessante que mude "
"este estado de coisas :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Esta é uma forma de partilhar aquilo de que gosta."
@@ -4988,82 +5670,89 @@ msgid "%1$s group, page %2$d"
msgstr "Grupo %1$s, página %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Perfil do grupo"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Anotação"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Nomes alternativos"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Acções do grupo"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Fonte de notas do grupo %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Fonte de notas do grupo %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Fonte de notas do grupo %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF do grupo %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Membros"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Nenhum)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Todos os membros"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Criado"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -5073,7 +5762,7 @@ msgstr "Membros"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5092,7 +5781,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5106,30 +5795,30 @@ msgstr ""
"grupo partilham mensagens curtas acerca das suas vidas e interesses. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Gestores"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Mensagem não foi encontrada."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Só o remetente e o destinatário podem ler esta mensagem."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Mensagem para %1$s a %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Mensagem de %1$s a %2$s"
@@ -5145,7 +5834,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, página %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5395,74 +6084,76 @@ msgstr "Texto do aviso do site (máx. 255 caracteres; pode usar HTML)"
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Gravar aviso do site"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Configurações de SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Pode receber SMSs do site %%site.name%% por correio electrónico."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS não está disponível."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Endereço SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Número de telefone com serviço SMS activo já confirmado."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "A aguardar confirmação deste número de telefone."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Código de confirmação"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Introduza o código que recebeu no seu telefone."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Confirmar"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Número de telefone para SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Número de telefone, sem pontuação ou espaços, com código de área"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Preferências de SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5471,32 +6162,32 @@ msgstr ""
"me montantes exorbitantes."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Preferências de SMS gravadas."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Nenhum número de telefone."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Operador não foi seleccionado."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Esse já é o seu número de telefone."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Esse número de telefone já pertence a outro utilizador."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5506,39 +6197,39 @@ msgstr ""
"utilização."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Esse número de confirmação está errado."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Confirmação de SMS cancelada."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Esse número de telefone não é o seu."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Número de telefone para SMS foi removido."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Operador móvel"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Seleccione um operador"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5549,8 +6240,9 @@ msgstr ""
"para %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Nenhum código introduzido"
#. TRANS: Menu item for site administration
@@ -5622,15 +6314,19 @@ msgstr "Não subscreveu esse perfil."
msgid "Could not save subscription."
msgstr "Não foi possível gravar a subscrição."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Esta operação só aceita pedidos POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Não pode subscrever um perfil remoto OMB 0.1 com esta operação."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Subscrito"
@@ -5662,7 +6358,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Estas são as pessoas que escutam as notas de %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5673,7 +6369,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s não tem subscritores. Quer ser o primeiro?"
@@ -5683,7 +6379,7 @@ msgstr "%s não tem subscritores. Quer ser o primeiro?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5716,7 +6412,7 @@ msgstr "Estas são as pessoas cujas notas %s está a escutar."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5736,23 +6432,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s não está a ouvir ninguém."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Fonte de notas para %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5785,12 +6482,15 @@ msgstr "Argumento de identificação (ID) em falta."
msgid "Tag %s"
msgstr "Categoria %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Perfil"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Foto"
@@ -5806,15 +6506,16 @@ msgstr ""
"Categorias para este utilizador (letras, números, ., _), separadas por "
"vírgulas ou espaços"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Categoria inválida: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
msgstr "Só pode categorizar pessoas que subscreve ou os seus subscritores."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Não foi possível gravar as categorias."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5825,6 +6526,7 @@ msgstr ""
msgid "No such tag."
msgstr "Categoria não foi encontrada."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Não bloqueou esse utilizador."
@@ -5845,7 +6547,7 @@ msgstr "O pedido não tem a identificação do perfil."
msgid "Unsubscribed"
msgstr "Subscrição cancelada"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5879,12 +6581,11 @@ msgstr "Texto de boas-vindas inválido. Tamanho máx. é 255 caracteres."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Subscrição predefinida é inválida: '%1$s' não é utilizador."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Perfil"
@@ -5941,55 +6642,71 @@ msgstr "Permitir, ou não, que utilizadores convidem utilizadores novos."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Gravar configurações do site"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autorizar subscrição"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Por favor, verifique estes detalhes para se certificar de que deseja "
"subscrever as notas deste utilizador. Se não fez um pedido para subscrever "
"as notas de alguém, simplesmente clique \"Rejeitar\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licença"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Aceitar"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Subscrever este utilizador"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Rejeitar"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Rejeitar esta subscrição"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Não há pedido de autorização!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Subscrição autorizada"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5999,11 +6716,12 @@ msgstr ""
"Verifique as instruções do site para saber como autorizar a subscrição. A "
"sua chave de subscrição é:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Subscrição rejeitada"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -6013,48 +6731,73 @@ msgstr ""
"Verifique as instruções do site para saber como rejeitar completamente a "
"subscrição."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "A listener URI ‘%s’ não foi encontrada aqui."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "URI do escutado ‘%s’ é demasiado longo."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "URI do ouvido ‘%s’ é um utilizador local."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "A URL ‘%s’ do perfil é de um utilizador local."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Licença ‘%1$s’ da listenee stream não é compatível com a licença ‘%2$s’ do "
+"site."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "A URL ‘%s’ do avatar é inválida."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Não é possível ler a URL do avatar ‘%s’."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Tipo de imagem incorrecto para o avatar da URL ‘%s’."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Estilo do perfil"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6062,7 +6805,7 @@ msgstr ""
"Personalize o estilo do seu perfil com uma imagem de fundo e uma paleta de "
"cores à sua escolha."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Disfrute do seu cachorro-quente!"
@@ -6092,7 +6835,7 @@ msgstr "Tente [pesquisar grupos](%%action.groupsearch%%) e juntar-se a eles."
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Actualizações de %1#s a %2$s!"
@@ -6152,7 +6895,7 @@ msgid "Plugins"
msgstr "Plugins"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Versão"
@@ -6161,32 +6904,32 @@ msgid "Author(s)"
msgstr "Autores"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Eleger como favorita"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) adicionou a sua nota às favoritas."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Não é possível processar a URL '$s'"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "o Robin acha que algo é impossível."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6203,7 +6946,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6214,7 +6957,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6224,7 +6967,7 @@ msgstr[1] ""
"Um ficheiro desta dimensão excederia a sua quota mensal de %d bytes."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Nome de ficheiro inválido."
@@ -6282,7 +7025,7 @@ msgid "Could not create login token for %s"
msgstr "Não foi possível criar a chave de entrada para %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Não foi encontrado nenhum nome de base de dados ou DSN."
@@ -6309,23 +7052,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Não existe o perfil (%1$d) para a nota (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Erro na base de dados ao inserir o elemento criptográfico: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problema na gravação da nota. Demasiado longa."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problema na gravação da nota. Utilizador desconhecido."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6333,7 +7076,7 @@ msgstr ""
"alguns minutos."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6342,43 +7085,43 @@ msgstr ""
"publicar daqui a alguns minutos."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Está proibido de publicar notas neste site."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problema na gravação da nota."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
#, fuzzy
msgid "Bad type provided to saveKnownGroups."
msgstr "O tipo fornecido ao método saveKnownGroups é incorrecto"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problema na gravação da caixa de entrada do grupo."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Não foi possível gravar a informação do grupo local."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6386,7 +7129,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
@@ -6394,7 +7137,7 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6466,35 +7209,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "%1$s dá-lhe as boas-vindas, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Nenhum utilizador único definido para o modo de utilizador único."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Não foi possível criar o grupo."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Não foi possível configurar a URI do grupo."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Não foi possível configurar membros do grupo."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Não foi possível gravar a informação do grupo local."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Não pode apagar utilizadores."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6531,211 +7295,214 @@ msgid "Other"
msgstr "Outras"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Página sem título"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Navegação primária deste site"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Perfil pessoal e notas dos amigos"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Pessoal"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Altere o seu endereço electrónico, avatar, senha, perfil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Conta"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Ligar aos serviços"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Ligar"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Alterar a configuração do site"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Gestor"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Convidar amigos e colegas para se juntarem a si em %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Convidar"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Terminar esta sessão"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Sair"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Criar uma conta"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registar"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Iniciar uma sessão"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Entrar"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Ajudem-me!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Ajuda"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Procurar pessoas ou pesquisar texto"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Pesquisa"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Aviso do site"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Vistas locais"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Aviso da página"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Navegação secundária deste site"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Ajuda"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Sobre"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Termos"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Privacidade"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Código fonte"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Contacto"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Emblema"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licença de software do StatusNet"
@@ -6743,7 +7510,7 @@ msgstr "Licença de software do StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6753,7 +7520,7 @@ msgstr ""
"broughtby%%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** é um serviço de microblogues."
@@ -6762,7 +7529,7 @@ msgstr "**%%site.name%%** é um serviço de microblogues."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6774,20 +7541,20 @@ msgstr ""
"fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licença de conteúdos do site"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "O conteúdo e dados do site %1$s são privados e confidenciais."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
@@ -6795,7 +7562,7 @@ msgstr ""
"direitos reservados."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Direitos de autor sobre o conteúdo e dados detidos pelos contribuidores. "
@@ -6803,7 +7570,7 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
@@ -6811,19 +7578,19 @@ msgstr ""
"licença %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paginação"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Posteriores"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Anteriores"
@@ -6834,10 +7601,80 @@ msgstr ""
"Era esperado um elemento raiz da fonte, mas foi recebido um documento XML "
"inteiro."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Língua desconhecida \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Foto"
+msgid "Cannot force remote user to subscribe."
+msgstr "Introduza o nome do utilizador para subscrever."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Tipo do ficheiro é desconhecido"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Já é membro desse grupo."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Procurar no conteúdo das notas"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Utilizador não foi encontrado."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6909,7 +7746,7 @@ msgid "User configuration"
msgstr "Configuração do utilizador"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Utilizador"
@@ -6953,19 +7790,23 @@ msgstr "API requer acesso de leitura e escrita, mas só tem acesso de leitura."
msgid "No application for that consumer key."
msgstr "Nenhuma aplicação para essa chave de consumidor."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Código de acesso incorrecto."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Nenhum utilizador para esse código."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Não foi possível autenticá-lo."
@@ -6988,28 +7829,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Não foi possível inserir a mensagem."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Erro na base de dados ao inserir o utilizador da aplicação OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Tentou revogar um código desconhecido."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Falha ao eliminar código revogado."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Ícone para esta aplicação"
@@ -7120,17 +7965,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Retirar"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Não apagar esta nota"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autor"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Fornecedor"
@@ -7161,6 +8012,11 @@ msgstr "Não é permitido mudar a palavra-chave"
msgid "Block"
msgstr "Bloquear"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Bloquear este utilizador"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7275,7 +8131,7 @@ msgstr "Nome completo: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Localidade: %s"
@@ -7283,7 +8139,7 @@ msgstr "Localidade: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Página pessoal: %s"
@@ -7553,26 +8409,26 @@ msgstr ""
"tracking - ainda não implementado.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Ficheiro de configuração não encontrado. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Procurei ficheiros de configuração nos seguintes sítios: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Talvez queira correr o instalador para resolver esta questão."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Ir para o instalador."
@@ -7616,14 +8472,19 @@ msgstr "Aplicações ligadas autorizadas"
msgid "Database error"
msgstr "Erro de base de dados"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Apagar este utilizador"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Carregar ficheiro"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7644,26 +8505,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Desligar"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Reiniciar"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Alterar cores"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Usar predefinições"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Repor estilos predefinidos"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Repor predefinição"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Gravar o estilo"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Não foi possível actualizar o estilo."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Predefinições do estilo repostas"
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Não foi possível retirar acesso da aplicação: %s"
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Retirar esta nota das favoritas"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Retirar das favoritas"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Eleger esta nota como favorita"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Eleger como favorita"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7680,6 +8589,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Todos os membros"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7714,33 +8636,33 @@ msgstr "Prosseguir"
msgid "Grant this user the \"%s\" role"
msgstr "Atribuir a este utilizador a função \"%s\""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 letras minúsculas ou números, sem pontuação ou espaços"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL da página ou do blogue, deste grupo ou assunto"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Descreva o grupo ou assunto"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Descreva o grupo ou o assunto em %d caracteres"
msgstr[1] "Descreva o grupo ou o assunto em %d caracteres"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "Localidade do grupo, se aplicável, por ex. \"Cidade, Região, País\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7847,40 +8769,41 @@ msgstr "Categorias nas notas do grupo %s"
msgid "This page is not available in a media type you accept"
msgstr "Esta página não está disponível num formato que você aceite"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Formato do ficheiro da imagem não é suportado."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Esse ficheiro é demasiado grande. O tamanho máximo de ficheiro é %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Transferência parcial."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Ocorreu um erro de sistema ao transferir o ficheiro."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Ficheiro não é uma imagem ou está corrompido."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Perdi o nosso ficheiro."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Tipo do ficheiro é desconhecido"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7888,7 +8811,7 @@ msgstr[0] "MB"
msgstr[1] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7896,7 +8819,7 @@ msgstr[0] "kB"
msgstr[1] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7917,23 +8840,25 @@ msgstr "Origem da caixa de entrada desconhecida \"%s\"."
msgid "Leave"
msgstr "Afastar-me"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Iniciar sessão com um nome de utilizador e senha"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Registar uma conta nova"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Confirmação do endereço electrónico"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7964,14 +8889,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s está agora a ouvir as suas notas em %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7986,7 +8911,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -8014,14 +8939,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Bio: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Novo endereço electrónico para publicar no site %s"
@@ -8029,7 +8954,7 @@ msgstr "Novo endereço electrónico para publicar no site %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8052,34 +8977,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Estado de %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Confirmação SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: confirme que este número de telefone é seu com este código:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "%s envia-lhe um toque"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8108,7 +9033,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nova mensagem privada de %s"
@@ -8117,7 +9042,7 @@ msgstr "Nova mensagem privada de %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8152,7 +9077,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) adicionou a sua nota às favoritas."
@@ -8162,7 +9087,7 @@ msgstr "%s (@%s) adicionou a sua nota às favoritas."
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8200,7 +9125,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8213,7 +9138,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) enviou uma nota à sua atenção"
@@ -8224,7 +9149,7 @@ msgstr "%s (@%s) enviou uma nota à sua atenção"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8274,11 +9199,11 @@ msgstr ""
"\n"
"P.S. Pode desligar estas notificações electrónicas aqui: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Só o próprio utilizador pode ler a sua caixa de correio."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8287,10 +9212,6 @@ msgstr ""
"conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que "
"só você terá acesso."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "a partir de"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Não foi possível fazer a análise sintáctica da mensagem."
@@ -8319,40 +9240,6 @@ msgstr ""
"Ocorreu um erro na base de dados ao gravar o seu ficheiro. Por favor, tente "
"novamente."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Ficheiro carregado excede a directiva upload_max_filesize no php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Ficheiro carregado excede a directiva MAX_FILE_SIZE especificada no "
-"formulário HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Ficheiro só foi parcialmente carregado."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Falta um directório temporário."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Não foi possível gravar o ficheiro no disco."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Transferência do ficheiro interrompida pela extensão."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8373,7 +9260,7 @@ msgstr "Não foi possível determinar o tipo MIME do ficheiro."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8384,7 +9271,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "\"%s\" não é um tipo de ficheiro suportado neste servidor."
@@ -8418,18 +9305,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Enviar"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Mensagem"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "a partir de"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Utilizador só deve conter letras minúsculas e números. Sem espaços."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8445,11 +9341,11 @@ msgstr "Enviar uma nota"
msgid "What's up, %s?"
msgstr "Novidades, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Anexar"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Anexar um ficheiro"
@@ -8470,55 +9366,59 @@ msgstr ""
"tente novamente mais tarde"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "E"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "O"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "coords."
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "no contexto"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Repetida por"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Responder a esta nota"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Responder"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Apagar esta nota"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Nota repetida"
@@ -8555,77 +9455,113 @@ msgstr "Nota duplicada."
msgid "Couldn't insert new subscription."
msgstr "Não foi possível inserir nova subscrição."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Pessoal"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Respostas"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Perfil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favoritas"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Recebidas"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Mensagens recebidas"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Enviadas"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Mensagens enviadas"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Categorias nas notas de %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Desconhecida"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Subscrições"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Todas as subscrições"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Subscritores"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Todos os subscritores"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Número de identificação"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Membro desde"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grupos"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Média diária"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Todos os grupos"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Método não implementado."
@@ -8672,7 +9608,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Retirar a função \"%s\" a este utilizador"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Método da API não encontrado."
@@ -8763,6 +9699,10 @@ msgstr "Convidar"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Convidar amigos e colegas para se juntarem a si em %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Subscrever este utilizador"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8881,64 +9821,81 @@ msgstr "Abandonar"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Utilizador não tem perfil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Editar Avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Acções do utilizador"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "A apagar o utilizador..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Editar configurações do perfil"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Editar"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Enviar mensagem directa a este utilizador"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Mensagem"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderar"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Função"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Gestor"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderador"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Não iniciou sessão."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "há alguns segundos"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "há cerca de um minuto"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8946,12 +9903,12 @@ msgstr[0] "há cerca de um minuto atrás"
msgstr[1] "há cerca de %d minutos atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "há cerca de uma hora"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8959,12 +9916,12 @@ msgstr[0] "há cerca de uma hora atrás"
msgstr[1] "há cerca de %d horas atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "há cerca de um dia"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8972,12 +9929,12 @@ msgstr[0] "há cerca de um dia atrás"
msgstr[1] "há cerca de %d dias atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "há cerca de um mês"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8985,18 +9942,13 @@ msgstr[0] "há cerca de um mês atrás"
msgstr[1] "há cerca de %d meses atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "há cerca de um ano"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s não é uma cor válida!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s não é uma cor válida! Use 3 ou 6 caracteres hexadecimais."
@@ -9017,32 +9969,18 @@ msgstr[0] "Mensagem demasiado extensa - máx. %1$d caracteres, enviou %2$d."
msgstr[1] "Mensagem demasiado extensa - máx. %1$d caracteres, enviou %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Tamanho inválido."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Não foi especificado um ID de utilizador."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po
index 20a0666b35..50c2733981 100644
--- a/locale/pt_BR/LC_MESSAGES/statusnet.po
+++ b/locale/pt_BR/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Brazilian Portuguese (Português do Brasil)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Aracnus
# Author: Brion
@@ -15,18 +15,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:11+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:34+0000\n"
"Language-Team: Brazilian Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -81,8 +81,9 @@ msgid "Save access settings"
msgstr "Salvar as configurações de acesso"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -92,13 +93,13 @@ msgstr "Salvar as configurações de acesso"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Salvar"
@@ -106,7 +107,7 @@ msgstr "Salvar"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Esta página não existe."
@@ -116,6 +117,8 @@ msgstr "Esta página não existe."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -131,13 +134,23 @@ msgstr "Esta página não existe."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -145,15 +158,15 @@ msgstr "Esta página não existe."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Este usuário não existe."
@@ -167,9 +180,10 @@ msgstr "%1$s e amigos, pág. %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s e amigos"
@@ -284,7 +298,7 @@ msgstr "Atualizações de %1$s e amigos no %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -318,7 +332,21 @@ msgstr ""
"valores: sms, im, none"
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Não foi possível atualizar o usuário."
@@ -328,18 +356,23 @@ msgstr "Não foi possível atualizar o usuário."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "O usuário não tem perfil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Não foi possível salvar o perfil."
@@ -349,8 +382,8 @@ msgstr "Não foi possível salvar o perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -370,13 +403,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Não foi possível salvar suas configurações de aparência."
@@ -384,48 +418,59 @@ msgstr "Não foi possível salvar suas configurações de aparência."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Não foi possível atualizar a sua aparência."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "Principal"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Mensagens de %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Assinaturas de %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Favoritos"
+msgstr "Favoritas de %s"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "Membros do grupo %s"
+msgstr "Associações de %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Você não pode bloquear a si mesmo!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Não foi possível bloquear o usuário."
@@ -483,7 +528,8 @@ msgstr "O usuário destinatário não foi encontrado."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Não é possível enviar mensagens diretas para usuários que não sejam seus "
"amigos."
@@ -510,8 +556,9 @@ msgid "This status is already a favorite."
msgstr "Esta mensagem já é favorita!"
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Não foi possível criar a favorita."
@@ -521,7 +568,8 @@ msgid "That status is not a favorite."
msgstr "Essa mensagem não é favorita!"
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Não foi possível excluir a favorita."
@@ -566,9 +614,9 @@ msgstr "Não foi possível encontrar usuário de destino."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Esta identificação já está em uso. Tente outro."
@@ -576,21 +624,22 @@ msgstr "Esta identificação já está em uso. Tente outro."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Não é uma identificação válida."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "A URL informada não é válida."
@@ -598,23 +647,24 @@ msgstr "A URL informada não é válida."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "O nome completo é muito extenso (máx. 255 caracteres)"
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -625,9 +675,9 @@ msgstr[1] "A descrição é muito extensa (máximo %d caracteres)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "A localização é muito extensa (máx. 255 caracteres)."
@@ -637,8 +687,8 @@ msgstr "A localização é muito extensa (máx. 255 caracteres)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -655,18 +705,16 @@ msgstr "Apelido inválido: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "O apelido \"%s\" já está em uso. Tente outro."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "O apelido não pode ser igual à identificação."
@@ -677,28 +725,32 @@ msgstr "O apelido não pode ser igual à identificação."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "O grupo não foi encontrado."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Você já é membro desse grupo."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "O administrador desse grupo bloqueou sua inscrição."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Não foi possível associar o usuário %1$s ao grupo %2$s."
@@ -710,9 +762,11 @@ msgstr "Você não é membro deste grupo."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -749,7 +803,7 @@ msgid "Upload failed."
msgstr "O upload falhou."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "O token ou o verificador solicitado é inválido."
@@ -769,20 +823,25 @@ msgid "Request token already authorized."
msgstr "O token solicitado já foi autorizado."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -800,18 +859,22 @@ msgstr "Erro no banco de dados durante a inserção de oauth_token_association."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Submissão inesperada de formulário."
@@ -862,29 +925,31 @@ msgstr "Conta"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Usuário"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Senha"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -958,6 +1023,7 @@ msgstr "Você não pode excluir uma mensagem de outro usuário."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -977,38 +1043,50 @@ msgstr "Você não pode repetir a sua própria mensagem."
msgid "Already repeated that notice."
msgstr "Você já repetiu essa mensagem."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "O método HTTP não é suportado."
-#: actions/apistatusesshow.php:141
-#, php-format
-msgid "Unsupported format: %s"
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
+#, fuzzy, php-format
+msgid "Unsupported format: %s."
msgstr "Formato não suportado: %s"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "A mensagem foi excluída."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Não foi encontrada nenhuma mensagem com esse ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Só é possível excluir usando o formato Atom."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "Não é possível excluir esta mensagem."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "Mensagem excluída %d"
@@ -1065,7 +1143,7 @@ msgstr "Mensagens de %1$s marcadas como favoritas por %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Não foi possível gerar a fonte de notícias para o grupo - %s"
@@ -1086,13 +1164,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Mensagens públicas de %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s mensagens de todo mundo!"
@@ -1136,211 +1215,264 @@ msgstr "Somente o usuário pode adicionar à sua própria linha de tempo."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
-msgstr "Só são aceitos AtomPub para fontes atom."
+msgstr "Só são aceitos AtomPub para fontes Atom."
-#: actions/apitimelineuser.php:310
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr "A publicação Atom deve ser uma entrada Atom."
+msgstr "A publicação Atom não pode estar em branco."
-#: actions/apitimelineuser.php:315
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr "A publicação Atom deve ser uma entrada Atom."
+msgstr "A publicação Atom deve ser um XML formatado corretamente."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr "A publicação Atom deve ser uma entrada Atom."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
-#, fuzzy
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr "Só é possível manipular atividades de publicação."
+msgstr "Só é possível manipular atividades POST."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
-#, fuzzy, php-format
+#: actions/apitimelineuser.php:345
+#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr "Não é possível manipular o tipo de objeto de atividade \"%s\""
+msgstr "Não é possível manipular o tipo de objeto de atividade \"%s\"."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Encontre conteúdo de mensagens"
+msgstr "Nenhum conteúdo para a mensagem %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Já existe uma mensagem com a URI \"%s\"."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr "Publicação AtomPub com uma URI de atenção desconhecida %s"
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "O método da API está em construção."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "O método da API não foi encontrado!"
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Este perfil não existe."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Não foi possível inserir a nova assinatura."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-#, fuzzy
-msgid "Can only handle Favorite activities."
-msgstr "Só é possível manipular atividades de publicação."
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Só é possível manipular atividades de publicação."
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Desconhecido"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Adicionar às favoritas"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "Este perfil não existe."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Mensagens que %1$s marcou como Favoritas em %2$s"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "Não é possível adicionar a assinatura de outra pessoa."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Só é possível manipular as atividades das Favoritas."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Só é possível tornar favoritas as mensagens."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Mensagem desconhecida."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Já foi adicionada às Favoritas."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
+#, php-format
msgid "%s group memberships"
msgstr "Membros do grupo %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Grupos dos quais %s é membro"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Não é possível adicionar a assinatura de outra pessoa"
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
+#: actions/atompubmembershipfeed.php:242
#, fuzzy
-msgid "Can only handle Join activities."
-msgstr "Só é possível manipular atividades de publicação."
+msgid "Can only handle join activities."
+msgstr "Só é possível manipular as atividades de associação."
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Desconhecido"
+msgstr "Grupo desconhecido."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Todos os membros"
+msgstr "Já é um membro."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Bloqueado pelo administrador."
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "Esse arquivo não existe."
+msgstr "Essa Favorita não existe."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "Não foi possível excluir a favorita."
+msgid "Cannot delete someone else's favorite."
+msgstr "Não é possível excluir a Favorita de outra pessoa"
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Esse grupo não existe."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
-msgstr "Todos os membros"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "O método HTTP não é suportado."
+msgid "Not a member."
+msgstr "Não é um membro"
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+#, fuzzy
+msgid "Cannot delete someone else's membership."
+msgstr "Não é possível excluir a assinatura de outra pessoa"
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Este perfil não existe."
+msgid "No such profile id: %d."
+msgstr "Este id de perfil não existe: %d"
-#: actions/atompubshowsubscription.php:90
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Você não está assinando esse perfil."
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "O perfil %1$d não assina o perfil %2$d"
-#: actions/atompubshowsubscription.php:154
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
#, fuzzy
-msgid "Can't delete someone else's subscription"
-msgstr "Não foi possível salvar a assinatura."
+msgid "Cannot delete someone else's subscription."
+msgstr "Não é possível excluir a assinatura de outra pessoa"
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Assinantes de %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
-#, fuzzy
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
-msgstr "Só é possível manipular atividades de publicação."
+msgstr "Só é possível manipular atividades de Assinatura."
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Só é possível assinar pessoas."
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Tipo de arquivo desconhecido"
+msgid "Unknown profile %s."
+msgstr "Perfil desconhecido: %s"
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Já assinado!"
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1350,11 +1482,15 @@ msgstr "Este anexo não existe."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Nenhuma identificação."
@@ -1371,7 +1507,7 @@ msgstr "Tamanho inválido."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1385,41 +1521,51 @@ msgstr ""
"Você pode enviar seu avatar pessoal. O tamanho máximo do arquivo é de %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Usuário sem um perfil correspondente"
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Configurações do avatar"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Original"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Pré-visualizar"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Excluir"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Enviar"
@@ -1435,31 +1581,78 @@ msgstr "Cortar"
msgid "No file uploaded."
msgstr "Não foi enviado nenhum arquivo."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Selecione uma área quadrada da imagem para ser seu avatar"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Os dados do nosso arquivo foram perdidos."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "O avatar foi atualizado."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Não foi possível atualizar o avatar."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "O avatar foi excluído."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Fazer backup da conta"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr "Apenas usuários autenticados podem fazer backups de suas contas."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "Você não pode fazer backup da sua conta."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+#, fuzzy
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+"Você pode fazer backup dos dados da sua conta no formato de Fluxos de Atividades. Este é um recurso experimental "
+"e fornece um backup incompleto; informações privadas da sua conta, como "
+"endereços de e-mail e de mensagens instantâneas não são copiados. Além "
+"disso, arquivos enviados e mensagens diretas também não entram no backup."
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Fundo"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+#, fuzzy
+msgid "Backup your account."
+msgstr "Fazer backup da conta"
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1467,7 +1660,8 @@ msgstr "Você já bloqueou esse usuário."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Bloquear usuário"
@@ -1491,15 +1685,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Não"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Não bloquear este usuário"
#. TRANS: Button label on the user block form.
@@ -1510,15 +1704,15 @@ msgstr "Não bloquear este usuário"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Sim"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Bloquear este usuário"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1526,31 +1720,6 @@ msgstr "Bloquear este usuário"
msgid "Failed to save block information."
msgstr "Não foi possível salvar a informação de bloqueio."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Esse grupo não existe."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1620,23 +1789,6 @@ msgstr "Tipo de endereço %s não reconhecido."
msgid "That address has already been confirmed."
msgstr "Esse endereço já foi confirmado."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Não foi possível atualizar o usuário."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1661,11 +1813,85 @@ msgid "Conversation"
msgstr "Conversa"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Mensagens"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Apenas usuários autenticados podem repetir mensagens."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Você não pode excluir usuários."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "O avatar foi excluído."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Criar uma conta"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Confirmar"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Você não pode excluir usuários."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Você não pode excluir usuários."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1679,14 +1905,14 @@ msgstr "A aplicação não foi encontrada."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Você não é o dono desta aplicação."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Ocorreu um problema com o seu token de sessão."
@@ -1709,12 +1935,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Não excluir esta aplicação"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Excluir esta aplicação"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1723,8 +1951,10 @@ msgid "You must be logged in to delete a group."
msgstr "Você deve estar autenticado para excluir um grupo."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Nenhum apelido ou identificação."
@@ -1766,24 +1996,32 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+#, fuzzy
+msgid "Do not delete this group."
msgstr "Não excluir este grupo"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+#, fuzzy
+msgid "Delete this group."
msgstr "Excluir este grupo"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Você não está autenticado."
@@ -1810,27 +2048,40 @@ msgstr "Tem certeza que deseja excluir esta mensagem?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Não excluir esta mensagem."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Excluir esta mensagem"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Você não pode excluir usuários."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Você só pode excluir usuários locais."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Excluir usuário"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Excluir usuário"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1838,80 +2089,104 @@ msgstr ""
"Tem certeza que deseja excluir este usuário? Isso eliminará todos os dados "
"deste usuário do banco de dados, sem cópia de segurança."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Não excluir este grupo"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Excluir este usuário"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Aparência"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Configurações da aparência deste site StatusNet."
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "A URL da logo é inválida."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "A URL da logo SSL é inválida."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Tema não disponível: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Alterar a logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Logo do site"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "Logo do SSL"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Alterar o tema"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Tema do site"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Tema para o site."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Tema personalizado"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
"Você pode enviar um tema personalizado para o StatusNet, na forma de um "
"arquivo .zip."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Alterar imagem do fundo"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Fundo"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1921,98 +2196,108 @@ msgstr ""
"arquivo é de %1 $s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Ativado"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Desativado"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Ativar/desativar a imagem de fundo."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Ladrilhar a imagem de fundo"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Alterar a cor"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Conteúdo"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Barra lateral"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Texto"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Links"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avançado"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "CSS personalizado"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Usar o padrão|"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Restaura a aparência padrão"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Restaura de volta ao padrão"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Salvar"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Salvar a aparência"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Esta mensagem não é uma favorita!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Adicionar às favoritas"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "O documento \"%s\" não existe"
#. TRANS: Title for "Edit application" form.
@@ -2027,7 +2312,7 @@ msgid "You must be logged in to edit an application."
msgstr "Você precisa estar autenticado para editar uma aplicação."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Essa aplicação não existe."
@@ -2037,61 +2322,71 @@ msgid "Use this form to edit your application."
msgstr "Use este formulário para editar a sua aplicação."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "O nome é obrigatório."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "O nome é muito extenso (máx. 255 caracteres)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Este nome já está em uso. Tente outro."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "A descrição é obrigatória."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "A URL da fonte é muito extensa."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "A URL da fonte não é válida."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "A organização é obrigatória."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "A organização é muito extensa (máx. 255 caracteres)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "O site da organização é obrigatório."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "O retorno é muito extenso."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "A URL de retorno não é válida."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Não foi possível atualizar a aplicação."
@@ -2102,14 +2397,17 @@ msgid "Edit %s group"
msgstr "Editar o grupo %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Você deve estar autenticado para criar um grupo."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Você deve ser um administrador para editar o grupo."
@@ -2120,63 +2418,65 @@ msgstr "Use esse formulário para editar o grupo."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Apelido inválido: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Não foi possível atualizar o grupo."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Não foi possível criar os apelidos."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "As configurações foram salvas."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Configurações do e-mail"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Configure o recebimento de e-mails de %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Endereço de e-mail"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Endereço de e-mail já confirmado."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Remover"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2189,44 +2489,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Endereço de e-mail, ex: \"usuario@exemplo.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Adicionar"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "E-mail de recebimento"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Eu quero publicar mensagens por e-mail."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Envie e-mails para esse endereço para publicar novas mensagens."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Cria um novo endereço de e-mail para publicar e cancela o antigo."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2234,91 +2534,93 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Novo"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Preferências de e-mail"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Envie-me notificações de novos assinantes por e-mail."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Envie-me um e-mail quando alguém adicionar alguma mensagem minha como "
"favorita."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Envie-me um e-mail quando alguém me mandar uma mensagem particular."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr ""
"Envie-me um e-mail quando alguém mandar uma mensagem citando meu nome "
"(\"@nome\")."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Permita que meus amigos chamem minha atenção e enviem-me e-mails."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publique um MicroID para meu endereço de e-mail."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "As configurações de e-mail foram salvas."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Nenhum endereço de e-mail."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Não foi possível normalizar este endereço de e-mail"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Não é um endereço de e-mail válido."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Esse já é seu endereço de e-mail."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Esse endereço de e-mail já pertence à outro usuário."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Não foi possível inserir o código de confirmação."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2328,90 +2630,106 @@ msgstr ""
"instruções sobre como usá-lo."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Nenhuma confirmação pendente para cancelar."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Esse é o endereço de e-mail errado."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Não foi possível excluir a confirmação de e-mail."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "A confirmação por e-mail foi cancelada."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Esse não é seu endereço de email."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "O endereço de e-mail foi removido."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Nenhum endereço de e-mail para recebimentos."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Não foi possível atualizar o registro do usuário."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "O endereço de e-mail de recebimento foi removido."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr ""
"Foi adicionado um novo endereço de e-mail para recebimento de mensagens."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Essa mensagem já é uma favorita!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Desmarcar a favorita"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Mensagens populares"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Mensagens populares, pág. %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "As etiquetas mais populares no site agora."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"As mensagens favoritas aparecem nesta página, mas ninguém ainda marcou "
"nenhuma como favorita."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2420,7 +2738,9 @@ msgstr ""
"Seja o primeiro a marcar uma mensagem como favorita, clicando no botão "
"próximo a qualquer uma que você goste."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2429,142 +2749,186 @@ msgstr ""
"Por que você não [registra uma conta](%%action.register%%) pra ser o "
"primeiro a adicionar uma mensagem aos favoritos?"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Mensagens favoritas de %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Mensagens favoritas de %1$s no %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Usuários em destaque"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Usuários em destaque, pág. %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Uma seleção de alguns grandes usuários no%s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Sem ID da mensagem."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Nenhuma mensagem."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Nenhum anexo."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Nenhum anexo enviado."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Não esperava por esta resposta!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "O usuário que está está sendo acompanhado não existe."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Você pode usar a assinatura local!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Esse usuário bloqueou o seu pedido de assinatura."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Você não está autorizado."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Não foi possível converter o token de requisição para token de acesso."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "O serviço remoto usa uma versão desconhecida do protocolo OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Ocorreu um erro durante a atualização do perfil remoto."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Esse arquivo não existe."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Não foi possível ler o arquivo."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Papel inválido."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Este papel está reservado e não pode ser definido."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Você não pode definir papéis para os usuários neste site."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "O usuário já possui este papel."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Não foi especificado nenhum perfil."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Não foi encontrado nenhum perfil com esse ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Não foi especificado nenhum grupo."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Somente um administrador pode bloquear usuários no grupo."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "O usuário já está bloqueado no grupo."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "O usuário não é um membro do grupo"
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Bloquear o usuário no grupo"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2576,33 +2940,41 @@ msgstr ""
"futuramente."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Não bloquear este usuário neste grupo"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Bloquear este usuário neste grupo"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
"Ocorreu um erro no banco de dados ao tentar bloquear o usuário no grupo."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Nenhuma ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Você precisa estar autenticado para editar um grupo."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Aparência do grupo"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2610,22 +2982,26 @@ msgstr ""
"Personalize a aparência do grupo com uma imagem de fundo e uma paleta de "
"cores à sua escolha."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Não foi possível atualizar a aparência."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Não foi possível salvar suas configurações de aparência."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "As configurações da aparência foram salvas."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Logo do grupo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2633,100 +3009,116 @@ msgstr ""
"Você pode enviar uma imagem de logo para o seu grupo. O tamanho máximo do "
"arquivo é %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Enviar"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Cortar"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Selecione uma área quadrada da imagem para definir a logo"
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "A logo foi atualizada."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Não foi possível atualizar a logo."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Membros do grupo %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Membros do grupo %1$s, pág. %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Uma lista dos usuários deste grupo."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Admin"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Bloquear"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Bloquear este usuário"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Tornar o usuário um administrador do grupo"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Tornar administrador"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Torna este usuário um administrador"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Atualizações dos membros de %1$s no %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grupos"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Groupos, pág. %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Os grupos de %%%%site.name%%%% lhe permite encontrar e conversar com pessoas "
"que tenham interesses similares. Após associar-se a um grupo, você pode "
@@ -2734,11 +3126,13 @@ msgstr ""
"\". Não encontrou um grupo que lhe agrade? Experimente [procurar por um](%%%%"
"action.groupsearch%%%%) ou [criar o seu próprio!](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Criar um novo grupo"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2747,25 +3141,33 @@ msgstr ""
"Procurar grupos no %%site.name%% por seus nomes, localização ou descrição. "
"Separe os termos com espaços; eles devem ter 3 ou mais caracteres."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Procurar grupos"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Nenhum resultado."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Caso não encontre o grupo que está procurando, você pode [criá-lo](%%action."
"newgroup%%)."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2775,139 +3177,149 @@ msgstr ""
"action.newgroup%%) você mesmo?"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Somente um administrador pode desbloquear membros do grupo."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "O usuário não está bloqueado no grupo."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Erro na remoção do bloqueio."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Configurações do MI"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Você pode enviar e receber mensagens através dos [mensageiros instantâneos](%"
"%doc.im%%) Jabber/GTalk. Configure seu endereço e opções abaixo."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "MI não está disponível"
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Endereço do MI"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Endereço de Jabber/GTalk já confirmado."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Aguardando a confirmação deste endereço. Procure em sua conta de Jabber/"
"GTalk por uma mensagem com mais instruções (Você adicionou %s à sua lista de "
"contatos?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Endereço de Jabber ou GTalk, ex: \"usuario@exemplo.org\". Primeiro, "
"certifique-se de adicionar %s à sua lista de contatos em seu cliente de MI "
"ou no GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Preferências do mensageiro instantâneo"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Envie-me mensagens via Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Publicar uma mensagem quando eu mudar de status no Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Envie-me respostas de pessoas que eu não estou assinando através do Jabber/"
"GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publique um MicroID para meu endereço de Jabber/Gtalk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "As preferências foram salvas."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Nenhuma ID de Jabber."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Não foi possível normalizar essa ID do Jabber"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Não é uma ID de Jabber válida"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Essa já é sua ID do Jabber."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Esta ID do Jabber já pertence à outro usuário."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2916,56 +3328,62 @@ msgstr ""
"Um código de confirmação foi enviado para o endereço de IM que você "
"informou. Você deve permitir que %s envie mensagens para você."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Isso é um endereço de MI errado."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Não foi possível excluir a confirmação do mensageiro instantâneo."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "A confirmação do mensageiro instantâneo foi cancelada."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Essa não é sua ID do Jabber."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "O endereço de mensageiro instantâneo foi removido."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Recebidas por %s - pág. %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Recebidas por %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Essa é a sua caixa de mensagens recebidas, que lista as mensagens "
"particulares que você recebeu."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Os convites foram desabilitados."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2973,18 +3391,18 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Endereço de e-mail inválido: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Os convites foram enviados"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Convidar novos usuários"
@@ -2992,7 +3410,7 @@ msgstr "Convidar novos usuários"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Você já está assinando este usuário:"
@@ -3000,7 +3418,7 @@ msgstr[1] "Você já está assinando estes usuários:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3009,7 +3427,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3019,7 +3437,7 @@ msgstr[1] "Estas pessoas já são usuárias e você as assinou automaticamente:"
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Convite enviado para a seguinte pessoa:"
@@ -3027,7 +3445,7 @@ msgstr[1] "Convites enviados para as seguintes pessoas:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3036,7 +3454,7 @@ msgstr ""
"registrarem neste site. Obrigado por aumentar a comunidade!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3044,27 +3462,28 @@ msgstr ""
"serviço."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Endereços de e-mail"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Endereços dos seus amigos que serão convidados (um por linha)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Mensagem pessoal"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Você pode, opcionalmente, adicionar uma mensagem pessoal ao convite."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Enviar"
@@ -3072,7 +3491,7 @@ msgstr "Enviar"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s convidou você para se juntar a %2$s"
@@ -3082,7 +3501,7 @@ msgstr "%1$s convidou você para se juntar a %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3139,44 +3558,51 @@ msgstr ""
"\n"
"Cordialmente, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Você deve estar autenticado para se associar a um grupo."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s associou-se ao grupo %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Você deve estar autenticado para sair de um grupo."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Você não é um membro desse grupo."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s deixou o grupo %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Licença"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Licença para este site StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Seleção inválida de licença."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3184,131 +3610,140 @@ msgstr ""
"Você deve especificar o proprietário do conteúdo quando usar a licença Todos "
"os Direitos Reservados."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr ""
"O título da licença é inválido. O comprimento máximo é de 255 caracteres."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "A URL da licença é inválida."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "A URL da imagem da licença é inválida."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
"O campo de URL da licença deve estar em branco ou então conter uma URL "
"válida."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
"O campo de iamgem da licença deve estar em branco ou então conter uma URL "
"válida."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Seleção da licença"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Particular"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Todos os Direitos Reservados"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Tipo"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Selecione a licença"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Detalhes da licença"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Proprietário"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Nome do proprietário do conteúdo do site (se aplicável)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Título da licença"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "O título da licença."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL da licença"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL para obter mais informações sobre a licença."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL da imagem da licença"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL de uma imagem a ser exibida com a licença."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Salvar"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Salvar as configurações da licença"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Já está autenticado."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Nome de usuário e/ou senha incorreto(s)."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
"Erro na configuração do usuário. Você provavelmente não tem autorização."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Entrar"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Autenticar-se no site"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Lembrar neste computador"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Entra automaticamente da próxima vez, sem pedir a senha. Não use em "
"computadores compartilhados!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Perdeu ou esqueceu sua senha?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3316,11 +3751,11 @@ msgstr ""
"Por razões de segurança, por favor, digite novamente seu nome de usuário e "
"senha antes de alterar suas configurações."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Autentique-se com seu nome de usuário e senha."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3358,19 +3793,22 @@ msgid "New application"
msgstr "Nova aplicação"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Você deve estar autenticado para registrar uma aplicação."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Utilize este formulário para registrar uma nova aplicação."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "A URL da fonte é obrigatória."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Não foi possível criar a aplicação."
@@ -3379,11 +3817,23 @@ msgstr "Não foi possível criar a aplicação."
msgid "New group"
msgstr "Novo grupo"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Você não tem permissão para excluir este grupo."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Utilize este formulário para criar um novo grupo."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "O apelido não pode ser igual à identificação."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nova mensagem"
@@ -3435,7 +3885,9 @@ msgstr "Nova mensagem"
msgid "Notice posted"
msgstr "A mensagem foi publicada"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3444,16 +3896,21 @@ msgstr ""
"Procurar mensagens no %%site.name%% por seu conteúdo. Separe os termos da "
"busca com espaços; eles devem ter 3 ou mais caracteres."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Procurar por texto"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Resultados da procura para \"%1$s\" no %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3462,7 +3919,9 @@ msgstr ""
"Seja o primeiro a [publicar sobre este tópico](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3472,14 +3931,17 @@ msgstr ""
"primeiro a [publicar sobre este tópico](%%%%action.newnotice%%%%?"
"status_textarea=%s)?"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Mensagens com \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Mensagens correspondentes aos termos \"%1$s\" no %2$s!"
#: actions/nudge.php:85
@@ -3520,30 +3982,30 @@ msgid "You have not registered any applications yet."
msgstr "Você ainda não registrou nenhuma aplicação."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Aplicações conectadas"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "Existem as seguintes conexões para a sua conta."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Você não é um usuário dessa aplicação."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Não foi possível revogar o acesso para a aplicação: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3552,14 +4014,14 @@ msgstr ""
"O acesso de %1$s e do token iniciado por %2$s foi revogado com sucesso."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Você não autorizou nenhuma aplicação a usar a sua conta."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3568,6 +4030,16 @@ msgstr ""
"Você é um desenvolvedor? [Registre uma aplicação cliente OAuth](%s) para "
"usar com esta instância do StatusNet."
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "O método da API não foi encontrado!"
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "A mensagem pai não foi encontrada."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "A mensagem não está associada a nenhum perfil."
@@ -3577,6 +4049,16 @@ msgstr "A mensagem não está associada a nenhum perfil."
msgid "%1$s's status on %2$s"
msgstr "Mensagem de %1$s no %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "O usuário destinatário não foi encontrado."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3590,16 +4072,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Por favor, somente URLs %s sobre HTTP puro."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Não é um formato de dados suportado."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Procurar pessoas"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Procurar mensagens"
@@ -3613,68 +4096,79 @@ msgid "Manage various other options."
msgstr "Gerencia várias outras opções."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (serviço livre)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Encolher URLs com"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Serviço de encolhimento automático a ser utilizado."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Visualizar aparências do perfil"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Exibir ou esconder as aparências do perfil."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "O serviço de encolhimento de URL é muito extenso (máx. 50 caracteres)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Não foi especificado nenhum ID de usuário."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Não foi especificado nenhum token de autenticação."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Não foi requerido nenhum token de autenticação."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "O token de autenticação especificado é inválido."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "O token de autenticação expirou."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Enviadas por %s - pág. %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Enviadas de %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Essa é a sua caixa de mensagens enviadas, que lista as mensagens "
@@ -3688,7 +4182,8 @@ msgstr "Alterar a senha"
msgid "Change your password."
msgstr "Altere a sua senha"
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Alterar a senha"
@@ -3696,48 +4191,50 @@ msgstr "Alterar a senha"
msgid "Old password"
msgstr "Senha anterior"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Senha nova"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "No mínimo 6 caracteres"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Confirmar"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Igual à senha acima"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Alterar"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "A senha deve ter, no mínimo, 6 caracteres."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "As senhas não coincidem."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "A senha anterior está errada"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Erro ao salvar usuário; inválido."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Não é possível salvar a nova senha."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "A senha foi salva."
@@ -3944,7 +4441,7 @@ msgstr "Diretório onde os planos de fundo estão localizados."
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Anexos"
@@ -4012,7 +4509,9 @@ msgstr "Servidor para onde devem ser direcionadas as requisições SSL."
msgid "Save paths"
msgstr "Salvar caminhos"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4021,7 +4520,8 @@ msgstr ""
"Procurar pessoas no %%site.name%% por seus nomes, localidade ou interesses. "
"Separe os termos da busca com espaços; eles devem ter 3 ou mais caracteres."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Procurar pessoas"
@@ -4046,12 +4546,12 @@ msgstr ""
"A licença ‘%1$s’ da mensagem não é compatível com a licença ‘%2$s’ do site."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Configurações do perfil"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4059,39 +4559,40 @@ msgstr ""
"saibam mais sobre você."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Informações do perfil"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Nome completo"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Site"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL do seu site, blog ou perfil em outro site."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4099,81 +4600,88 @@ msgstr[0] "Descreva a si mesmo e os seus interesses em %d caractere"
msgstr[1] "Descreva a si mesmo e os seus interesses em %d caracteres"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Descreva a si mesmo e os seus interesses"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Descrição"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Localização"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Onde você está, ex: \"cidade, estado (ou região), país\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Compartilhe minha localização atual ao publicar mensagens"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Etiquetas"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou "
"espaços"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Idioma"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Idioma preferencial"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Fuso horário"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Em que fuso horário você normalmente está?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Assinar automaticamente à quem me assinar (melhor para perfis não humanos)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4181,49 +4689,53 @@ msgstr[0] "A descrição é muito extensa (máximo %d caractere)."
msgstr[1] "A descrição é muito extensa (máximo %d caracteres)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "O fuso horário não foi selecionado."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Etiqueta inválida: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Não foi possível atualizar o usuário para assinar automaticamente."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Não foi possível salvar as preferências de localização."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Não foi possível salvar o perfil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Não foi possível salvar as etiquetas."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "As configurações foram salvas."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Criar uma conta"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4298,6 +4810,12 @@ msgstr ""
"Este é %%site.name%%, um serviço de [microblog](http://pt.wikipedia.org/wiki/"
"Microblogging) baseado no software livre [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s mensagens de todo mundo!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4343,36 +4861,44 @@ msgstr ""
msgid "Tag cloud"
msgstr "Nuvem de etiquetas"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Você já está autenticado!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Esse código de recuperação não existe."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Não é um código de recuperação"
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Código de recuperação para usuário desconhecido."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Erro com o código de confirmação."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Este código de confirmação é muito antigo. Por favor inicie novamente."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr ""
"Não foi possível atualizar o usuário com o endereço de e-mail confirmado."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4380,69 +4906,102 @@ msgstr ""
"Se você esqueceu ou perdeu a sua senha, você pode receber uma nova no "
"endereço de e-mail que cadastrou na sua conta."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Você foi identificado. Digite uma nova senha abaixo. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Você foi identificado. Digite uma nova senha abaixo."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Recuperação de senha"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Identificação ou endereço de e-mail"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Sua identificação neste servidor, ou seu e-mail cadastrado."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Recuperar"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Recuperar"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Restaurar a senha"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Recuperar a senha"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Foi solicitada a recuperação da senha"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "A senha foi salva."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Ação desconhecida"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "No mínimo 6 caracteres. E não se esqueça dela!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Restaurar"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Digite a identificação ou endereço de e-mail."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr ""
"Não foi encontrado nenhum usuário com essa identificação ou endereço de "
"email."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Nenhum endereço de e-mail registrado para esse usuário."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Erro ao salvar o endereço de confirmação."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4450,100 +5009,97 @@ msgstr ""
"As instruções para recuperar a sua senha foram enviadas para o endereço de e-"
"mail informado no seu cadastro."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Restauração inesperada da senha."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "A senha deve ter 6 ou mais caracteres."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "A senha e a confirmação não coincidem."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Erro na configuração do usuário."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr ""
"A nova senha foi salva com sucesso. A partir de agora você já está "
"autenticado."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Desculpe, mas somente convidados podem se registrar."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Desculpe, mas o código do convite é inválido."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registro realizado com sucesso"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registrar-se"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Não é permitido o registro."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Você não pode se registrar se não aceitar a licença."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "O endereço de e-mail já existe."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Nome de usuário e/ou senha inválido(s)"
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Através deste formulário você pode criar uma nova conta. A partir daí você "
"pode publicar mensagens e se conectar a amigos e colegas. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 letras minúsculas ou números, sem pontuação ou espaços. Obrigatório."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "No mínimo 6 caracteres. Obrigatório."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Igual à senha acima. Obrigatório."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-mail"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Usado apenas para atualizações, anúncios e recuperações de senha"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Nome completo, de preferência seu nome \"real\""
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL do seu site, blog ou perfil em outro site"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Onde você está, ex: \"cidade, estado (ou região), país\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
@@ -4551,23 +5107,23 @@ msgstr ""
"Eu entendo que o conteúdo e os dados de %1$s são particulares e "
"confidenciais."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Meus textos e arquivos estão licenciados sob a %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Meus textos e arquivos permanecem sob meus próprios direitos autorais."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Todos os direitos reservados."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4577,7 +5133,7 @@ msgstr ""
"particulares: senha, endereço de e-mail, endereço do mensageiro instantâneo "
"e número de telefone."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4610,7 +5166,7 @@ msgstr ""
"\n"
"Obrigado por se registrar e esperamos que você aproveite o serviço."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4618,7 +5174,7 @@ msgstr ""
"(Você receberá uma mensagem por e-mail a qualquer momento, com instruções "
"sobre como confirmar seu endereço.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4630,78 +5186,87 @@ msgstr ""
"microblog compatível](%%doc.openmublog%%), informe a URL do seu perfil "
"abaixo."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Assinatura remota"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Assinar um usuário remoto"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Identificação do usuário"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Identificação do usuário que você quer seguir"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL do perfil"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "URL do seu perfil em outro serviço de microblog compatível"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Assinar"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "A URL do perfil é inválida (formato inválido)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Não é uma URL de perfil válida (nenhum documento YADIS ou XRDS inválido)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Esse é um perfil local! Autentique-se para assinar."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Não foi possível obter um token de requisição."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Apenas usuários autenticados podem repetir mensagens."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Não foi especificada nenhuma mensagem."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Você não pode repetir sua própria mensagem."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Você já repetiu essa mensagem."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Repetida"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Repetida!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Respostas para %s"
@@ -4753,11 +5318,106 @@ msgstr ""
"Seja o primeiro a [publicar sobre este tópico](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Respostas para %1$s no %2$s"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Apenas usuários autenticados podem repetir mensagens."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Você ainda não registrou nenhuma aplicação."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Enviar arquivo"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"O arquivo a ser enviado é maior do que o limite definido no parâmetro "
+"upload_max_filesize do php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"O arquivo a ser enviado é maior do que o limite definido no parâmetro "
+"MAX_FILE_SIZE do formulário HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "O arquivo foi apenas parcialmente enviado."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Falta uma pasta temporária."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Erro ao salvar o arquivo no disco."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "O arquivo a ser enviado foi barrado por causa de sua extensão."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Erro no sistema durante o envio do arquivo."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Todos os membros"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Enviar arquivo"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Não é possível revogar os papéis dos usuários neste site."
@@ -4766,7 +5426,7 @@ msgstr "Não é possível revogar os papéis dos usuários neste site."
msgid "User doesn't have this role."
msgstr "O usuário não possui este papel."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4808,85 +5468,87 @@ msgstr "Ativa a saída de depuração para as sessões."
msgid "Save site settings"
msgstr "Salvar as configurações do site"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Você deve estar autenticado para visualizar uma aplicação."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Perfil da aplicação"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Ícone"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Nome"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organização"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Descrição"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Estatísticas"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Criado por %1$s - acesso %2$s por padrão - %3$d usuários"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Ações da aplicação"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Restaurar a chave e o segredo"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Excluir"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Informação da aplicação"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Chave do consumidor"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Segredo do consumidor"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL do token de requisição"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL do token de acesso"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Autorizar a URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4894,35 +5556,42 @@ msgstr ""
"Nota: Nós suportamos assinaturas HMAC-SHA1. Nós não suportamos o método de "
"assinatura em texto plano."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Tem certeza que deseja restaurar sua chave e segredo de consumidor?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Mensagens favoritas de %1$s, pág. %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Não foi possível recuperar as mensagens favoritas."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Fonte para favoritas de %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Fonte para favoritas de %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Fonte para favoritas de %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4931,7 +5600,9 @@ msgstr ""
"\"Favorita\" nas mensagens que você quer guardar para referência futura ou "
"para destacar."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4940,7 +5611,10 @@ msgstr ""
"%s ainda não adicionou nenhuma nota às favoritas. Publique algo interessante "
"para que as pessoas as marcarem como favorita. :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4950,7 +5624,8 @@ msgstr ""
"Por que você não [registra uma conta](%%action.register%%) pra ser o "
"primeiro a adicionar uma mensagem aos favoritos?"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Esta é uma forma de compartilhar o que você gosta."
@@ -4968,81 +5643,88 @@ msgid "%1$s group, page %2$d"
msgstr "Grupo %1$s, pág. %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Perfil do grupo"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "Site"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Mensagem"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Apelidos"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Ações do grupo"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Fonte de mensagens do grupo %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Fonte de mensagens do grupo %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Fonte de mensagens do grupo %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF para o grupo %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Membros"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Nenhum)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Todos os membros"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Criado"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Membros"
@@ -5051,7 +5733,7 @@ msgstr "Membros"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5070,7 +5752,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5084,30 +5766,30 @@ msgstr ""
"sobre suas vidas e interesses. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administradores"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Essa mensagem não existe."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Apenas o remetente e o destinatário podem ler esta mensagem."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Mensagem para %1$s no %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Mensagem de %1$s no %2$s"
@@ -5123,7 +5805,7 @@ msgid "%1$s tagged %2$s"
msgstr "Mensagens de %1$s etiquetadas como %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5374,74 +6056,76 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Salvar os avisos do site"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Configuração do SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Você pode receber mensagens SMS de %%site.name%% através do e-mail."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS não está disponível."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "Endereço de SMS"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Número de telefone já habilitado para receber SMS."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Aguardando a confirmação deste número de telefone."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Código de confirmação"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Informe o código que você recebeu no seu telefone."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Confirmar"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Telefone para SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Número de telefone, sem pontuação ou espaços, com código de área"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Preferências do SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5450,32 +6134,32 @@ msgstr ""
"exorbitantes da minha operadora."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "As preferências do SMS foram salvas."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Nenhum número de telefone."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Não foi selecionada nenhuma operadora."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Esse já é seu número de telefone."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Esse número de telefone já pertence à outro usuário."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5484,39 +6168,39 @@ msgstr ""
"informou. Verifique no seu telefone o código e instruções sobre como usá-lo."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Isso é um número de confirmação errado."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "A confirmação do SMS foi cancelada."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Esse não é seu número de telefone."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "O número de telefone para SMS foi removido."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Operadora de celular"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Selecione uma operadora"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5526,8 +6210,9 @@ msgstr ""
"e-mail que não está listada aqui, informe-nos enviando uma mensagem para %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Não foi digitado nenhum código"
#. TRANS: Menu item for site administration
@@ -5599,15 +6284,19 @@ msgstr "Você não está assinando esse perfil."
msgid "Could not save subscription."
msgstr "Não foi possível salvar a assinatura."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Esta ação aceita somente requisições POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Não é possível assinar um perfil OMB 0.1 remoto com essa ação."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Assinado"
@@ -5639,7 +6328,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Estas são as pessoas que acompanham as mensagens de %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5649,7 +6338,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s não possui nenhum assinante. Quer ser o(a) primeiro(a)?"
@@ -5659,7 +6348,7 @@ msgstr "%s não possui nenhum assinante. Quer ser o(a) primeiro(a)?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5692,7 +6381,7 @@ msgstr "Estas são as pessoas cujas mensagens %s acompanha."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5712,23 +6401,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s não está acompanhando ninguém."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Fonte de mensagens de %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5761,12 +6451,15 @@ msgstr "Nenhum argumento de ID."
msgid "Tag %s"
msgstr "Etiqueta %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Perfil do usuário"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Imagem"
@@ -5782,15 +6475,16 @@ msgstr ""
"Etiquetas para este usuário (letras, números, -, ., e _), separadas por "
"vírgulas ou espaços"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Etiqueta inválida: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
msgstr "Você só pode etiquetar pessoas às quais assina ou que assinam você."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Não foi possível salvar as etiquetas."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5801,6 +6495,7 @@ msgstr ""
msgid "No such tag."
msgstr "Esta etiqueta não existe."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Você não bloqueou esse usuário."
@@ -5821,7 +6516,7 @@ msgstr "A requisição não possui nenhuma ID de perfil."
msgid "Unsubscribed"
msgstr "Cancelado"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5854,13 +6549,12 @@ msgstr ""
#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
-#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+#, fuzzy, php-format
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Assinatura padrão inválida: '%1$s' não é um usuário."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Perfil"
@@ -5916,55 +6610,71 @@ msgstr "Define se os usuários podem ou não convidar novos usuários."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "Salvar as configurações de usuário"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Autorizar a assinatura"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Por favor, verifique estes detalhes para ter certeza que você quer assinar "
"as mensagens deste usuário. Se você não solicitou assinar as mensagens de "
"alguém, clique em \"Recusar\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licença"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Aceitar"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Assinar este usuário"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Recusar"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Recusar esta assinatura"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Nenhum pedido de autorização!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "A assinatura foi autorizada"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5974,11 +6684,12 @@ msgstr ""
"Verifique as instruções do site para detalhes sobre como autorizar a "
"assinatura. Seu token de assinatura é:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "A assinatura foi recusada"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5988,48 +6699,73 @@ msgstr ""
"Verifique as instruções do site para detalhes sobre como rejeitar "
"completamente a assinatura."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "A URI ‘%s’ do usuário não foi encontrada aqui."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "A URI ‘%s’ do usuário é muito extensa."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "A URI ‘%s’ é de um usuário local."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "A URL ‘%s’ do perfil é de um usuário local."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"A licença '%1$s' do fluxo do usuário não é compatível com a licença '%2$s' "
+"do site."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "A URL ‘%s’ do avatar não é válida."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Não é possível ler a URL '%s' do avatar."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Tipo de imagem errado para a URL '%s' do avatar."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Aparência do perfil"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6037,7 +6773,7 @@ msgstr ""
"Personalize a aparência do seu perfil, com uma imagem de fundo e uma paleta "
"de cores da sua preferência."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Aproveite o seu cachorro-quente!"
@@ -6069,7 +6805,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Mensagens de %1$s no %2$s!"
@@ -6130,7 +6866,7 @@ msgid "Plugins"
msgstr "Plugins"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Versão"
@@ -6139,32 +6875,32 @@ msgid "Author(s)"
msgstr "Autor(es)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Tornar favorita"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s marcou a mensagem %2$s como favorita."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Não é possível processar a URL '$s'"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "o Robin acha que algo é impossível."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6181,7 +6917,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6190,7 +6926,7 @@ msgstr[1] "Um arquivo deste tamanho excederá a sua conta de %d bytes."
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6198,7 +6934,7 @@ msgstr[0] "Um arquivo deste tamanho excederá a sua conta mensal de %d bytes."
msgstr[1] "Um arquivo deste tamanho excederá a sua conta mensal de %d bytes."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Nome de arquivo inválido."
@@ -6256,7 +6992,7 @@ msgid "Could not create login token for %s"
msgstr "Não foi possível criar o token de autenticação para %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Não foi encontrado nenhum nome de base de dados ou DSN."
@@ -6283,23 +7019,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Não existe o perfil (%1$d) para a nota (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Erro no banco de dados durante a inserção da hashtag: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problema no salvamento da mensagem. Ela é muito extensa."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problema no salvamento da mensagem. Usuário desconhecido."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6307,7 +7043,7 @@ msgstr ""
"novamente daqui a alguns minutos."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6316,43 +7052,43 @@ msgstr ""
"publique novamente daqui a alguns minutos."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Você está proibido de publicar mensagens neste site."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problema no salvamento da mensagem."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
#, fuzzy
msgid "Bad type provided to saveKnownGroups."
msgstr "O tipo fornecido ao método saveKnownGroups é incorreto"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problema no salvamento das mensagens recebidas do grupo."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Não foi possível salvar a informação do grupo local."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6360,14 +7096,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "Não é possível revogar a função \"%1$s\" do usuário #%2$d; não existe."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6439,35 +7175,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Bem vindo(a) a %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Nenhum usuário definido para o modo de usuário único."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Não foi possível criar o grupo."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Não foi possível definir a URI do grupo."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Não foi possível configurar a associação ao grupo."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Não foi possível salvar a informação do grupo local."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Você não pode excluir usuários."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6504,211 +7261,214 @@ msgid "Other"
msgstr "Outras"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Página sem título"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Navegação primária no site"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Perfil pessoal e fluxo de mensagens dos amigos"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Pessoal"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Altere seu e-mail, avatar, senha, perfil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Conta"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Conecte-se a outros serviços"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Conectar"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Altere as configurações do site"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Administrar"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Convide seus amigos e colegas para unir-se a você no %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Convidar"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Sair do site"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Sair"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Criar uma conta"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registrar-se"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Autentique-se no site"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Entrar"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Ajudem-me!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Ajuda"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Procure por pessoas ou textos"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Pesquisar"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Avisos do site"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Visualizações locais"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Notícia da página"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Navegação secundária no site"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Ajuda"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Sobre"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Termos de uso"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Privacidade"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Fonte"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Contato"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Mini-aplicativo"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Licença do software StatusNet"
@@ -6716,7 +7476,7 @@ msgstr "Licença do software StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6726,7 +7486,7 @@ msgstr ""
"broughtby%%](%%site.broughtbyurl%%). "
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** é um serviço de microblog."
@@ -6735,7 +7495,7 @@ msgstr "**%%site.name%%** é um serviço de microblog."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6747,26 +7507,26 @@ msgstr ""
"fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licença do conteúdo do site"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "O conteúdo e os dados de %1$s são privados e confidenciais."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr "Conteúdo e dados licenciados sob %1$s. Todos os direitos reservados."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Conteúdo e dados licenciados pelos colaboradores. Todos os direitos "
@@ -6774,25 +7534,25 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "Todo o conteúdo e dados de %1$s estão disponíveis sob a licença %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Paginação"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Próximo"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Anterior"
@@ -6803,10 +7563,80 @@ msgstr ""
"Era esperado um elemento raiz da fonte, mas foi obtido o documento XML "
"inteiro."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Idioma \"%s\" desconhecido."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Imagem"
+msgid "Cannot force remote user to subscribe."
+msgstr "Especifique o nome do usuário que será assinado."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Tipo de arquivo desconhecido"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Você já é membro desse grupo."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Encontre conteúdo de mensagens"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Este usuário não existe."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6878,7 +7708,7 @@ msgid "User configuration"
msgstr "Configuração do usuário"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Usuário"
@@ -6924,19 +7754,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Não foi encontrado nenhuma aplicação para essa chave de consumidor."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Token de acesso incorreto."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Nenhum usuário para esse código."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Não foi possível autenticá-lo."
@@ -6959,29 +7793,34 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Não foi possível inserir a mensagem."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr ""
"Erro no banco de dados durante a inserção do usuário da aplicativo OAuth."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr ""
+"Erro no banco de dados durante a inserção do usuário da aplicativo OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Tentou revogar um código desconhecido."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Falha ao eliminar código revogado."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Ícone para esta aplicação"
@@ -7093,17 +7932,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Revogar"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Não excluir este grupo"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Autor"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Operadora"
@@ -7134,6 +7979,11 @@ msgstr "Não é permitido alterar a senha"
msgid "Block"
msgstr "Bloquear"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Bloquear este usuário"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7249,7 +8099,7 @@ msgstr "Nome completo: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Localização: %s"
@@ -7257,7 +8107,7 @@ msgstr "Localização: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Site: %s"
@@ -7534,26 +8384,26 @@ msgstr ""
"tracking - não implementado ainda\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Não foi encontrado nenhum arquivo de configuração. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Eu procurei pelos arquivos de configuração nos seguintes lugares: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Você pode querer executar o instalador para corrigir isto."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Ir para o instalador."
@@ -7597,14 +8447,19 @@ msgstr "Aplicações autorizadas conectadas"
msgid "Database error"
msgstr "Erro no banco de dados"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Excluir este usuário"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Enviar arquivo"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7624,26 +8479,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Desativado"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Restaurar"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Alterar a cor"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Usar o padrão|"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Restaura a aparência padrão"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Restaura de volta ao padrão"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Salvar a aparência"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Não foi possível atualizar a aparência."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "A aparência padrão foi restaurada."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Não foi possível revogar o acesso para a aplicação: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Excluir das favoritas"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Desmarcar a favorita"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Acrescentar às favoritas"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Tornar favorita"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7660,6 +8563,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Todos os membros"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7694,27 +8610,27 @@ msgstr "Ir"
msgid "Grant this user the \"%s\" role"
msgstr "Associa o papel \"%s\" a este usuário"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
-msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços"
+msgstr "1-64 letras minúsculas ou números, sem pontuações ou espaços."
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL para o site ou blog do grupo ou tópico"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Descreva o grupo ou tópico"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Descreva o grupo ou tópico em %d caracteres."
msgstr[1] "Descreva o grupo ou tópico em %d caracteres."
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
@@ -7722,7 +8638,7 @@ msgstr ""
"Localização do grupo, caso tenha alguma, como \"cidade, estado (ou região), "
"país\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7829,40 +8745,41 @@ msgstr "Etiquetas nas mensagens do grupo %s"
msgid "This page is not available in a media type you accept"
msgstr "Esta página não está disponível em um tipo de mídia que você aceita"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Formato de imagem não suportado."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "O arquivo é muito grande. O tamanho máximo é de %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Envio parcial."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Erro no sistema durante o envio do arquivo."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Imagem inválida ou arquivo corrompido."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Nosso arquivo foi perdido."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Tipo de arquivo desconhecido"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7870,7 +8787,7 @@ msgstr[0] "Mb"
msgstr[1] "Mb"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7878,7 +8795,7 @@ msgstr[0] "Kb"
msgstr[1] "Kb"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7899,23 +8816,25 @@ msgstr "Fonte da caixa de entrada desconhecida %d."
msgid "Leave"
msgstr "Sair"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Autentique-se com um nome de usuário e uma senha"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Cadastre-se para uma nova conta"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Confirmação do endereço de e-mail"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7946,14 +8865,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s agora está acompanhando suas mensagens no %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7968,7 +8887,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7995,14 +8914,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Descrição: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Novo endereço de e-mail para publicar no %s"
@@ -8010,7 +8929,7 @@ msgstr "Novo endereço de e-mail para publicar no %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8033,19 +8952,19 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "Mensagem de %s"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Confirmação de SMS"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
@@ -8054,15 +8973,15 @@ msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "Você teve a atenção chamada por %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8091,7 +9010,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nova mensagem particular de %s"
@@ -8100,7 +9019,7 @@ msgstr "Nova mensagem particular de %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8135,7 +9054,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) marcou sua mensagem como favorita"
@@ -8145,7 +9064,7 @@ msgstr "%s (@%s) marcou sua mensagem como favorita"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8183,7 +9102,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8196,7 +9115,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) enviou uma mensagem citando você"
@@ -8207,7 +9126,7 @@ msgstr "%s (@%s) enviou uma mensagem citando você"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8257,11 +9176,11 @@ msgstr ""
"\n"
"P.S.: Você pode cancelar a notificações por e-mail aqui: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "As caixas postais são legíveis somente pelo seu próprio usuário."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8270,10 +9189,6 @@ msgstr ""
"privadas para envolver outras pessoas em uma conversa. Você também pode "
"receber mensagens privadas."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "de"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Não foi possível analisar a mensagem."
@@ -8302,42 +9217,6 @@ msgstr ""
"Ocorreu um erro no banco de dados durante o salvamento do seu arquivo. Por "
"favor, tente novamente."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"O arquivo a ser enviado é maior do que o limite definido no parâmetro "
-"upload_max_filesize do php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"O arquivo a ser enviado é maior do que o limite definido no parâmetro "
-"MAX_FILE_SIZE do formulário HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "O arquivo foi apenas parcialmente enviado."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Falta uma pasta temporária."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Erro ao salvar o arquivo no disco."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "O arquivo a ser enviado foi barrado por causa de sua extensão."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8358,7 +9237,7 @@ msgstr "Não foi possível determinar o tipo MIME do arquivo."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8369,7 +9248,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "\"%s\" não é um tipo de arquivo suportado neste servidor."
@@ -8403,20 +9282,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Enviar"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Mensagem"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "de"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"A identificação deve conter apenas letras minúsculas e números e não pode "
"ter e espaços."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8432,11 +9320,11 @@ msgstr "Enviar uma mensagem"
msgid "What's up, %s?"
msgstr "E aí, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Anexo"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Anexar um arquivo"
@@ -8457,55 +9345,59 @@ msgstr ""
"esperado. Por favor, tente novamente mais tarde."
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "L"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "O"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "em"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "no contexto"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Repetida por"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Responder a esta mensagem"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Responder"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Excluir esta mensagem"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Mensagem repetida"
@@ -8542,77 +9434,113 @@ msgstr "Nota duplicada."
msgid "Couldn't insert new subscription."
msgstr "Não foi possível inserir a nova assinatura."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Pessoal"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Respostas"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Perfil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favoritos"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Recebidas"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Suas mensagens recebidas"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Enviadas"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Suas mensagens enviadas"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Etiquetas nas mensagens de %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Desconhecido"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Assinaturas"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Todas as assinaturas"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Assinantes"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Todos os assinantes"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID do usuário"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Membro desde"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grupos"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Média diária"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Todos os grupos"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Método não implementado."
@@ -8659,7 +9587,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Revoga o papel \"%s\" deste usuário"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "O método da API não foi encontrado!"
@@ -8750,6 +9678,10 @@ msgstr "Convidar"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Convide seus amigos e colegas para unir-se a você no %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Assinar este usuário"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8866,64 +9798,81 @@ msgstr "Cancelar"
msgid "User %1$s (%2$d) has no profile record."
msgstr "O usuário não tem perfil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Editar o avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Ações do usuário"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Exclusão do usuário em andamento..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Editar as configurações do perfil"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Editar"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Enviar uma mensagem para este usuário."
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Mensagem"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderar"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Papel do usuário"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administrador"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderador"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Você não está autenticado."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "alguns segundos atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "cerca de 1 minuto atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8931,12 +9880,12 @@ msgstr[0] "há cerca de um minuto atrás"
msgstr[1] "há cerca de %d minutos atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "cerca de 1 hora atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8944,12 +9893,12 @@ msgstr[0] "há cerca de uma hora atrás"
msgstr[1] "há cerca de %d horas atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "cerca de 1 dia atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8957,12 +9906,12 @@ msgstr[0] "há cerca de um dia atrás"
msgstr[1] "há cerca de %d dias atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "cerca de 1 mês atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8970,18 +9919,13 @@ msgstr[0] "há cerca de um mês atrás"
msgstr[1] "há cerca de %d meses atrás"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "cerca de 1 ano atrás"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s não é uma cor válida!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s não é uma cor válida! Utilize 3 ou 6 caracteres hexadecimais."
@@ -9004,32 +9948,18 @@ msgstr[1] ""
"A mensagem é muito extensa - o máximo são %1$d caracteres e você enviou %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Tamanho inválido."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Não foi especificado nenhum ID de usuário."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po
index 24f81e72af..8530c5e105 100644
--- a/locale/ru/LC_MESSAGES/statusnet.po
+++ b/locale/ru/LC_MESSAGES/statusnet.po
@@ -1,9 +1,12 @@
# Translation of StatusNet - Core to Russian (Русский)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
+# Author: AVRS
# Author: Brion
# Author: Eleferen
+# Author: Haffman
# Author: Kirill
+# Author: Lionbeat
# Author: Lockal
# Author: Putnik
# Author: Rubin
@@ -15,18 +18,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:12+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:36+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -82,8 +85,9 @@ msgid "Save access settings"
msgstr "Сохранить настройки доступа"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -93,13 +97,13 @@ msgstr "Сохранить настройки доступа"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Сохранить"
@@ -107,7 +111,7 @@ msgstr "Сохранить"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Нет такой страницы."
@@ -117,6 +121,8 @@ msgstr "Нет такой страницы."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -132,13 +138,23 @@ msgstr "Нет такой страницы."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -146,15 +162,15 @@ msgstr "Нет такой страницы."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Нет такого пользователя."
@@ -168,9 +184,10 @@ msgstr "%1$s и друзья, страница %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s и друзья"
@@ -283,7 +300,7 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -317,7 +334,21 @@ msgstr ""
"none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Не удаётся обновить пользователя."
@@ -327,18 +358,23 @@ msgstr "Не удаётся обновить пользователя."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "У пользователя нет профиля."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Не удаётся сохранить профиль."
@@ -348,8 +384,8 @@ msgstr "Не удаётся сохранить профиль."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -372,13 +408,14 @@ msgstr[2] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Не удаётся сохранить ваши настройки оформления!"
@@ -386,48 +423,59 @@ msgstr "Не удаётся сохранить ваши настройки оф
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Не удаётся обновить ваше оформление."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "Главная"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "Лента %s"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Подписки %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Любимое"
+msgstr "Любимые записи %s"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
msgstr "Участники группы %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Вы не можете заблокировать самого себя!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Неудача при блокировке пользователя."
@@ -484,7 +532,8 @@ msgstr "Получатель не найден."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
"Не удаётся посылать прямые сообщения пользователям, которые не являются "
"Вашими друзьями."
@@ -509,8 +558,9 @@ msgid "This status is already a favorite."
msgstr "Этот статус уже входит в число любимых."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Не удаётся создать любимую запись."
@@ -520,7 +570,8 @@ msgid "That status is not a favorite."
msgstr "Этот статус не входит в число ваших любимых."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Не удаётся удалить любимую запись."
@@ -567,9 +618,9 @@ msgstr "Не удаётся найти целевого пользователя
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое."
@@ -577,21 +628,22 @@ msgstr "Такое имя уже используется. Попробуйте
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Неверное имя."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "URL Главной страницы неверен."
@@ -599,23 +651,24 @@ msgstr "URL Главной страницы неверен."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Полное имя слишком длинное (максимум 255 символов)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -627,9 +680,9 @@ msgstr[2] "Слишком длинное описание (максимум %d
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Слишком длинное месторасположение (максимум 255 символов)."
@@ -639,8 +692,8 @@ msgstr "Слишком длинное месторасположение (мак
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -658,18 +711,16 @@ msgstr "Ошибочный псевдоним: «%s»."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Алиас «%s» уже используется. Попробуйте какой-нибудь другой."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Алиас не может совпадать с именем."
@@ -680,28 +731,32 @@ msgstr "Алиас не может совпадать с именем."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Группа не найдена."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Вы уже являетесь членом этой группы."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Вы заблокированы из этой группы администратором."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Не удаётся присоединить пользователя %1$s к группе %2$s."
@@ -713,9 +768,11 @@ msgstr "Вы не являетесь членом этой группы."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -752,7 +809,7 @@ msgid "Upload failed."
msgstr "Загрузка не удалась."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Недопустимый ключ запроса или верификатор."
@@ -772,20 +829,25 @@ msgid "Request token already authorized."
msgstr "Ключ запроса уже авторизован."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Проблема с вашим ключом сессии. Пожалуйста, попробуйте ещё раз."
@@ -802,18 +864,22 @@ msgstr "Ошибка базы данных при вставке oauth_token_ass
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Нетиповое подтверждение формы."
@@ -864,29 +930,31 @@ msgstr "Аккаунт"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Имя"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Пароль"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -960,6 +1028,7 @@ msgstr "Вы не можете удалять статус других поль
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -979,38 +1048,50 @@ msgstr "Невозможно повторить собственную запи
msgid "Already repeated that notice."
msgstr "Запись уже повторена."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "HTTP-метод не поддерживается."
-#: actions/apistatusesshow.php:141
-#, php-format
-msgid "Unsupported format: %s"
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
+#, fuzzy, php-format
+msgid "Unsupported format: %s."
msgstr "Неподдерживаемый формат: %s"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Статус удалён."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Не найдено статуса с таким ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Можно удалить только в формате Atom."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "Не удаётся удалить эту запись."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "Запись %d удалена"
@@ -1069,7 +1150,7 @@ msgstr "Обновления %1$s, отмеченные как любимые %2
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Не удаётся сгенерировать информацию о группе: %s"
@@ -1090,13 +1171,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s обновил этот ответ на сообщение: %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "Общая лента %s"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "Обновления %s от всех!"
@@ -1140,212 +1222,267 @@ msgstr "Только пользователь может добавлять в
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
-msgstr "Принимать только AtomPub для atom-каналов."
+msgstr "Принимать только AtomPub для каналов Atom."
-#: actions/apitimelineuser.php:310
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr "POST-запрос Atom должен быть объектом Atom."
+msgstr "POST-запрос Atom не может быть пустым."
-#: actions/apitimelineuser.php:315
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr "POST-запрос Atom должен быть объектом Atom."
+msgstr "POST-запрос Atom должен быть корректным документом XML."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr "POST-запрос Atom должен быть объектом Atom."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
-#, fuzzy
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr "Возможна обработка только POST-запросов."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
-#, fuzzy, php-format
+#: actions/apitimelineuser.php:345
+#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr "Невозможно обработать действия объекта типа «%s»"
+msgstr "Невозможно обработать действия объекта типа «%s»."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Найти запись по содержимому"
+msgstr "Нет содержания для записи %d."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Запись с URI «%s» уже существует."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr "Запись AtomPub с неизвестным целевым URI %s"
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "Метод API реконструируется."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Метод API не найден."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Нет такого профиля."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Не удаётся вставить новую подписку."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-#, fuzzy
-msgid "Can only handle Favorite activities."
-msgstr "Возможна обработка только POST-запросов."
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Возможна обработка только POST-запросов."
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Неизвестно"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Добавить в любимые"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "Нет такого профиля."
-#: actions/atompubmembershipfeed.php:144
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Обновлено от %1$s и его друзей на %2$s!"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "Не удаётся добавить подписку на другого пользователя."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "Возможна обработка только действий с любимыми записями."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Возможно только добавление записей в число любимых."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Неизвестная запись"
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Запись уже в числе любимых."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
+#: actions/atompubmembershipfeed.php:144
+#, php-format
msgid "%s group memberships"
msgstr "Участники группы %s"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Группы, в которых состоит %s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "Не удаётся добавить пользователя в группу."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
+#: actions/atompubmembershipfeed.php:242
#, fuzzy
-msgid "Can only handle Join activities."
+msgid "Can only handle join activities."
msgstr "Возможна обработка только POST-запросов."
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Неизвестно"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Все участники"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Заблокировано администратором."
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Нет такого файла."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Не удаётся удалить любимую запись."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Нет такой группы."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Все участники"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "HTTP-метод не поддерживается."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Нет такого профиля."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Вы не подписаны на этот профиль."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Невозможно удалить подписку на самого себя."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Нет такого профиля."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Вы не подписаны на этот профиль."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Невозможно удалить подписку на самого себя."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Люди подписанные на %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
#, fuzzy
msgid "Can only handle Follow activities."
msgstr "Возможна обработка только POST-запросов."
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Можно следить только за людьми."
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Неподдерживаемый тип файла"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Уже подписаны!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1354,11 +1491,15 @@ msgstr "Нет такого вложения."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Нет имени."
@@ -1375,7 +1516,7 @@ msgstr "Неверный размер."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Аватар"
@@ -1389,41 +1530,51 @@ msgstr ""
"Вы можете загрузить свою аватару. Максимальный размер файла составляет %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Пользователь без соответствующего профиля."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Настройки аватары"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Оригинал"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Просмотр"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Удалить"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Загрузить"
@@ -1439,31 +1590,73 @@ msgstr "Обрезать"
msgid "No file uploaded."
msgstr "Файл не загружен."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Подберите нужный квадратный участок для вашей аватары"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Потеряна информация о файле."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Аватар обновлён."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Неудача при обновлении аватары."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Аватар удалён."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Резервное копирование учетной записи"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Повторять записи могут только вошедшие пользователи."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Фон"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+#, fuzzy
+msgid "Backup your account."
+msgstr "Резервное копирование учетной записи"
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1471,7 +1664,8 @@ msgstr "Вы уже заблокировали этого пользовател
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Заблокировать пользователя."
@@ -1494,15 +1688,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Нет"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Не блокировать этого пользователя"
#. TRANS: Button label on the user block form.
@@ -1513,15 +1707,15 @@ msgstr "Не блокировать этого пользователя"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Да"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Заблокировать пользователя."
#. TRANS: Server error displayed when blocking a user fails.
@@ -1529,31 +1723,6 @@ msgstr "Заблокировать пользователя."
msgid "Failed to save block information."
msgstr "Не удаётся сохранить информацию о блокировании."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Нет такой группы."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1623,23 +1792,6 @@ msgstr "Нераспознанный тип адреса %s."
msgid "That address has already been confirmed."
msgstr "Этот адрес уже подтверждён."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Не удаётся обновить пользователя."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1664,11 +1816,85 @@ msgid "Conversation"
msgstr "Дискуссия"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Записи"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Повторять записи могут только вошедшие пользователи."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Вы не можете удалять пользователей."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Я уверен."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Аватар удалён."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Создать новый аккаунт"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Подтверждение"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Вы не можете удалять пользователей."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Вы не можете удалять пользователей."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1682,14 +1908,14 @@ msgstr "Приложение не найдено."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Вы не являетесь владельцем этого приложения."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Проблема с вашим ключом сессии."
@@ -1712,12 +1938,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Не удаляйте это приложение"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Удалить это приложение"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1726,8 +1954,10 @@ msgid "You must be logged in to delete a group."
msgstr "Вы должны авторизоваться, чтобы удалить группу."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Нет имени или ID."
@@ -1769,24 +1999,32 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+#, fuzzy
+msgid "Do not delete this group."
msgstr "Не удаляйте эту группу"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+#, fuzzy
+msgid "Delete this group."
msgstr "Удалить эту группу"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Не авторизован."
@@ -1813,27 +2051,40 @@ msgstr "Вы уверены, что хотите удалить эту запи
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Не удалять эту запись"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Удалить эту запись"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Вы не можете удалять пользователей."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Вы можете удалять только внутренних пользователей."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Удалить пользователя"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Удалить пользователя"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1841,78 +2092,102 @@ msgstr ""
"Вы действительно хотите удалить этого пользователя? Это повлечёт удаление "
"всех данных о пользователе из базы данных без возможности восстановления."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Не удаляйте эту группу"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Удалить этого пользователя"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Оформление"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Настройки оформления для этого сайта StatusNet"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Неверный URL логотипа."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "Неверный URL логотипа SSL."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Тема не доступна: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Изменить логотип"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Логотип сайта"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "Логотип SSL"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Изменить тему"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Тема сайта"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Тема для сайта."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Особая тема"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Вы можете загрузить особую тему StatusNet в виде ZIP-архива."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Изменение фонового изображения"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Фон"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1922,98 +2197,108 @@ msgstr ""
"составляет %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Включить"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Отключить"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Включить или отключить показ фонового изображения."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Растянуть фоновое изображение"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Изменение цветовой гаммы"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Содержание"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Боковая панель"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Текст"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Ссылки"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Расширенный"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Особый CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Использовать значения по умолчанию"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Восстановить оформление по умолчанию"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Восстановить значения по умолчанию"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Сохранить"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Сохранить оформление"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Эта запись не входит в число ваших любимых записей!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Добавить в любимые"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Нет такого документа «%s»"
#. TRANS: Title for "Edit application" form.
@@ -2028,7 +2313,7 @@ msgid "You must be logged in to edit an application."
msgstr "Вы должны авторизоваться, чтобы изменить приложение."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Нет такого приложения."
@@ -2038,61 +2323,71 @@ msgid "Use this form to edit your application."
msgstr "Воспользуйтесь этой формой, чтобы изменить приложение."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Имя обязательно."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "Слишком длинное имя (максимум 255 символов)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Описание обязательно."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "URL источника слишком длинный."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "URL источника недействителен."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Организация обязательна."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "Слишком длинное название организации (максимум 255 символов)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Домашняя страница организации обязательна."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Обратный вызов слишком длинный."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "URL-адрес обратного вызова недействителен."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Не удаётся обновить приложение."
@@ -2103,14 +2398,17 @@ msgid "Edit %s group"
msgstr "Изменить информацию о группе %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Вы должны авторизоваться, чтобы создать новую группу."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Вы должны быть администратором, чтобы изменять информацию о группе."
@@ -2121,63 +2419,65 @@ msgstr "Заполните информацию о группе в следую
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Неверный алиас: «%s»"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Не удаётся обновить информацию о группе."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Не удаётся создать алиасы."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Настройки сохранены."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Настройка почты"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Управление процессом получения электронной почты с %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Адрес эл. почты"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Подтверждённый в настоящее время электронный адрес."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Удалить"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2190,47 +2490,47 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Электронный адрес вида \"UserName@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Добавить"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Входящий электронный адрес"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Я хочу отправлять записи по электронной почте."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr ""
"Отправляйте электронные письма на этот адрес для отсылки новых записей."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
"Создаёт новый адрес электронной почты для отсылки сообщений; отменяет старый "
"адрес."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2238,94 +2538,96 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Новый"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Настройки эл. почты"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Уведомлять меня о новых подписчиках по почте."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Посылать мне сообщение по электронной почте, если кто-нибудь добавит мою "
"запись в число любимых."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr ""
"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне "
"приватное сообщение."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr ""
"Посылать мне сообщение по электронной почте, если кто-нибудь пошлёт мне «@-"
"ответ»."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
"Разрешить друзьям «подталкивать» меня и посылать мне электронные сообщения."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Опубликовать MicroID для моего электронного адреса."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Настройки эл. почты сохранены."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Нет электронного адреса."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Не удаётся стандартизировать этот электронный адрес"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Неверный электронный адрес."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Это уже Ваш электронный адрес."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Этот электронный адрес уже задействован другим пользователем."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Не удаётся вставить код подтверждения."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2335,89 +2637,105 @@ msgstr ""
"инструкции по его использованию."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Нет подтверждения отказа."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Это неверный адрес эл. почты."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Не удаётся удалить подверждение по электронному адресу."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Подтверждение эл. почты отменено."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Это не Ваш электронный адрес."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Адрес эл. почты удалён."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Нет входящего электронного адреса."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Не удаётся обновить пользовательскую запись."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Входящий электронный адрес удалён."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Новый входящий электронный адрес добавлен."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Эта запись уже входит в число любимых!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Разлюбить"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Популярные записи"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Популярные записи, страница %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Самые популярные записи на сайте на данный момент."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"На этой странице появляются любимые записи, однако ни одна запись таковой "
"пока не отмечена."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2426,7 +2744,9 @@ msgstr ""
"Добавьте первую запись в число любимых, нажав соответствующую кнопку рядом с "
"любой понравившейся записью."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2435,142 +2755,186 @@ msgstr ""
"Почему бы не [зарегистрироваться](%%action.register%%) и первым добавить "
"запись в число любимых?"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Любимые записи %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Обновления, понравившиеся %1$s на %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Особые пользователи"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Особые пользователи, страница %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Некоторые из известных пользователей на %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Нет ID записи."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Запись отсутствует."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Нет вложений."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Нет загруженных вложений."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Неожиданный ответ!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Указанный пользователь не существует."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Вы можете использовать локальную подписку!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Этот пользователь заблокировал вас на его подписку."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Вы не авторизованы."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Не удаётся преобразовать ключ запроса в ключ доступа."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Удалённый сервис использует неизвестную версию протокола OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Ошибка обновления удалённого профиля."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Нет такого файла."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Не удалось прочесть файл."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Неверная роль."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Эта роль зарезервирована и не может быть установлена."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Вы не можете назначать пользователю роли на этом сайте."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Пользователь уже имеет эту роль."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Профиль не определен."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Нет профиля с таким ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Группа не определена."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Только администратор может блокировать участников группы."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Пользователь уже заблокирован из группы."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Пользователь не является членом этой группы."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Заблокировать пользователя из группы."
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2582,32 +2946,40 @@ msgstr ""
"подписываться на группу в будущем."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Не блокировать этого пользователя из этой группы"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Заблокировать этого пользователя из этой группы"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Ошибка базы данных при блокировании пользователя из группы."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Нет ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Вы должны авторизоваться, чтобы изменить группу."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Оформление группы"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2615,22 +2987,26 @@ msgstr ""
"Настройте внешний вид группы, установив фоновое изображение и цветовую гамму "
"на ваш выбор."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Не удаётся обновить ваше оформление."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Не удаётся сохранить ваши настройки оформления!"
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Настройки оформления сохранены."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Логотип группы"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2638,100 +3014,116 @@ msgstr ""
"Здесь вы можете загрузить логотип для группы. Максимальный размер файла "
"составляет %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Загрузить"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Обрезать"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Подберите нужный квадратный участок для вашего логотипа."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Логотип обновлён."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Неудача при обновлении логотипа."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Участники группы %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Участники группы %1$s, страница %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Список пользователей, являющихся членами этой группы."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Настройки"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Заблокировать"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Заблокировать этого пользователя"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Сделать пользователя администратором группы"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Сделать администратором"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Сделать этого пользователя администратором"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Обновления участников %1$s на %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Группы"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Группы, страница %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Группы на сайте %%%%site.name%%%% позволяют искать и общаться с людьми с "
"общими интересами. После присоединения к группе и вы сможете отправлять "
@@ -2739,11 +3131,13 @@ msgstr ""
"группу, которая вас интересует? Попробуйте [найти её](%%%%action.groupsearch%"
"%%%) или [создайте собственную](%%%%action.newgroup%%%%)!"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Создать новую группу"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2752,25 +3146,33 @@ msgstr ""
"Поиск групп на %%site.name%% по имени, месторасположению или интересам. "
"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Поиск группы"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Нет результатов."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Если вы не можете найти группу, которая вас интересует, [создайте её](%% "
"action.newgroup%%) сами."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2780,138 +3182,148 @@ msgstr ""
"группу](%%action.newgroup%%) самому?"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Только администратор может разблокировать участников группы."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Пользователь не заблокировал вас из группы."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Ошибка при удалении данного блока."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM-установки"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Вы можете отправлять и получать записи через Jabber/GTalk [онлайн-мессенджер]"
"(%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM не доступен."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM-адрес"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Подтверждённый в настоящее время Jabber/Gtalk - адрес."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"В ожидании подтверждения этого адреса. Проверьте ваш Jabber/GTalk на предмет "
"сообщения с дальнейшими инструкциями. (Вы включили %s в ваш список "
"контактов?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber или GTalk - адрес, типа \"UserName@example.org\". Первым делом "
"убедитесь, что добавили %s в список Ваших корреспондентов на Вашем IM-"
"мессенджере или в GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Настройки IM"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Посылать мне записи через Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Публиковать запись, когда мой Jabber/GTalk - статус изменяется."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Посылать мне реплики через Jabber/GTalk от людей, на которых я не подписан."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Опубликовать MicroID для моего Jabber/GTalk - адреса."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Предпочтения сохранены."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Не Jabber ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Не удаётся стандартизировать этот Jabber ID"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Неверный код Jabber ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Это уже Ваш Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Этот Jabber ID уже используется другим пользователем."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2920,56 +3332,62 @@ msgstr ""
"Код подтверждения выслан на добавленный вами IM-адрес. Вы должны подтвердить "
"%s для отправки вам сообщений."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Это неверный IM-адрес."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Не удаётся удалить подверждение IM."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Подтверждение IM отменено."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Это не Ваш Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Адрес IM удалён."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Входящие для %1$s — страница %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Входящие для %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Это ваш ящик входящих сообщений, в котором хранятся поступившие личные "
"сообщения."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Приглашения отключены."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
@@ -2978,18 +3396,18 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Неправильный адрес электронной почты: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Приглашения отправлены"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Пригласить новых пользователей"
@@ -2997,7 +3415,7 @@ msgstr "Пригласить новых пользователей"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] ""
@@ -3006,7 +3424,7 @@ msgstr[2] ""
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3015,7 +3433,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3032,7 +3450,7 @@ msgstr[2] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Приглашение отправлено следующему адресату:"
@@ -3041,7 +3459,7 @@ msgstr[2] ""
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3050,33 +3468,34 @@ msgstr ""
"зарегистрируются на сайте. Спасибо за помощь в росте нашего сообщества!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr "В этой форме вы можете пригласить друзей и коллег на этот сервис."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Почтовый адрес"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Адреса друзей, которых вы хотите пригласить (по одному на строчку)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Личное сообщение"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Можно добавить к приглашению личное сообщение."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Отправить"
@@ -3084,7 +3503,7 @@ msgstr "Отправить"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s пригласил вас присоединиться к нему на %2$s"
@@ -3094,7 +3513,7 @@ msgstr "%1$s пригласил вас присоединиться к нему
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3151,44 +3570,51 @@ msgstr ""
"\n"
"С уважением, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Вы должны авторизоваться для вступления в группу."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s вступил в группу %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Вы должны авторизоваться, чтобы покинуть группу."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Вы не являетесь членом этой группы."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s покинул группу %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Лицензия"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Лицензия этого сайта StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Неверный выбор лицензии."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3196,123 +3622,132 @@ msgstr ""
"Вы должны указать владельца содержания при использовании лицензии «Все права "
"защищены»."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Неверное название лицензии. Максимальная длина 255 символов."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Неверный URL лицензии."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Неверный URL изображения лицензии."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "URL лицензии должен быть пустым или действительным URL."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "Изображение лицензии должно быть пустым или действительным URL."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Выбор лицензии"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Личное"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Все права защищены"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Тип"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Выбор лицензии"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Подробности лицензии"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Владелец"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Имя владельца содержимого сайта (если применимо)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Название лицензии"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Название лицензии."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL-адрес лицензии"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL-адрес для получения дополнительной информации о лицензии."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL изображения лицензии"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL изображения, отображаемого вместе с лицензией."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Сохранить"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Сохранить настройки лицензии"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Вы уже авторизовались."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Некорректное имя или пароль."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Ошибка установки пользователя. Вы, вероятно, не авторизованы."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Вход"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Авторизоваться"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Запомнить меня"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "Автоматическии входить в дальнейшем. Не для общедоступных компьютеров!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Потеряли или забыли пароль?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3320,11 +3755,11 @@ msgstr ""
"По причинам сохранения безопасности введите имя и пароль ещё раз, прежде чем "
"изменять Ваши установки."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Войти с вашим именем участника и паролем."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3362,19 +3797,22 @@ msgid "New application"
msgstr "Новое приложение"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Вы должны авторизоваться, чтобы зарегистрировать приложение."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Используйте эту форму для создания нового приложения."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "URL источника обязателен."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Не удаётся создать приложение."
@@ -3383,11 +3821,23 @@ msgstr "Не удаётся создать приложение."
msgid "New group"
msgstr "Новая группа"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Вы не можете удалить эту группу."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Используйте эту форму для создания новой группы."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Алиас не может совпадать с именем."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Новое сообщение"
@@ -3437,7 +3887,9 @@ msgstr "Новая запись"
msgid "Notice posted"
msgstr "Запись опубликована"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3446,16 +3898,21 @@ msgstr ""
"Поиск по содержанию записей на %%site.name%%. Между ключевыми словами "
"ставьте пробелы. Минимальная длина слова — 3 буквы."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Поиск текста"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Результаты поиска для «%1$s» на %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3464,7 +3921,9 @@ msgstr ""
"Станьте первыми, кто [напишет на эту тему](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3473,14 +3932,17 @@ msgstr ""
"Почему бы не [зарегистрироваться](%%%%action.register%%%%) и не отправить "
"первое [сообщение на эту тему](%%%%action.newnotice%%%%?status_textarea=%s)?"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Обновления с «$s»"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Все обновления, соответствующие поисковому запросу «%s»"
#: actions/nudge.php:85
@@ -3521,30 +3983,30 @@ msgid "You have not registered any applications yet."
msgstr "Вы пока не зарегистрировали ни одного приложения."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Подключённые приложения"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "Следующие приложения подключены к вашей учётной записи."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Вы не являетесь пользователем этого приложения."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Не удаётся отозвать доступ для приложения: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3553,14 +4015,14 @@ msgstr ""
"Доступ для %1$s и ключ доступа, начинающийся на %2$s, успешно отозваны."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Вы не разрешили приложениям использовать вашу учётную запись."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3569,6 +4031,16 @@ msgstr ""
"Вы разработчик? [Зарегистрируйте клиентское приложение OAuth](%s) для "
"использования с этим сайтом StatusNet."
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Метод API не найден."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Родительская запись не найдена."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Уведомление не имеет профиля."
@@ -3578,6 +4050,16 @@ msgstr "Уведомление не имеет профиля."
msgid "%1$s's status on %2$s"
msgstr "Статус %1$s на %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Получатель не найден."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3591,16 +4073,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Только %s URL в простом HTTP, пожалуйста."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Неподдерживаемый формат данных."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Поиск людей"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Поиск в записях"
@@ -3614,68 +4097,79 @@ msgid "Manage various other options."
msgstr "Управление другими опциями."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
-msgstr " (бесплатный сервис)"
+msgstr " (свободный сервис)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Сокращать URL с помощью"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Автоматически использовать выбранный сервис"
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Показать оформления профиля"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Показать или скрыть оформления профиля."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Сервис сокращения URL слишком длинный (максимум 50 символов)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Не указан идентификатор пользователя."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Не указан ключ для входа."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Ключ для входа не был запрошен."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Задан неверный ключ для входа."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Срок действия ключа для входа истёк."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Исходящие для %s — страница %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Исходящие для %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Это список исходящих писем, в котором перечислены отправленные вами личные "
@@ -3689,7 +4183,8 @@ msgstr "Изменение пароля"
msgid "Change your password."
msgstr "Измените ваш пароль."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Пароль сохранён."
@@ -3697,48 +4192,50 @@ msgstr "Пароль сохранён."
msgid "Old password"
msgstr "Старый пароль"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Новый пароль"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 или больше знаков"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Подтверждение"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Тот же пароль, что и выше"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Изменить"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Пароль должен быть длиной не менее 6 символов."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Пароли не совпадают."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Некорректный старый пароль"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Ошибка сохранения пользователя; неверное имя."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Не удаётся сохранить новый пароль."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Пароль сохранён."
@@ -3944,7 +4441,7 @@ msgstr "Директория, в которой расположены фоно
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Вложения"
@@ -4012,7 +4509,9 @@ msgstr "Сервер, которому направлять SSL-запросы."
msgid "Save paths"
msgstr "Сохранить пути"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4021,7 +4520,8 @@ msgstr ""
"Поиск людей на %%site.name%% по имени, месторасположению или интересам. "
"Разделяйте ключевые слова пробелами. Минимальная длина слова — 3 буквы."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Поиск людей"
@@ -4045,12 +4545,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "Лицензия записи «%1$s» не совместима с лицензией сайта «%2$s»."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Настройки профиля"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4058,40 +4558,41 @@ msgstr ""
"больше."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Информация профиля"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
"1-64 латинских строчных буквы или цифры, без знаков препинания и пробелов"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Полное имя"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Главная"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "Адрес вашей домашней страницы, блога или профиля на другом сайте."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4100,80 +4601,87 @@ msgstr[1] "Опишите себя и свои увлечения при пом
msgstr[2] "Опишите себя и свои увлечения при помощи %d символов"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Опишите себя и свои интересы"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Биография"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Месторасположение"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Где вы находитесь, например «Город, область, страна»"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Делиться своим текущим местоположением при отправке записей"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Теги"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или "
"пробелом"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Язык"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Предпочитаемый язык"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Часовой пояс"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "В каком часовом поясе Вы обычно находитесь?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr "Автоматически подписываться на всех, кто подписался на меня"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4182,49 +4690,53 @@ msgstr[1] "Слишком длинная биография (максимум %d
msgstr[2] "Слишком длинная биография (максимум %d символов)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Часовой пояс не выбран."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "Слишком длинный язык (максимум 50 символов)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Неверный тег: «%s»"
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Не удаётся обновить пользователя для автоподписки."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Не удаётся сохранить настройки местоположения."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Не удаётся сохранить профиль."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Не удаётся сохранить теги."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Настройки сохранены."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Создать новый аккаунт"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4299,6 +4811,12 @@ msgstr ""
"Микроблоггинг), созданный с использованием свободного программного "
"обеспечения [StatusNet](http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "Обновления %s от всех!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4343,35 +4861,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Облако тегов"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Вы уже авторизованы!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Нет такого кода восстановления."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Нет кода восстановления."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Код восстановления неизвестного пользователя."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Ошибка, связанная с кодом подтверждения."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Код подтверждения слишком старый. Попробуйте ещё раз."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Не удаётся обновить пользователя с подтверждённым электронным адресом."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4379,67 +4905,99 @@ msgstr ""
"Если вы забыли или потеряли свой пароль, вы можете запросить новый пароль на "
"email-адрес вашей учётной записи."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Вы опознаны системой. Введите новый пароль ниже. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Вы опознаны системой. Введите новый пароль ниже."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Восстановление пароля"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Имя или email-адрес"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Ваше имя на этом сервере или электронный адрес регистрации."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Восстановление"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Восстановление"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Переустановить пароль"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Восстановление пароля"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Запрошено восстановление пароля"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Пароль сохранён."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Неизвестное действие"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 или более символов, и не забывайте его!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Сбросить"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Введите имя или электронный адрес."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Нет пользователя с таким электронным адресом или именем."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Нет зарегистрированных электронных адресов для этого пользователя."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Ошибка сохранения подтверждённого адреса."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4447,101 +5005,98 @@ msgstr ""
"Инструкции по восстановлению пароля посланы на электронный адрес, который Вы "
"указали при регистрации вашего аккаунта."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Нетиповая переустановка пароля."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Пароль должен быть длиной не менее 6 символов."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Пароль и его подтверждение не совпадают."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Ошибка в установках пользователя."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Новый пароль успешно сохранён. Вы авторизовались."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Простите, регистрация только по приглашению."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Извините, неверный пригласительный код."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Регистрация успешна!"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Регистрация"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Регистрация недопустима."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr ""
"Вы не можете зарегистрироваться, если Вы не подтверждаете лицензионного "
"соглашения."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Такой электронный адрес уже задействован."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Неверное имя или пароль."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"С помощью этой формы вы можете создать новую учётную запись. Тогда вы "
"получите возможность публиковать короткие сообщения и устанавливать связи с "
"друзьями и коллегами. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 или более символов. Обязательное поле."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Тот же пароль что и сверху. Обязательное поле."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Email"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "Нужна только для обновлений, осведомлений и восстановления пароля."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Полное имя, предпочтительно Ваше настоящее имя"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "Адрес твоей страницы, дневника или профиля на другом портале"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Где вы находитесь, например «Город, область, страна»"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
@@ -4549,23 +5104,23 @@ msgstr ""
"Я понимаю, что содержание и данные %1$s являются частными и "
"конфиденциальными."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Авторским правом на мои тексты и файлы обладает %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Авторские права на мои тексты и файлы остаются за мной."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Все права защищены."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4574,7 +5129,7 @@ msgstr ""
"Мои тексты и файлы доступны на условиях %s, за исключением следующей личной "
"информации: пароля, почтового адреса, номера мессенджера и номера телефона."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4608,7 +5163,7 @@ msgstr ""
"Спасибо за то, что присоединились к нам, надеемся, что вы получите "
"удовольствие от использования данного сервиса!"
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4616,7 +5171,7 @@ msgstr ""
"(Вы должный получить письмо с описанием того, как подтвердить свой "
"электронный адрес.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4626,77 +5181,86 @@ msgstr ""
"Чтобы подписаться, необходимо [авторизоваться](%%action.login%%) или "
"[зарегистрировать](%%action.register%%) новый аккаунт."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Подписаться на пользователя"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Подписаться на удалённого пользователя"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Имя пользователя."
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Имя пользователя, которому Вы хотите следовать"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL профиля"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Подписаться"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Неверный URL профиля (плохой формат)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr "Неправильный URL-профиль (нет YADIS-документа, либо неверный XRDS)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Это локальный профиль! Авторизуйтесь для подписки."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Не удаётся получить получить ключ запроса."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Повторять записи могут только вошедшие пользователи."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Не указана запись."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Вы не можете повторить собственную запись."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Вы уже повторили эту запись."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Повторено"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Повторено!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Ответы для %s"
@@ -4748,11 +5312,103 @@ msgstr ""
"Вы можете попробовать «[подтолкнуть %1$s](../%2$s)» или [написать им что-"
"нибудь](%%%%action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Ответы на записи %1$s на %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Повторять записи могут только вошедшие пользователи."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Вы пока не зарегистрировали ни одного приложения."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Загрузить файл"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Загружаемый файл превышает директиву upload_max_filesize в php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Загружаемый файл превышает директиву MAX_FILE_SIZE, указанную в HTML-форме."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Загружаемый файл загружен только частично."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Отсутствует временной каталог."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Не удаётся записать файл на диск."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Загрузка файла остановлена по расширению."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Системная ошибка при загрузке файла."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Все участники"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Загрузить файл"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Вы не можете снимать роли пользователей на этом сайте."
@@ -4761,7 +5417,7 @@ msgstr "Вы не можете снимать роли пользователе
msgid "User doesn't have this role."
msgstr "Пользователь не имеет этой роли."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4804,85 +5460,87 @@ msgstr "Включить отладочный вывод для сессий."
msgid "Save site settings"
msgstr "Сохранить настройки сайта"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Вы должны авторизоваться, чтобы просматривать приложения."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Профиль приложения"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Иконка"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Имя"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Организация"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Описание"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Статистика"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз."
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Действия приложения"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Сбросить ключ и секретную фразу"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Удалить"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Информация о приложении"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Потребительский ключ"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Секретная фраза потребителя"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL ключа запроса"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL ключа доступа"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "URL авторизации"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4890,36 +5548,43 @@ msgstr ""
"Примечание: Мы поддерживаем подписи HMAC-SHA1. Мы не поддерживаем метод "
"подписи открытым текстом."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Вы уверены, что хотите сбросить ваш ключ потребителя и секретную фразу?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Любимые записи %1$s, страница %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Не удаётся восстановить любимые записи."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Лента друзей %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Лента друзей %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Лента друзей %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4927,7 +5592,9 @@ msgstr ""
"Вы пока не выбрали ни одной любимой записи. Нажмите на кнопку добавления в "
"любимые рядом с понравившейся записью, чтобы позже уделить ей внимание."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4936,7 +5603,10 @@ msgstr ""
"%s пока не выбрал ни одной любимой записи. Напишите такую интересную запись, "
"которую он добавит её в число любимых :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4947,7 +5617,8 @@ msgstr ""
"[зарегистрироваться](%%%%action.register%%%%) и не написать что-нибудь "
"интересное, что понравилось бы этому пользователю? :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Это способ поделиться тем, что вам нравится."
@@ -4965,81 +5636,88 @@ msgid "%1$s group, page %2$d"
msgstr "Группа %1$s, страница %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Профиль группы"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Запись"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Алиасы"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Действия группы"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Лента записей группы %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Лента записей группы %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Лента записей группы %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF для группы %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Участники"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(пока ничего нет)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Все участники"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Дата создания"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Участники"
@@ -5048,7 +5726,7 @@ msgstr "Участники"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5067,7 +5745,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5081,30 +5759,30 @@ msgstr ""
"короткими сообщениями о своей жизни и интересах. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Администраторы"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Нет такого сообщения."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Только отправитель и получатель могут читать это сообщение."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Сообщение для %1$s на %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Сообщение от %1$s на %2$s"
@@ -5120,7 +5798,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s с тегом %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5370,76 +6048,78 @@ msgstr "Текст уведомления сайта (максимум 255 си
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Сохранить уведомление сайта"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Установки СМС"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
"Вы можете отправлять СМС-сообщения по электронному адресу от %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "Отправка СМС недоступна."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS-адрес"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr ""
"Подтверждённый в настоящее время SMS-доступный номер мобильного телефона."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "В ожидании подтверждения данного номера телефона."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Код подтверждения"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Введите код, который вы получили по телефону."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Подтвердить"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Номер телефона для СМС"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Номер телефона, без пробелов, с кодом зоны"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Настройки SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5448,32 +6128,32 @@ msgstr ""
"по пересылке."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Настройки SMS сохранены."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Нет номера телефона."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Провайдер не выбран."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Это уже ваш номер телефона."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Этот телефонный номер уже задействован другим пользователем."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5482,39 +6162,39 @@ msgstr ""
"телефон для нахождения этого кода и инструкций по его использованию."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Это неверный номер подтверждения."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Подтверждение SMS отменено."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Это не Ваш номер телефона."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Номер SMS телефона удалён."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Выбор провайдера"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Выбор провайдера"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5525,8 +6205,9 @@ msgstr ""
"то сообщите нам об этом по электронной почте %s."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Код не введён"
#. TRANS: Menu item for site administration
@@ -5598,17 +6279,21 @@ msgstr "Вы не подписаны на этот профиль."
msgid "Could not save subscription."
msgstr "Не удаётся сохранить подписку."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Это действие принимает только POST-запросы."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
"Вы не можете подписаться на удалённый профиль OMB 0.1 с помощью этого "
"действия."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Подписано"
@@ -5640,7 +6325,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Эти пользователи читают записи %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5650,7 +6335,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "У %s нет подписчиков. Хотите быть первым?"
@@ -5660,7 +6345,7 @@ msgstr "У %s нет подписчиков. Хотите быть первым?
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5693,7 +6378,7 @@ msgstr "Это пользователи, записи которых читае
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5713,23 +6398,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s не просматривает ничьи записи."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Лента записей для %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "СМС"
@@ -5762,12 +6448,15 @@ msgstr "Нет аргумента ID."
msgid "Tag %s"
msgstr "Теги %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Профиль пользователя"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Фото"
@@ -5783,6 +6472,11 @@ msgstr ""
"Теги для этого пользователя (буквы, цифры, -, ., и _), разделённые запятой "
"или пробелом"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Неверный тег: «%s»"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5790,10 +6484,6 @@ 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 ""
@@ -5803,6 +6493,7 @@ msgstr ""
msgid "No such tag."
msgstr "Нет такого тега."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Вы не заблокировали этого пользователя."
@@ -5823,7 +6514,7 @@ msgstr "Нет ID профиля в запросе."
msgid "Unsubscribed"
msgstr "Отписано"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5855,13 +6546,12 @@ msgstr ""
#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
-#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+#, fuzzy, php-format
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Неверная подписка по умолчанию: «%1$s» не является пользователем."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Профиль"
@@ -5917,55 +6607,71 @@ msgstr "Разрешать ли пользователям приглашать
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "Сохранить пользовательские настройки"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Авторизовать подписку"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Пожалуйста, проверьте эти подробности, чтобы быть уверенным, что вы хотите "
"подписаться на записи этого пользователя. Если Вы этого не хотите делать, "
"нажмите «Отказ»."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Лицензия"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Принять"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Подписаться на этого пользователя"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Отбросить"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Отвергнуть эту подписку"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Не авторизованный запрос!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Подписка авторизована"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5974,11 +6680,12 @@ msgstr ""
"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте "
"о том, как авторизовать подписку. Ваш ключ подписки:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Подписка отменена"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5987,48 +6694,72 @@ msgstr ""
"Подписка отвергнута, но не бы передан URL обратного вызова. Проверьте "
"инструкции на сайте, чтобы полностью отказаться от подписки."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "Смотрящий URI «%s» здесь не найден."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "Просматриваемый URI «%s» слишком длинный."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "Просматриваемый URI «%s» — локальный пользователь."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "URL профиля «%s» предназначен только для локального пользователя."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Лицензия просматриваемого потока «%1$s» несовместима с лицензией сайта «%2$s»."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "URL аватары «%s» недействителен."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Не удаётся прочитать URL аватары «%s»"
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Неверный тип изображения для URL аватары «%s»."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Оформление профиля"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6036,7 +6767,7 @@ msgstr ""
"Настройте внешний вид своего профиля, установив фоновое изображение и "
"цветовую гамму на свой выбор."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Приятного аппетита!"
@@ -6067,7 +6798,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Обновлено от %1$s на %2$s!"
@@ -6128,7 +6859,7 @@ msgid "Plugins"
msgstr "Плагины"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Версия"
@@ -6137,32 +6868,32 @@ msgid "Author(s)"
msgstr "Автор(ы)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Пометить"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s добавил запись %2$s в число любимых."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Невозможно обработать URL «%s»"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Робин считает, что это невозможно."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6182,7 +6913,7 @@ msgstr[2] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6193,7 +6924,7 @@ msgstr[2] "Файл такого размера превысит вашу пол
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6202,7 +6933,7 @@ msgstr[1] "Файл такого размера превысит вашу мес
msgstr[2] "Файл такого размера превысит вашу месячную квоту в %d байт."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Неверное имя файла."
@@ -6260,7 +6991,7 @@ msgid "Could not create login token for %s"
msgstr "Не удаётся создать токен входа для %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Имя базы данных или DSN не найдено."
@@ -6287,23 +7018,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Нет такого профиля (%1$d) для записи (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Ошибка баз данных при вставке хеш-тегов: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Проблемы с сохранением записи. Слишком длинно."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Проблема при сохранении записи. Неизвестный пользователь."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6311,7 +7042,7 @@ msgstr ""
"попробуйте вновь через пару минут."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6320,42 +7051,42 @@ msgstr ""
"и попробуйте вновь через пару минут."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Вам запрещено поститься на этом сайте (бан)"
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Проблемы с сохранением записи."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr "Для saveKnownGroups указан неверный тип."
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Проблемы с сохранением входящих сообщений группы."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Не удаётся сохранить ответ для %1$d, %2$d."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6363,7 +7094,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
@@ -6372,7 +7103,7 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6443,35 +7174,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Добро пожаловать на %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Ни задан пользователь для однопользовательского режима."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr "Вызов отключённого кода однопользовательского режима."
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Не удаётся создать группу."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Не удаётся назначить URI группы."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Не удаётся назначить членство в группе."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Не удаётся сохранить информацию о локальной группе."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Вы не можете удалять пользователей."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6508,211 +7260,214 @@ msgid "Other"
msgstr "Другое"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s — %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Страница без названия"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Показать ещё"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Главная навигация"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Личный профиль и лента друзей"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Личное"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Изменить ваш email, аватар, пароль, профиль"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Настройки"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Соединить с сервисами"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Соединить"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Изменить конфигурацию сайта"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Настройки"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Пригласите друзей и коллег стать такими же как Вы участниками %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Пригласить"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Выйти"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Выход"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Создать новый аккаунт"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Регистрация"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Войти"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Вход"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Помощь"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Помощь"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Искать людей или текст"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Поиск"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Уведомление сайта"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Локальные виды"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Новая запись"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Навигация по подпискам"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Помощь"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "О проекте"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "ЧаВо"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "TOS"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Пользовательское соглашение"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Исходный код"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Контактная информация"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Бедж"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet лицензия"
@@ -6720,7 +7475,7 @@ msgstr "StatusNet лицензия"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6730,7 +7485,7 @@ msgstr ""
"broughtby%%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** — сервис микроблогинга."
@@ -6739,7 +7494,7 @@ msgstr "**%%site.name%%** — сервис микроблогинга."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6752,27 +7507,27 @@ msgstr ""
"licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Лицензия содержимого сайта"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Содержание и данные %1$s являются личными и конфиденциальными."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
"Авторские права на содержание и данные принадлежат %1$s. Все права защищены."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Авторские права на содержание и данные принадлежат разработчикам. Все права "
@@ -6780,25 +7535,25 @@ msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "Все материалы и данные %1$s доступны на условиях лицензии %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Разбиение на страницы"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Сюда"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Туда"
@@ -6807,10 +7562,80 @@ msgstr "Туда"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "Ожидался корневой элемент потока, а получен XML-документ целиком."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Неизвестный язык «%s»."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Фото"
+msgid "Cannot force remote user to subscribe."
+msgstr "Укажите имя пользователя для подписки."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Неподдерживаемый тип файла"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Вы уже являетесь членом этой группы."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Найти запись по содержимому"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Нет такого пользователя."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s — %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6882,7 +7707,7 @@ msgid "User configuration"
msgstr "Конфигурация пользователя"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Пользователь"
@@ -6928,19 +7753,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Нет приложения для этого пользовательского ключа."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Неверный ключ доступа."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Нет пользователя для этого ключа."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Не удаётся произвести аутентификацию."
@@ -6961,27 +7790,31 @@ msgid ""
msgstr "Не удаётся найти профиль и приложение, связанное с ключом запроса."
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "Ошибка выдачи ключа доступа."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Ошибка базы данных при добавлении пользователя приложения OAuth."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Ошибка базы данных при добавлении пользователя приложения OAuth."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Попытка отменить неизвестный ключ."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Не удаётся удалить аннулированный ключ."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Иконка для этого приложения"
@@ -7094,17 +7927,24 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Отозвать"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+#, fuzzy
+msgid "Author element must contain a name element."
msgstr "Элемент author должен содержать элемент name."
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Не удаляйте эту группу"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Автор"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Сервис"
@@ -7133,6 +7973,11 @@ msgstr "Смена пароля не разрешена."
msgid "Block"
msgstr "Блокировать"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Заблокировать пользователя."
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7246,7 +8091,7 @@ msgstr "Полное имя: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Месторасположение: %s"
@@ -7254,7 +8099,7 @@ msgstr "Месторасположение: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Домашняя страница: %s"
@@ -7536,24 +8381,24 @@ msgstr ""
"tracking — пока не реализовано.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "Конфигурационный файл не найден."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "Конфигурационные файлы искались в следующих местах:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Возможно, вы решите запустить установщик для исправления этого."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Перейти к установщику"
@@ -7594,14 +8439,19 @@ msgstr "Авторизованные соединённые приложения
msgid "Database error"
msgstr "Ошибка базы данных"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Удалить этого пользователя"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Загрузить файл"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7620,25 +8470,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Выключено"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Сбросить"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Изменение цветовой гаммы"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Использовать значения по умолчанию"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Восстановить оформление по умолчанию"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Восстановить значения по умолчанию"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Сохранить оформление"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Не удаётся обновить ваше оформление."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Оформление по умолчанию восстановлено."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Не удаётся отозвать доступ для приложения: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Мне не нравится эта запись"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Разлюбить"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Мне нравится эта запись"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Пометить"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7655,6 +8554,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Все участники"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7689,19 +8601,19 @@ msgstr "Перейти"
msgid "Grant this user the \"%s\" role"
msgstr "Назначить этому пользователю роль «%s»"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 латинских строчных буквы или цифры, без пробелов"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "Адрес домашней страницы или блога группы или темы."
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Опишите группу или тему"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
@@ -7709,14 +8621,14 @@ msgstr[0] "Опишите группу или тему, используя до
msgstr[1] "Опишите группу или тему, используя до %d символов"
msgstr[2] "Опишите группу или тему, используя до %d символов"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Местонахождение группы, если есть, например «Город, область (или регион), "
"страна»."
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7828,40 +8740,41 @@ msgstr "Теги записей группы %s"
msgid "This page is not available in a media type you accept"
msgstr "Страница недоступна для того типа, который Вы задействовали."
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Неподдерживаемый формат файла изображения."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Этот файл слишком большой. Максимальный размер файла составляет %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Частичная загрузка."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Системная ошибка при загрузке файла."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Не является изображением или повреждённый файл."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Потерян файл."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Неподдерживаемый тип файла"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7870,7 +8783,7 @@ msgstr[1] "%dМБ"
msgstr[2] "%dМБ"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7879,7 +8792,7 @@ msgstr[1] "%dКБ"
msgstr[2] "%dКБ"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7901,23 +8814,25 @@ msgstr "Неизвестный источник входящих сообщен
msgid "Leave"
msgstr "Покинуть"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Войти с вашим ником и паролем."
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Создать новый аккаунт"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Подтверждение электронного адреса"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7949,14 +8864,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s теперь следит за вашими записями на %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7971,7 +8886,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7998,14 +8913,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Биография: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Новый электронный адрес для постинга %s"
@@ -8013,7 +8928,7 @@ msgstr "Новый электронный адрес для постинга %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8036,34 +8951,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s статус"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Подтверждение СМС"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s. Подтвердите, что это ваш телефон, следующим кодом:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "Вас «подтолкнул» пользователь %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8092,7 +9007,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Новое приватное сообщение от %s"
@@ -8101,7 +9016,7 @@ msgstr "Новое приватное сообщение от %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8136,7 +9051,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) добавил вашу запись в число своих любимых"
@@ -8146,7 +9061,7 @@ msgstr "%1$s (@%2$s) добавил вашу запись в число свои
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8184,7 +9099,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8197,7 +9112,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) отправил запись для вашего внимания"
@@ -8208,7 +9123,7 @@ msgstr "%1$s (@%2$s) отправил запись для вашего вним
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8257,11 +9172,11 @@ msgstr ""
"\n"
"PS Вы можете отключить эти уведомления по электронной почте здесь: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Только сам пользователь может читать собственный почтовый ящик."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8270,10 +9185,6 @@ msgstr ""
"вовлечения других пользователей в разговор. Сообщения, получаемые от других "
"людей, видите только вы."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "от"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Сообщение не удаётся разобрать."
@@ -8302,39 +9213,6 @@ msgstr ""
"При сохранении вашего файла возникла ошибка базы данных. Пожалуйста, "
"попробуйте ещё раз."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Загружаемый файл превышает директиву upload_max_filesize в php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Загружаемый файл превышает директиву MAX_FILE_SIZE, указанную в HTML-форме."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Загружаемый файл загружен только частично."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Отсутствует временной каталог."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Не удаётся записать файл на диск."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Загрузка файла остановлена по расширению."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8355,7 +9233,7 @@ msgstr "Не удаётся определить mime-тип файла."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8366,7 +9244,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "Тип файла «%s» не поддерживается не этом сервере."
@@ -8398,19 +9276,28 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Отправить"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Сообщение"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "от"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Имя должно состоять только из прописных букв и цифр и не иметь пробелов."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "Псевдоним не может быть пустым."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8427,11 +9314,11 @@ msgstr "Послать запись"
msgid "What's up, %s?"
msgstr "Что нового, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Прикрепить"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Прикрепить файл"
@@ -8452,55 +9339,59 @@ msgstr ""
"времени, чем ожидалось; повторите попытку позже"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "с. ш."
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "ю. ш."
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "в. д."
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "з. д."
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "из"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "web"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "переписка"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Повторено"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Ответить на эту запись"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Ответить"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Удалить эту запись"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Запись повторена"
@@ -8537,77 +9428,113 @@ msgstr "Дублирующаяся запись."
msgid "Couldn't insert new subscription."
msgstr "Не удаётся вставить новую подписку."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Личное"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Ответы"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Профиль"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Любимое"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Входящие"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Ваши входящие сообщения"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Исходящие"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Ваши исходящие сообщения"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Теги записей пользователя %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Неизвестно"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Подписки"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Все подписки."
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Подписчики"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Все подписчики"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "ID пользователя"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Регистрация"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Группы"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Среднесуточная"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Все группы"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Нереализованный метод."
@@ -8654,7 +9581,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Отозвать у этого пользователя роль «%s»"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "Страница не найдена."
@@ -8744,6 +9671,10 @@ msgstr "Пригласить"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Пригласите друзей и коллег стать такими же как вы участниками %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Подписаться на этого пользователя"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8862,64 +9793,81 @@ msgstr "Отписаться"
msgid "User %1$s (%2$d) has no profile record."
msgstr "У пользователя %1$s (%2$d) нет записи профиля."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Изменить аватару"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Действия пользователя"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Идёт удаление пользователя…"
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Изменение настроек профиля"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Редактировать"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Послать приватное сообщение этому пользователю."
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Сообщение"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Модерировать"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Роль пользователя"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Администратор"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Модератор"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Не авторизован."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "пару секунд назад"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "около минуты назад"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8928,12 +9876,12 @@ msgstr[1] "около %d минут назад"
msgstr[2] "около %d минут назад"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "около часа назад"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8942,12 +9890,12 @@ msgstr[1] "около %d часов назад"
msgstr[2] "около %d часов назад"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "около дня назад"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8956,12 +9904,12 @@ msgstr[1] "около %d дней назад"
msgstr[2] "около %d дней назад"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "около месяца назад"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8970,18 +9918,13 @@ msgstr[1] "около %d месяцев назад"
msgstr[2] "около %d месяцев назад"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "около года назад"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s не допустимым подходящим цветом!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr ""
@@ -9010,31 +9953,17 @@ msgstr[2] ""
"Сообщение слишком длинное — не больше %1$d символов, вы отправили %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "Неверный XML."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr "Неверный XML, отсутствует корень XRD."
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Получение резервной копии из файла «%s»."
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "Не указан пользователь; используется пользователь из резервной копии."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "%d запись в резервной копии."
-msgstr[1] "%d записи в резервной копии."
-msgstr[2] "%d записей в резервной копии."
diff --git a/locale/statusnet.pot b/locale/statusnet.pot
index 5065298b06..69aa295e1c 100644
--- a/locale/statusnet.pot
+++ b/locale/statusnet.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -70,8 +70,9 @@ msgid "Save access settings"
msgstr ""
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -81,13 +82,13 @@ msgstr ""
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr ""
@@ -95,7 +96,7 @@ msgstr ""
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr ""
@@ -105,6 +106,8 @@ msgstr ""
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -120,13 +123,23 @@ msgstr ""
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -134,15 +147,15 @@ msgstr ""
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr ""
@@ -156,9 +169,10 @@ msgstr ""
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr ""
@@ -265,7 +279,7 @@ msgstr ""
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -297,7 +311,21 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr ""
@@ -307,18 +335,23 @@ msgstr ""
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr ""
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr ""
@@ -328,8 +361,8 @@ msgstr ""
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -345,13 +378,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr ""
@@ -359,48 +393,59 @@ msgstr ""
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr ""
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr ""
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr ""
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
#, php-format
msgid "%s favorites"
msgstr ""
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, php-format
msgid "%s memberships"
msgstr ""
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr ""
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr ""
@@ -456,7 +501,7 @@ msgstr ""
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
#. TRANS: Client error displayed trying to direct message self (403).
@@ -479,8 +524,9 @@ msgid "This status is already a favorite."
msgstr ""
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr ""
@@ -490,7 +536,8 @@ msgid "That status is not a favorite."
msgstr ""
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr ""
@@ -535,9 +582,9 @@ msgstr ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr ""
@@ -545,21 +592,22 @@ msgstr ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr ""
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr ""
@@ -567,23 +615,24 @@ msgstr ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr ""
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -594,9 +643,9 @@ msgstr[1] ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr ""
@@ -606,8 +655,8 @@ msgstr ""
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -624,18 +673,16 @@ msgstr ""
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr ""
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -646,28 +693,32 @@ msgstr ""
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr ""
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr ""
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr ""
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr ""
@@ -679,9 +730,11 @@ msgstr ""
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -718,7 +771,7 @@ msgid "Upload failed."
msgstr ""
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr ""
@@ -738,20 +791,25 @@ msgid "Request token already authorized."
msgstr ""
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -768,18 +826,22 @@ msgstr ""
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr ""
@@ -823,29 +885,31 @@ msgstr ""
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr ""
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr ""
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -915,6 +979,7 @@ msgstr ""
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -934,38 +999,50 @@ msgstr ""
msgid "Already repeated that notice."
msgstr ""
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr ""
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr ""
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr ""
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr ""
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr ""
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr ""
@@ -1022,7 +1099,7 @@ msgstr ""
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr ""
@@ -1043,13 +1120,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr ""
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr ""
@@ -1096,187 +1174,253 @@ msgstr ""
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, php-format
msgid "No content for notice %d."
msgstr ""
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr ""
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr ""
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr ""
-#: actions/atompubfavoritefeed.php:70
-msgid "No such profile"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-msgid "Can't add someone else's subscription"
-msgstr ""
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-msgid "Can only fave notices."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:256
-msgid "Unknown note."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:263
-msgid "Already a favorite."
-msgstr ""
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr ""
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, php-format
msgid "%s group memberships"
msgstr ""
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr ""
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
msgstr ""
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
msgstr ""
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
msgstr ""
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
msgstr ""
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr ""
-#: actions/atompubshowmembership.php:81
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr ""
-#: actions/atompubshowmembership.php:90
-msgid "Not a member"
-msgstr ""
-
-#: actions/atompubshowmembership.php:115
-msgid "Method not supported"
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
msgstr ""
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
+msgid "Cannot delete someone else's membership."
msgstr ""
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
#, php-format
-msgid "No such profile id: %d"
+msgid "No such profile id: %d."
msgstr ""
-#: actions/atompubshowsubscription.php:90
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
#, php-format
-msgid "Profile %d not subscribed to profile %d"
+msgid "Profile %1$d not subscribed to profile %2$d."
msgstr ""
-#: actions/atompubshowsubscription.php:154
-msgid "Can't delete someone else's subscription"
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
#, php-format
-msgid "People %s has subscribed to on %s"
+msgid "People %1$s has subscribed to on %2$s"
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
+msgstr ""
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
msgstr ""
#. TRANS: Client error displayed trying to get a non-existing attachment.
@@ -1287,11 +1431,15 @@ msgstr ""
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr ""
@@ -1308,7 +1456,7 @@ msgstr ""
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr ""
@@ -1321,41 +1469,51 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr ""
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr ""
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr ""
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr ""
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr ""
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr ""
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr ""
@@ -1371,31 +1529,69 @@ msgstr ""
msgid "No file uploaded."
msgstr ""
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
msgstr ""
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr ""
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr ""
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr ""
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr ""
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr ""
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1403,7 +1599,8 @@ msgstr ""
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr ""
@@ -1423,15 +1620,14 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+msgid "Do not block this user."
msgstr ""
#. TRANS: Button label on the user block form.
@@ -1442,15 +1638,14 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr ""
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+msgid "Block this user."
msgstr ""
#. TRANS: Server error displayed when blocking a user fails.
@@ -1458,31 +1653,6 @@ msgstr ""
msgid "Failed to save block information."
msgstr ""
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr ""
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1552,23 +1722,6 @@ msgstr ""
msgid "That address has already been confirmed."
msgstr ""
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr ""
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1593,11 +1746,80 @@ msgid "Conversation"
msgstr ""
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr ""
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr ""
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr ""
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr ""
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr ""
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr ""
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr ""
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1611,14 +1833,14 @@ msgstr ""
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr ""
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr ""
@@ -1638,12 +1860,12 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+msgid "Do not delete this application."
msgstr ""
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+msgid "Delete this application."
msgstr ""
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1652,8 +1874,10 @@ msgid "You must be logged in to delete a group."
msgstr ""
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr ""
@@ -1692,24 +1916,30 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr ""
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+msgid "Delete this group."
msgstr ""
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr ""
@@ -1734,104 +1964,136 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+msgid "Do not delete this notice."
msgstr ""
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
msgstr ""
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr ""
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr ""
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
msgstr ""
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr ""
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr ""
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+msgid "Delete this user."
msgstr ""
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr ""
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr ""
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr ""
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr ""
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr ""
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr ""
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr ""
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr ""
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr ""
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr ""
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr ""
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr ""
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr ""
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1839,98 +2101,103 @@ msgid ""
msgstr ""
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr ""
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr ""
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr ""
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr ""
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
msgstr ""
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr ""
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr ""
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr ""
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr ""
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr ""
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr ""
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr ""
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
msgstr ""
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
msgstr ""
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
msgstr ""
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
-msgstr ""
-
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr ""
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr ""
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
+msgid "No such document \"%s\"."
msgstr ""
#. TRANS: Title for "Edit application" form.
@@ -1945,7 +2212,7 @@ msgid "You must be logged in to edit an application."
msgstr ""
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr ""
@@ -1955,61 +2222,71 @@ msgid "Use this form to edit your application."
msgstr ""
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr ""
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr ""
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr ""
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr ""
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr ""
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr ""
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr ""
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr ""
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr ""
@@ -2020,14 +2297,17 @@ msgid "Edit %s group"
msgstr ""
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr ""
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr ""
@@ -2038,63 +2318,65 @@ msgstr ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr ""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr ""
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr ""
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr ""
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr ""
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr ""
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr ""
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr ""
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr ""
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2105,44 +2387,44 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr ""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr ""
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr ""
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr ""
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2150,323 +2432,382 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr ""
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr ""
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr ""
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr ""
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+msgid "Cannot normalize that email address."
msgstr ""
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr ""
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr ""
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr ""
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
msgstr ""
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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 ""
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr ""
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr ""
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
msgstr ""
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr ""
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr ""
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr ""
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr ""
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr ""
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr ""
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr ""
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr ""
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
msgstr ""
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr ""
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr ""
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr ""
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr ""
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr ""
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr ""
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr ""
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
+msgid "A selection of some great users on %s."
msgstr ""
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr ""
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr ""
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr ""
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr ""
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr ""
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr ""
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr ""
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr ""
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr ""
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr ""
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr ""
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr ""
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr ""
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr ""
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr ""
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr ""
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr ""
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr ""
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr ""
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr ""
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr ""
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr ""
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2475,182 +2816,216 @@ msgid ""
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
msgstr ""
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
msgstr ""
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr ""
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr ""
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr ""
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
msgstr ""
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr ""
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr ""
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr ""
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr ""
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr ""
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr ""
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr ""
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr ""
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr ""
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr ""
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr ""
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr ""
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr ""
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr ""
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr ""
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr ""
-#: actions/groups.php:64
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
#, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr ""
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr ""
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, 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
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr ""
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr ""
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2658,201 +3033,209 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr ""
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr ""
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr ""
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr ""
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr ""
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr ""
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
msgstr ""
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr ""
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr ""
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr ""
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+msgid "Cannot normalize that Jabber ID."
msgstr ""
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+msgid "Not a valid Jabber ID."
msgstr ""
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr ""
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr ""
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
"s for sending messages to you."
msgstr ""
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr ""
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
msgstr ""
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr ""
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr ""
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr ""
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr ""
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr ""
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr ""
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr ""
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr ""
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr ""
@@ -2860,7 +3243,7 @@ msgstr ""
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] ""
@@ -2868,7 +3251,7 @@ msgstr[1] ""
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2877,7 +3260,7 @@ msgstr ""
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -2887,7 +3270,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] ""
@@ -2895,40 +3278,40 @@ msgstr[1] ""
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
msgstr ""
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr ""
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
msgstr ""
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr ""
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr ""
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr ""
@@ -2936,7 +3319,7 @@ msgstr ""
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr ""
@@ -2946,7 +3329,7 @@ msgstr ""
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -2977,176 +3360,192 @@ msgid ""
"Sincerely, %2$s\n"
msgstr ""
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr ""
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr ""
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr ""
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr ""
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr ""
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr ""
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr ""
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr ""
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr ""
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr ""
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr ""
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr ""
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr ""
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr ""
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr ""
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr ""
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr ""
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr ""
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr ""
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr ""
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
msgstr ""
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr ""
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3181,19 +3580,22 @@ msgid "New application"
msgstr ""
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr ""
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr ""
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr ""
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr ""
@@ -3202,11 +3604,21 @@ msgstr ""
msgid "New group"
msgstr ""
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr ""
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr ""
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr ""
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr ""
@@ -3256,44 +3668,56 @@ msgstr ""
msgid "Notice posted"
msgstr ""
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, 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
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr ""
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr ""
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, 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:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr ""
-#: actions/noticesearchrss.php:98
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr ""
#: actions/nudge.php:85
@@ -3332,30 +3756,30 @@ msgid "You have not registered any applications yet."
msgstr ""
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr ""
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr ""
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr ""
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3363,20 +3787,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, php-format
+msgid "\"%s\" not found."
+msgstr ""
+
+#: actions/oembed.php:76
+#, php-format
+msgid "Notice %s not found."
+msgstr ""
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr ""
@@ -3386,6 +3820,16 @@ msgstr ""
msgid "%1$s's status on %2$s"
msgstr ""
+#: actions/oembed.php:95
+#, php-format
+msgid "Attachment %s not found."
+msgstr ""
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3399,16 +3843,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr ""
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr ""
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr ""
@@ -3422,68 +3867,79 @@ msgid "Manage various other options."
msgstr ""
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr ""
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr ""
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr ""
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr ""
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr ""
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr ""
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr ""
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr ""
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr ""
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr ""
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr ""
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr ""
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr ""
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
@@ -3495,7 +3951,8 @@ msgstr ""
msgid "Change your password."
msgstr ""
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr ""
@@ -3503,48 +3960,47 @@ msgstr ""
msgid "Old password"
msgstr ""
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr ""
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
msgstr ""
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr ""
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
msgstr ""
#: actions/passwordsettings.php:117
msgid "Change"
msgstr ""
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr ""
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr ""
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr ""
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr ""
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
msgstr ""
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr ""
@@ -3750,7 +4206,7 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr ""
@@ -3818,14 +4274,17 @@ msgstr ""
msgid "Save paths"
msgstr ""
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, 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
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr ""
@@ -3849,50 +4308,51 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr ""
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr ""
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr ""
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr ""
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -3900,78 +4360,82 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr ""
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr ""
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr ""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr ""
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr ""
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+msgid "Preferred language."
msgstr ""
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr ""
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr ""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -3979,49 +4443,50 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr ""
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
+#: actions/profilesettings.php:291
#, php-format
-msgid "Invalid tag: \"%s\""
+msgid "Invalid tag: \"%s\"."
msgstr ""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
msgstr ""
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
-msgstr ""
-
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
msgstr ""
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr ""
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr ""
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr ""
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4086,6 +4551,12 @@ msgid ""
"tool."
msgstr ""
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, php-format
+msgid "%s updates from everyone."
+msgstr ""
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4128,224 +4599,254 @@ msgstr ""
msgid "Tag cloud"
msgstr ""
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr ""
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr ""
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr ""
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr ""
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr ""
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr ""
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr ""
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr ""
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr ""
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr ""
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr ""
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr ""
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr ""
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr ""
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+msgid "Password saved"
+msgstr ""
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr ""
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
msgstr ""
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr ""
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr ""
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr ""
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr ""
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr ""
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
msgstr ""
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr ""
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr ""
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr ""
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr ""
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr ""
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr ""
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr ""
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr ""
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr ""
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr ""
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+msgid "You cannot register if you don't agree to the license."
msgstr ""
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr ""
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr ""
-#: actions/register.php:351
+#: actions/register.php:340
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:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr ""
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
+"link up to friends and colleagues."
msgstr ""
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr ""
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
msgstr ""
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
msgstr ""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number."
msgstr ""
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4364,13 +4865,13 @@ msgid ""
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
msgstr ""
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4378,77 +4879,80 @@ msgid ""
"microblogging site](%%doc.openmublog%%), enter your profile URL below."
msgstr ""
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr ""
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr ""
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr ""
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
msgstr ""
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr ""
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr ""
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+msgid "Invalid profile URL (bad format)."
msgstr ""
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
msgstr ""
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
msgstr ""
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr ""
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr ""
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
msgstr ""
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr ""
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr ""
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr ""
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr ""
@@ -4494,9 +4998,95 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
#, php-format
-msgid "Replies to %1$s on %2$s!"
+msgid "Replies to %1$s on %2$s."
+msgstr ""
+
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr ""
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr ""
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
msgstr ""
#: actions/revokerole.php:75
@@ -4507,7 +5097,7 @@ msgstr ""
msgid "User doesn't have this role."
msgstr ""
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr ""
@@ -4549,132 +5139,146 @@ msgstr ""
msgid "Save site settings"
msgstr ""
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr ""
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr ""
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr ""
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr ""
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr ""
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr ""
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr ""
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr ""
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr ""
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr ""
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr ""
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr ""
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr ""
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr ""
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr ""
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr ""
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4682,7 +5286,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr ""
@@ -4700,81 +5305,88 @@ msgid "%1$s group, page %2$d"
msgstr ""
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr ""
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr ""
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr ""
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr ""
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr ""
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr ""
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr ""
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr ""
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr ""
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr ""
@@ -4783,7 +5395,7 @@ msgstr ""
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4796,7 +5408,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4806,30 +5418,30 @@ msgid ""
msgstr ""
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr ""
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr ""
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr ""
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr ""
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr ""
@@ -4845,7 +5457,7 @@ msgid "%1$s tagged %2$s"
msgstr ""
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5077,145 +5689,145 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+msgid "Save site notice."
msgstr ""
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr ""
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr ""
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr ""
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr ""
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr ""
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr ""
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr ""
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr ""
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr ""
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr ""
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr ""
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
msgstr ""
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr ""
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr ""
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr ""
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr ""
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr ""
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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 ""
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr ""
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr ""
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr ""
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr ""
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr ""
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr ""
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5223,8 +5835,8 @@ msgid ""
msgstr ""
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+msgid "No code entered."
msgstr ""
#. TRANS: Menu item for site administration
@@ -5296,15 +5908,19 @@ msgstr ""
msgid "Could not save subscription."
msgstr ""
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr ""
@@ -5336,7 +5952,7 @@ msgid "These are the people who listen to %s's notices."
msgstr ""
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5344,7 +5960,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5354,7 +5970,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5385,7 +6001,7 @@ msgstr ""
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5399,23 +6015,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr ""
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, php-format
msgid "Subscription feed for %s (Atom)"
msgstr ""
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr ""
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr ""
@@ -5448,12 +6065,15 @@ msgstr ""
msgid "Tag %s"
msgstr ""
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr ""
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr ""
@@ -5467,15 +6087,16 @@ msgid ""
"separated"
msgstr ""
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+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 ""
@@ -5484,6 +6105,7 @@ msgstr ""
msgid "No such tag."
msgstr ""
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr ""
@@ -5504,7 +6126,7 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5535,12 +6157,11 @@ msgstr ""
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr ""
@@ -5596,117 +6217,151 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+msgid "Save user settings."
msgstr ""
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr ""
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr ""
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
msgid "Accept"
msgstr ""
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
msgstr ""
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
msgid "Reject"
msgstr ""
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
msgstr ""
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr ""
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr ""
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr ""
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+msgid "Listenee URI \"%s\" is too long."
msgstr ""
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+msgid "Listenee URI \"%s\" is a local user."
msgstr ""
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+msgid "Profile URL \"%s\" is for a local user."
msgstr ""
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
msgstr ""
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+msgid "Avatar URL \"%s\" is not valid."
msgstr ""
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Cannot read avatar URL \"%s\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr ""
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr ""
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -5736,7 +6391,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr ""
@@ -5785,7 +6440,7 @@ msgid "Plugins"
msgstr ""
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr ""
@@ -5794,32 +6449,32 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr ""
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr ""
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -5832,7 +6487,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -5841,7 +6496,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -5849,7 +6504,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr ""
@@ -5907,7 +6562,7 @@ msgid "Could not create login token for %s"
msgstr ""
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -5934,71 +6589,71 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr ""
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr ""
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr ""
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr ""
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr ""
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6006,14 +6661,14 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6083,35 +6738,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr ""
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr ""
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr ""
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr ""
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr ""
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6148,211 +6824,214 @@ msgid "Other"
msgstr ""
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr ""
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr ""
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr ""
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr ""
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr ""
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr ""
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr ""
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr ""
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr ""
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr ""
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr ""
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr ""
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr ""
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr ""
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr ""
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr ""
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr ""
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr ""
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr ""
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr ""
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr ""
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr ""
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr ""
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr ""
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr ""
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr ""
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr ""
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr ""
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr ""
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr ""
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr ""
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr ""
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr ""
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr ""
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr ""
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr ""
@@ -6360,7 +7039,7 @@ msgstr ""
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6368,7 +7047,7 @@ msgid ""
msgstr ""
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr ""
@@ -6377,7 +7056,7 @@ msgstr ""
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6386,50 +7065,50 @@ msgid ""
msgstr ""
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr ""
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr ""
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr ""
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr ""
@@ -6438,8 +7117,76 @@ msgstr ""
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
-msgid "Post"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr ""
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr ""
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
msgstr ""
#. TRANS: Client exception thrown when there is no source attribute.
@@ -6512,7 +7259,7 @@ msgid "User configuration"
msgstr ""
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr ""
@@ -6556,19 +7303,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6589,27 +7340,30 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr ""
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr ""
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr ""
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr ""
@@ -6720,17 +7474,22 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr ""
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr ""
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
msgstr ""
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr ""
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr ""
@@ -6759,6 +7518,11 @@ msgstr ""
msgid "Block"
msgstr ""
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr ""
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -6869,7 +7633,7 @@ msgstr ""
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr ""
@@ -6877,7 +7641,7 @@ msgstr ""
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr ""
@@ -7107,24 +7871,24 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr ""
@@ -7165,14 +7929,19 @@ msgstr ""
msgid "Database error"
msgstr ""
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr ""
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr ""
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7189,10 +7958,35 @@ msgctxt "RADIO"
msgid "Off"
msgstr ""
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr ""
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr ""
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
msgstr ""
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
@@ -7200,14 +7994,36 @@ msgstr ""
msgid "Design defaults restored."
msgstr ""
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr ""
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr ""
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr ""
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr ""
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr ""
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr ""
@@ -7224,6 +8040,18 @@ msgstr ""
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr ""
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7258,31 +8086,31 @@ msgstr ""
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr ""
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr ""
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] ""
msgstr[1] ""
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7387,40 +8215,41 @@ msgstr ""
msgid "This page is not available in a media type you accept"
msgstr ""
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr ""
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr ""
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr ""
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr ""
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr ""
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr ""
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr ""
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7428,7 +8257,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7436,7 +8265,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7457,23 +8286,25 @@ msgstr ""
msgid "Leave"
msgstr ""
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr ""
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr ""
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr ""
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7492,14 +8323,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr ""
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7511,7 +8342,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7528,14 +8359,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr ""
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr ""
@@ -7543,7 +8374,7 @@ msgstr ""
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7558,34 +8389,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr ""
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr ""
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
+msgid "You have been nudged by %s"
msgstr ""
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7603,7 +8434,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr ""
@@ -7612,7 +8443,7 @@ msgstr ""
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7633,7 +8464,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr ""
@@ -7643,7 +8474,7 @@ msgstr ""
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -7665,7 +8496,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -7675,7 +8506,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr ""
@@ -7686,7 +8517,7 @@ msgstr ""
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -7713,20 +8544,16 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr ""
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr ""
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr ""
@@ -7753,38 +8580,6 @@ msgstr ""
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -7805,7 +8600,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -7814,7 +8609,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -7846,18 +8641,26 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr ""
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr ""
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr ""
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -7873,11 +8676,11 @@ msgstr ""
msgid "What's up, %s?"
msgstr ""
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr ""
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr ""
@@ -7896,55 +8699,59 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr ""
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr ""
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr ""
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr ""
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr ""
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr ""
@@ -7981,77 +8788,108 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr ""
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr ""
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+msgctxt "MENU"
msgid "Replies"
msgstr ""
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+msgctxt "MENU"
+msgid "Profile"
+msgstr ""
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
msgid "Favorites"
msgstr ""
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr ""
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr ""
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
msgid "Outbox"
msgstr ""
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr ""
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr ""
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr ""
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr ""
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr ""
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr ""
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr ""
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr ""
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr ""
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr ""
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr ""
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8098,7 +8936,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr ""
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr ""
@@ -8188,6 +9026,10 @@ msgstr ""
msgid "Invite friends and colleagues to join you on %s"
msgstr ""
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr ""
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8297,64 +9139,80 @@ msgstr ""
msgid "User %1$s (%2$d) has no profile record."
msgstr ""
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr ""
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr ""
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr ""
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr ""
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr ""
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr ""
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr ""
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr ""
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr ""
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr ""
-#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
-msgid "a few seconds ago"
+#: lib/util.php:305
+msgid "Not allowed to log in."
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1309
+msgid "a few seconds ago"
+msgstr ""
+
+#. TRANS: Used in notices to indicate when the notice was made compared to now.
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8362,12 +9220,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8375,12 +9233,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8388,12 +9246,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8401,18 +9259,13 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr ""
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr ""
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr ""
@@ -8433,30 +9286,17 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr ""
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr ""
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po
index d56739acd1..7db6444adf 100644
--- a/locale/sv/LC_MESSAGES/statusnet.po
+++ b/locale/sv/LC_MESSAGES/statusnet.po
@@ -1,9 +1,10 @@
# Translation of StatusNet - Core to Swedish (Svenska)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Jamminjohn
# Author: Kjell
# Author: McDutchie
+# Author: Nghtwlkr
# --
# This file is distributed under the same license as the StatusNet package.
#
@@ -11,17 +12,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:14+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:39+0000\n"
"Language-Team: Swedish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: sv\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -77,8 +78,9 @@ msgid "Save access settings"
msgstr "Spara inställningar för åtkomst"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -88,13 +90,13 @@ msgstr "Spara inställningar för åtkomst"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Spara"
@@ -102,7 +104,7 @@ msgstr "Spara"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Ingen sådan sida"
@@ -112,6 +114,8 @@ msgstr "Ingen sådan sida"
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -127,13 +131,23 @@ msgstr "Ingen sådan sida"
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -141,15 +155,15 @@ msgstr "Ingen sådan sida"
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Ingen sådan användare."
@@ -163,9 +177,10 @@ msgstr "%1$s och vänner, sida %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s och vänner"
@@ -278,7 +293,7 @@ msgstr "Uppdateringar från %1$s och vänner på %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -310,7 +325,21 @@ msgid ""
msgstr "Du måste ange ett värdet på parametern 'device': sms, im, none"
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Kunde inte uppdatera användare."
@@ -320,18 +349,23 @@ msgstr "Kunde inte uppdatera användare."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Användaren har ingen profil."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Kunde inte spara profil."
@@ -341,8 +375,8 @@ msgstr "Kunde inte spara profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -362,13 +396,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Kunde inte spara dina utseendeinställningar."
@@ -376,48 +411,59 @@ msgstr "Kunde inte spara dina utseendeinställningar."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Kunde inte uppdatera din profils utseende."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr ""
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s tidslinje"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s prenumerationer"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Favoriter"
+msgstr "%s favoriter"
-#: actions/apiatomservice.php:123
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
#, fuzzy, php-format
msgid "%s memberships"
msgstr "%s gruppmedlemmar"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Du kan inte blockera dig själv!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Blockering av användare misslyckades."
@@ -473,7 +519,8 @@ msgstr "Mottagare hittades inte."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Kan inte skicka direktmeddelanden till användare som inte är din vän."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -498,8 +545,9 @@ msgid "This status is already a favorite."
msgstr "Denna status är redan en favorit."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Kunde inte skapa favorit."
@@ -509,7 +557,8 @@ msgid "That status is not a favorite."
msgstr "Denna status är inte en favorit."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Kunde inte ta bort favoriten."
@@ -555,9 +604,9 @@ msgstr "Kunde inte hitta målanvändare."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Smeknamnet används redan. Försök med ett annat."
@@ -565,21 +614,22 @@ msgstr "Smeknamnet används redan. Försök med ett annat."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Inte ett giltigt smeknamn."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Hemsida är inte en giltig webbadress."
@@ -587,23 +637,24 @@ msgstr "Hemsida är inte en giltig webbadress."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Fullständigt namn är för långt (max 255 tecken)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -614,9 +665,9 @@ msgstr[1] "Beskrivning är för lång (max %d tecken)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Beskrivning av plats är för lång (max 255 tecken)."
@@ -626,8 +677,8 @@ msgstr "Beskrivning av plats är för lång (max 255 tecken)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -644,18 +695,16 @@ msgstr "Ogiltigt alias: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Alias \"%s\" används redan. Försök med ett annat."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Alias kan inte vara samma som smeknamn."
@@ -666,28 +715,32 @@ msgstr "Alias kan inte vara samma som smeknamn."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Grupp hittades inte."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Du är redan en medlem i denna grupp."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Du har blivit blockerad från denna grupp av administratören."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Kunde inte ansluta användare %1$s till grupp %2$s."
@@ -699,9 +752,11 @@ msgstr "Du är inte en medlem i denna grupp."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -738,7 +793,7 @@ msgid "Upload failed."
msgstr "Uppladdning misslyckades."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Ogiltig begäran-token eller verifierare."
@@ -759,20 +814,25 @@ msgid "Request token already authorized."
msgstr "Begäran-token är redan auktoriserad."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Det var ett problem med din sessions-token. Var vänlig försök igen."
@@ -790,18 +850,22 @@ msgstr "Databasfel vid infogning av OAuth-applikationsanvändare."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Oväntat inskick av formulär."
@@ -851,29 +915,31 @@ msgstr "Konto"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Smeknamn"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Lösenord"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -946,6 +1012,7 @@ msgstr "Du kan inte ta bort en annan användares status."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -965,39 +1032,52 @@ msgstr "Kan inte upprepa din egen notis."
msgid "Already repeated that notice."
msgstr "Redan upprepat denna notis."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "API-metod hittades inte."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "Format som inte stödjs."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Status borttagen."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Ingen status med det ID:t hittades."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Kan inte ta bort denna notis."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Ta bort notis"
@@ -1055,7 +1135,7 @@ msgstr "%1$s uppdateringar markerade som favorit av %2$s / %2$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Kunde inte generera flöde för grupp - %s"
@@ -1076,13 +1156,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s uppdateringar med svar på uppdatering från %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s publika tidslinje"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s uppdateringar från alla!"
@@ -1130,202 +1211,269 @@ msgstr "Bara användaren kan läsa sina egna brevlådor."
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Hitta innehåll i notiser"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Notis med den ID:n finns inte."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API-metoden är under uppbyggnad."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "API-metod hittades inte."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
+msgid "No such profile."
msgstr "Ingen sådan profil."
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Uppdateringar från %1$s och vänner på %2$s!"
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
#, fuzzy
-msgid "Can't add someone else's subscription"
+msgid "Cannot add someone else's subscription."
msgstr "Kunde inte infoga ny prenumeration."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Hitta innehåll i notiser"
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
#, fuzzy
msgid "Can only fave notices."
msgstr "Hitta innehåll i notiser"
-#: actions/atompubfavoritefeed.php:256
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
#, fuzzy
msgid "Unknown note."
msgstr "Okänd"
-#: actions/atompubfavoritefeed.php:263
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
#, fuzzy
msgid "Already a favorite."
msgstr "Lägg till i favoriter"
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
-msgid "No such profile."
-msgstr "Ingen sådan profil."
-
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s gruppmedlemmar"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "Grupper %s är en medlem i"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Kunde inte infoga ny prenumeration."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Hitta innehåll i notiser"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Okänd"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Alla medlemmar"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Ingen sådan fil."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Kunde inte ta bort favoriten."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Ingen sådan grupp."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Alla medlemmar"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "API-metod hittades inte."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Ingen sådan profil."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Du är inte prenumerat hos den profilen."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Kunde inte spara prenumeration."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Ingen sådan profil."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Du är inte prenumerat hos den profilen."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Kunde inte spara prenumeration."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Personer som prenumererar på %s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Okänd filtyp"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Redan prenumerant!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1334,11 +1482,15 @@ msgstr "Ingen sådan bilaga."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Inget smeknamn."
@@ -1355,7 +1507,7 @@ msgstr "Ogiltig storlek."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1369,41 +1521,51 @@ msgstr ""
"Du kan ladda upp din personliga avatar. Den maximala filstorleken är %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Användare utan matchande profil."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Avatarinställningar"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Orginal"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Förhandsgranska"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Ta bort"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Ladda upp"
@@ -1419,31 +1581,72 @@ msgstr "Beskär"
msgid "No file uploaded."
msgstr "Ingen fil laddades upp."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Välj ett kvadratiskt område i bilden som din avatar"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Förlorade vår fildata."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Avatar uppdaterad."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Misslyckades uppdatera avatar."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Avatar borttagen."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "Bara inloggade användaren kan upprepa notiser."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Bakgrund"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1451,7 +1654,8 @@ msgstr "Du har redan blockerat denna användare."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Blockera användare"
@@ -1474,15 +1678,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Nej"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Blockera inte denna användare"
#. TRANS: Button label on the user block form.
@@ -1493,15 +1697,15 @@ msgstr "Blockera inte denna användare"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Ja"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Blockera denna användare"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1509,31 +1713,6 @@ msgstr "Blockera denna användare"
msgid "Failed to save block information."
msgstr "Misslyckades att spara blockeringsinformation."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Ingen sådan grupp."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1604,23 +1783,6 @@ msgstr "Adresstypen %s känns inte igen."
msgid "That address has already been confirmed."
msgstr "Denna adress har redan blivit bekräftad."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Kunde inte uppdatera användare."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1645,11 +1807,85 @@ msgid "Conversation"
msgstr "Konversationer"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Notiser"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "Bara inloggade användaren kan upprepa notiser."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Du kan inte ta bort användare."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Avatar borttagen."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Skapa ett konto"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Bekräfta"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Du kan inte ta bort användare."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Du kan inte ta bort användare."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1663,14 +1899,14 @@ msgstr "Applikation hittades inte."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Du är inte ägaren av denna applikation."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Det var ett problem med din sessions-token."
@@ -1693,12 +1929,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Ta inte bort denna applikation"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Ta bort denna applikation"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1707,8 +1945,10 @@ msgid "You must be logged in to delete a group."
msgstr "Du måste vara inloggad för att ta bort en grupp."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Inget smeknamn eller ID."
@@ -1750,24 +1990,32 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+#, fuzzy
+msgid "Do not delete this group."
msgstr "Ta inte bort denna grupp"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+#, fuzzy
+msgid "Delete this group."
msgstr "Ta bort denna grupp"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Inte inloggad."
@@ -1794,27 +2042,40 @@ msgstr "Är du säker på att du vill ta bort denna notis?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Ta inte bort denna notis"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Ta bort denna notis"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Du kan inte ta bort användare."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Du kan bara ta bort lokala användare."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Ta bort användare"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Ta bort användare"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1822,78 +2083,102 @@ msgstr ""
"Är du säker på att du vill ta bort denna användare? Det kommer rensa all "
"data om användaren från databasen, utan en säkerhetskopia."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Ta inte bort denna grupp"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Ta bort denna användare"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Utseende"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Ogiltig webbadress för logtyp."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "Ogiltig webbadress för SSL-logtyp."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Tema inte tillgängligt: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Byt logotyp"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Webbplatslogotyp"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "SSL-logotyp"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Byt tema"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Webbplatstema"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Tema för webbplatsen."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Anpassat tema"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Du kan ladda upp ett eget StatusNet-tema som ett .ZIP-arkiv."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Ändra bakgrundsbild"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Bakgrund"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1903,98 +2188,108 @@ msgstr ""
"filstorleken är %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "På"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Av"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Sätt på eller stäng av bakgrundsbild."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Upprepa bakgrundsbild"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Byt färger"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Innehåll"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Sidofält"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Text"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Länkar"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Avancerat"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Anpassad CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Använd standardvärden"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
msgstr "Återställ standardutseende"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Återställ till standardvärde"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Spara"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Spara utseende"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Denna notis är inte en favorit!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Lägg till i favoriter"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Inget sådant dokument \"%s\""
#. TRANS: Title for "Edit application" form.
@@ -2009,7 +2304,7 @@ msgid "You must be logged in to edit an application."
msgstr "Du måste vara inloggad för att redigera en applikation."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Ingen sådan applikation."
@@ -2019,61 +2314,71 @@ msgid "Use this form to edit your application."
msgstr "Använd detta formulär för att redigera din applikation."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Namn krävs."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "Namnet är för långt (max 255 tecken)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Namnet används redan. Prova ett annat."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Beskrivning krävs."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Webbadress till källa är för lång."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "Webbadress till källa är inte giltig."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organisation krävs."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "Organisation är för lång (max 255 tecken)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Hemsida för organisation krävs."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Anrop är för lång."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "Webbadress för anrop är inte giltig."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Kunde inte uppdatera applikation."
@@ -2084,14 +2389,17 @@ msgid "Edit %s group"
msgstr "Redigera %s grupp"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Du måste vara inloggad för att skapa en grupp."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Du måste vara en administratör för att redigera gruppen."
@@ -2102,63 +2410,65 @@ msgstr "Använd detta formulär för att redigera gruppen."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Ogiltigt alias: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Kunde inte uppdatera grupp."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Kunde inte skapa alias."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Alternativ sparade."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "E-postinställningar"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Hantera hur du får e-post från %%site.name%%"
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "E-postadress"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Aktuell, bekräftad e-postadress."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Ta bort"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2171,45 +2481,45 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "E-postadress, såsom \"användarnamn@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Lägg till"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Inkommande e-post"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Jag vill posta notiser genom min e-post."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Skicka e-post till denna adress för att posta nya notiser."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
"Ange en ny e-postadress för att posta till; detta inaktiverar den gamla."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2217,87 +2527,89 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Ny"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "E-postinställningar"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Skicka notiser om nya prenumerationer till mig genom e-post."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Skicka mig e-post när någon lägger till min notis som en favorit."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Skicka mig e-post när någon skickar mig ett privat meddelande."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Skicka mig e-post när någon skickar ett \"@-svar\"."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Tillåt vänner att knuffa mig och skicka e-post till mig."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Publicera ett MicroID för min e-postadress."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "E-postinställningar sparade."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Ingen e-postadress."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
+#: actions/emailsettings.php:388
+#, fuzzy
+msgid "Cannot normalize that email address."
msgstr "Kan inte normalisera den e-postadressen"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Inte en giltig e-postadress."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Det är redan din e-postadress."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Den e-postadressen tillhör redan en annan användare."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Kunde inte infoga bekräftelsekod."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2307,89 +2619,105 @@ msgstr ""
"den."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Ingen väntande bekräftelse att avbryta."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Detta är fel e-postadress."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Kunde inte ta bort e-postbekräftelse."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "E-postbekräftelse avbruten."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Det är inte din e-postadress."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "E-postadressen togs bort."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Ingen inkommande e-postadress."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Kunde inte uppdatera användaruppgift."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Inkommande e-postadress borttagen."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Ny inkommande e-postadress tillagd."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Denna notis är redan en favorit!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Ta bort märkning som favorit"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Populära notiser"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Populära notiser, sida %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "De mest populära notiserna på webbplatsen just nu."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Favoritnotiser kommer upp på denna sida, men ingen har markerat några "
"favoriter än."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2398,7 +2726,9 @@ msgstr ""
"Var den första att lägga en notis till dina favoriter genom att klicka på "
"favorit-knappen bredvid någon notis du gillar."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2407,142 +2737,186 @@ msgstr ""
"Varför inte [registrera ett konto](%%action.register%%) och vara först med "
"att lägga en notis till dina favoriter!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%ss favoritnotiser"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Uppdateringar markerade som favorit av %1$s på %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Profilerade användare"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Profilerade användare, sida %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "Ett urval av några av de stora användarna på %s"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Ingen notis-ID."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Ingen notis."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Inga bilagor."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Inga uppladdade bilagor."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Väntade mig inte denna respons!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Användaren som lyssnas på existerar inte."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Du kan använda den lokala prenumerationen!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Denna användaren har blockerat dig från att prenumerera."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Du har inte tillstånd."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Kunde inte konvertera token för begäran till token för åtkomst."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Fjärrtjänsten använder en okänd version av OMB-protokollet."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Fel vid uppdatering av fjärrprofil."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Ingen sådan fil."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Kan inte läsa fil."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Ogiltig roll."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Denna roll är reserverad och kan inte ställas in"
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Du kan inte bevilja användare roller på denna webbplats."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Användaren har redan denna roll."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Ingen profil angiven."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Ingen profil med det ID:t."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Ingen grupp angiven."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Bara en administratör kan blockera gruppmedlemmar."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Användaren är redan blockerad från grupp."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Användare är inte en gruppmedlem."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Blockera användare från grupp"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2554,54 +2928,66 @@ msgstr ""
"kunna prenumerera på gruppen i framtiden."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Blockera inte denna användare från denna grupp"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Blockera denna användare från denna grupp"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Databasfel vid blockering av användare från grupp."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Ingen ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Du måste vara inloggad för att redigera en grupp."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Gruppens utseende"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
"Anpassa hur din grupp ser ut genom att välja bakgrundbild och färgpalett."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Kunde inte uppdatera dina utseendeinställningar."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "Kunde inte spara dina utseendeinställningar."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Utseendeinställningar sparade."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Gruppens logotyp"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2609,100 +2995,116 @@ msgstr ""
"Du kan ladda upp en logotypbild för din grupp. Den maximala filstorleken är %"
"s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Ladda upp"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Beskär"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Välj ett kvadratiskt område i bilden som logotyp"
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Logtyp uppdaterad."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Misslyckades uppdatera logtyp."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s gruppmedlemmar"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s gruppmedlemmar, sida %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "En lista av användarna i denna grupp."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Administratör"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Blockera"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Blockera denna användare"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Gör användare till en administratör för gruppen"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Gör till administratör"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Gör denna användare till administratör"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Uppdateringar från medlemmar i %1$s på %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Grupper"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Grupper, sida %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"%%%%site.name%%%% grupper låter dig hitta och samtala med personer med "
"liknande intressen. Efter att ha gått med i en grupp kan du skicka "
@@ -2710,11 +3112,13 @@ msgstr ""
"inte någon grupp du gillar? Prova att [söka efter en](%%%%action.groupsearch%"
"%%%) eller [starta din egen!](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Skapa en ny grupp"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2724,25 +3128,33 @@ msgstr ""
"beskrivning. Skilj söktermerna åt med mellanslag; de måste vara minst tre "
"tecken långa."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Gruppsökning"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Inga resultat."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Om du inte kan hitta gruppen du söker efter kan du [skapa den](%%action."
"newgroup%%) själv."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2752,137 +3164,147 @@ msgstr ""
"%action.newgroup%%) själv!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Bara en administratör kan häva blockering av gruppmedlemmar."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Användare är inte blockerad från grupp."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Fel vid hävning av blockering."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Inställningar för snabbmeddelanden"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Du kan skicka och ta emot notiser genom Jabber/GTalk-[snabbmeddelanden](%%"
"doc.im%%). Konfigurera din adress och dina inställningar nedan."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM är inte tillgänglig."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Adress för snabbmeddelanden"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Aktuell bekräftad Jabber/Gtalk-adress."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Väntar på bekräftelse för denna adress. Kontrollera ditt Jabber/GTalk-konto "
"för vidare instruktioner. (La du till %s i din kompislista?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber- eller GTalk-adress, som \"användarnamn@example.org\". Se först till "
"att lägga till %s i din kompislista i din IM-klient eller hos GTalk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Inställningar för snabbmeddelanden"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Skicka notiser till mig genom Jabber/GTalk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "Posta en notis när min Jabber/GTalk-status ändras."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
"Skicka svar till mig genom Jabber/GTalk från personer som jag inte "
"prenumererar på."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Publicera ett MicroID för min Jabber/GTalk-adress."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Inställningar sparade."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Inget Jabber-ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Kan inte normalisera detta Jabber-ID"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Inte ett giltigt Jabber-ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Detta är redan ditt Jabber-ID"
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber-ID:t tillhör redan en annan användare."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2891,73 +3313,79 @@ msgstr ""
"En bekräftelsekod skickades till den IM-adress du angav. Du måste godkänna "
"att %s får skicka meddelanden till dig."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Detta är fel IM-adress."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+#, fuzzy
+msgid "Could not delete IM confirmation."
msgstr "Kunde inte ta bort bekräftelse för snabbmeddelanden."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Bekräftelse för snabbmeddelanden avbruten."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Detta är inte ditt Jabber-ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Adressen för snabbmeddelanden togs bort."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Inkorg för %1$s - sida %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Inkorg för %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Detta är din inkorg som innehåller dina inkommande privata meddelanden."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Inbjudningar har blivit inaktiverade."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Du måste vara inloggad för att kunna bjuda in andra användare till %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Ogiltig e-postadress: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Inbjudningar skickade"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Bjud in nya användare"
@@ -2965,7 +3393,7 @@ msgstr "Bjud in nya användare"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Du prenumererar redan på denna användare:"
@@ -2973,7 +3401,7 @@ msgstr[1] "Du prenumererar redan på dessa användare:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2982,7 +3410,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -2997,7 +3425,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
#, fuzzy
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
@@ -3006,7 +3434,7 @@ msgstr[1] "Inbjudning(ar) har skickats till följande personer:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3015,7 +3443,7 @@ msgstr ""
"registrerar sig. Tack för att du hjälper oss växa!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3023,27 +3451,28 @@ msgstr ""
"denna tjänst."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "E-postadresser"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "Adresser till vänner att bjuda in (en rad per adress)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Personligt meddelande"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Om du vill, skriv ett personligt meddelande till inbjudan."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Skicka"
@@ -3051,7 +3480,7 @@ msgstr "Skicka"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s har bjudit in dig att gå med dem på %2$s"
@@ -3061,7 +3490,7 @@ msgstr "%1$s har bjudit in dig att gå med dem på %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3118,167 +3547,183 @@ msgstr ""
"\n"
"Vänliga hälsningar, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Du måste vara inloggad för att kunna gå med i en grupp."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s gick med i grupp %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Du måste vara inloggad för att lämna en grupp."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Du är inte en medlem i den gruppen."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s lämnade grupp %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Licens"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Licens för denna StatusNet-webbplats"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Ogiltigt licensval."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Ogiltig välkomsttext. Maximal längd är 255 tecken."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr ""
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Privat"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Alla rättigheter reserverade"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr ""
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Typ"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Välj licens"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Licensdetaljer"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Ägare"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Licenstitel"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Titeln på licensen."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "Licens-URL"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL för mer information om licensen."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Spara"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Spara licensinsällningar"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Redan inloggad."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Felaktigt användarnamn eller lösenord."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Fel vid inställning av användare. Du har sannolikt inte tillstånd."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Logga in"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Logga in på webbplatsen"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Kom ihåg mig"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "Logga in automatiskt i framtiden; inte för delade datorer!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Tappat bort eller glömt ditt lösenord?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3286,11 +3731,11 @@ msgstr ""
"Av säkerhetsskäl, var vänlig och skriv in ditt användarnamn och lösenord "
"igen innan du ändrar dina inställningar."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Logga in med ditt användarnamn och lösenord."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3327,19 +3772,22 @@ msgid "New application"
msgstr "Ny applikation"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Du måste vara inloggad för att registrera en applikation."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Använd detta formulär för att registrera en ny applikation."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Webbadress till källa krävs."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Kunde inte skapa applikation."
@@ -3348,11 +3796,23 @@ msgstr "Kunde inte skapa applikation."
msgid "New group"
msgstr "Ny grupp"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Du får inte ta bort denna grupp."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Använd detta formulär för att skapa en ny grupp."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Alias kan inte vara samma som smeknamn."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Nytt meddelande"
@@ -3404,7 +3864,9 @@ msgstr "Ny notis"
msgid "Notice posted"
msgstr "Notis postad"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3413,16 +3875,21 @@ msgstr ""
"Sök efter innehåll i notiser på %%site.name%%. Skilj söktermerna åt med "
"mellanslag; de måste vara minst tre tecken långa."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Textsökning"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Sökresultat för \"%1$s\" på %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3431,7 +3898,9 @@ msgstr ""
"Var den första att [skriva i detta ämne](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3440,14 +3909,17 @@ msgstr ""
"Varför inte [registrera ett konto](%%%%action.register%%%%) och vara först "
"med att [skriva i detta ämne](%%%%action.newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Uppdateringar med \"%s\""
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Uppdateringar som matchar söksträngen \"%1$s\" på %2$s!"
#: actions/nudge.php:85
@@ -3489,30 +3961,30 @@ msgid "You have not registered any applications yet."
msgstr "Du har inte registrerat några applikationer än."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Anslutna applikationer"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Du är inte en användare av den applikationen."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Kunde inte återkalla åtkomst för applikation: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3520,20 +3992,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Du har inte tillåtit några applikationer att använda ditt konto."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "API-metod hittades inte."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "API-metod hittades inte."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Notisen har ingen profil."
@@ -3543,6 +4025,16 @@ msgstr "Notisen har ingen profil."
msgid "%1$s's status on %2$s"
msgstr "%1$ss status den %2$s"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Mottagare hittades inte."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3556,16 +4048,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Endast %s-webbadresser över vanlig HTTP."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Ett dataformat som inte stödjs"
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Personsökning"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Notissökning"
@@ -3579,69 +4072,80 @@ msgid "Manage various other options."
msgstr "Hantera diverse andra alternativ."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (fri tjänst)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Förkorta URL:er med"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Automatiska förkortningstjänster att använda."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Visa profilutseenden"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Visa eller göm profilutseenden."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Namnet på URL-förkortningstjänsen är för långt (max 50 tecken)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "Ingen användar-ID angiven."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Ingen inloggnings-token angiven."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Ingen token för inloggning begärd."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Ogiltig inloggnings-token angiven."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Inloggnings-token förfallen."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Utkorg för %1$s - sida %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Utkorg för %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "Detta är din utkorg som innehåller privata meddelanden du har skickat."
@@ -3653,7 +4157,8 @@ msgstr "Byt lösenord"
msgid "Change your password."
msgstr "Byt ditt lösenord."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Byte av lösenord"
@@ -3661,48 +4166,50 @@ msgstr "Byte av lösenord"
msgid "Old password"
msgstr "Gammalt lösenord"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Nytt lösenord"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "Minst 6 tecken"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Bekräfta"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "Samma som lösenordet ovan"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Ändra"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Lösenordet måste vara minst 6 tecken."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Lösenorden matchar inte."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Felaktigt gammalt lösenord"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Fel vid sparande av användare; ogiltig."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Kan inte spara nytt lösenord."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Lösenord sparat."
@@ -3915,7 +4422,7 @@ msgstr "Katalogsökväg till lokaliseringfiler (locales)"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Bilagor"
@@ -3987,7 +4494,9 @@ msgstr "Server att dirigera SSL-begäran till."
msgid "Save paths"
msgstr "Spara sökvägar"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3996,7 +4505,8 @@ msgstr ""
"Sök efter personer på %%site.name%% efter deras namn, plats eller intressen. "
"Skilj söktermerna åt med mellanslag; de måste vara tre tecken långa."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Personsökning"
@@ -4020,12 +4530,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "Licensen för notiser ‘%1$s’ är inte förenlig webbplatslicensen ‘%2$s’."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profilinställningar"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4033,33 +4543,34 @@ msgstr ""
"dig."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profilinformation"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Fullständigt namn"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Hemsida"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL till din hemsida, blogg eller profil på en annan webbplats."
@@ -4067,7 +4578,7 @@ msgstr "URL till din hemsida, blogg eller profil på en annan webbplats."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4075,74 +4586,81 @@ msgstr[0] "Beskriv dig själv och dina intressen med högst 140 tecken"
msgstr[1] "Beskriv dig själv och dina intressen med högst 140 tecken"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Beskriv dig själv och dina intressen"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Biografi"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Plats"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Var du håller till, såsom \"Stad, Län, Land\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Dela min nuvarande plats när jag skickar notiser"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Taggar"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Taggar för dig själv (bokstäver, nummer, -, ., och _), separerade med "
"kommatecken eller mellanslag"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Språk"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Föredraget språk"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Tidszon"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "I vilken tidszon befinner du dig normalt?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Prenumerera automatiskt på den som prenumererar på mig (bäst för icke-"
"människa) "
@@ -4150,7 +4668,7 @@ msgstr ""
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4158,50 +4676,54 @@ msgstr[0] "Biografin är för lång (max %d tecken)."
msgstr[1] "Biografin är för lång (max %d tecken)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Tidszon inte valt."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Språknamn är för långt (max 50 tecken)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Ogiltig tagg: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+#, fuzzy
+msgid "Could not update user for autosubscribe."
msgstr "Kunde inte uppdatera användaren för automatisk prenumeration."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
+#: actions/profilesettings.php:405
+#, fuzzy
+msgid "Could not save location prefs."
msgstr "Kunde inte spara platsinställningar."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Kunde inte spara profil."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Kunde inte spara taggar."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Inställningar sparade."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Skapa ett konto"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4277,6 +4799,12 @@ msgstr ""
"Mikroblogg)tjänst baserad på den fria programvaran [StatusNet](http://status."
"net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s uppdateringar från alla!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4321,35 +4849,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Taggmoln"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Du är redan inloggad!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Ingen sådan återskapningskod."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Inte en återskapningskod."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Återskapningskod för okänd användare."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Fel med bekräftelsekod."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Denna bekräftelsekod är för gammal. Var vänlig börja om igen."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Kunde inte uppdatera användaren med bekräftad e-postadress."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4357,68 +4893,100 @@ msgstr ""
"Om du har glömt eller förlorat ditt lösenord kan du få ett nytt skickat till "
"den e-postadress du har sparat i ditt konto."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Du har blivit identifierad. Ange ett nytt lösenord nedan. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Du har blivit identifierad. Ange ett nytt lösenord nedan."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Återskapande av lösenord"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Smeknamn eller e-postadress"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"Ditt användarnamn på denna server, eller din registrerade e-postadress."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Återskapa"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Återskapa"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Återställ lösenord"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Återskapa lösenord"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Återskapande av lösenord begärd"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Lösenord sparat."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Okänd funktion"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "Minst 6 tecken, och glöm inte bort det!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Återställ"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Skriv in ett smeknamn eller en e-postadress."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Ingen användare med den e-postadressen eller användarnamn."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Ingen registrerad e-postadress för den användaren."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Fel vid sparande av adressbekräftelse."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4426,125 +4994,121 @@ msgstr ""
"Instruktioner för att återställa ditt lösenord har skickats till e-"
"postadressen som är registrerat till ditt konto "
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Oväntad återställning av lösenord."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Lösenordet måste vara minst 6 tecken."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Lösenord och bekräftelse matchar inte."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Fel uppstog i användarens inställning"
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Nya lösenordet sparat. Du är nu inloggad."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "Tyvärr, bara inbjudna personer kan registrera sig."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Tyvärr, ogiltig inbjudningskod."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Registreringen genomförd"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Registrera"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Registrering inte tillåten."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Du kan inte registrera dig om du inte godkänner licensen."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "E-postadressen finns redan."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Ogiltigt användarnamn eller lösenord."
-#: actions/register.php:351
+#: actions/register.php:340
+#, fuzzy
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Med detta formulär kan du skapa ett nytt konto. Du kan sedan posta notiser "
"och ansluta till vänner och kollegor. "
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 små bokstäver eller nummer, inga punkter eller mellanslag. Måste fyllas "
-"i."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "Minst 6 tecken. Måste fyllas i."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Samma som lösenordet ovan. Måste fyllas i."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "E-post"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Används endast för uppdateringar, tillkännagivanden och återskapande av "
"lösenord"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "Längre namn, förslagsvis ditt \"verkliga\" namn"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL till din hemsida, blogg eller profil på en annan webbplats."
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Var du håller till, såsom \"Stad, Län, Land\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
"Jag förstår att innehåll och data av %1$s är privata och konfidentiella."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Upphovsrätten till min text och mina filer innehas av %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Upphovsrätten till min text och mina filer är fortsatt min."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Alla rättigheter reserverade."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4553,7 +5117,7 @@ msgstr ""
"Mina texter och filer är tillgängliga under %s med undantag av den här "
"privata datan: lösenord, e-postadress, IM-adress, telefonnummer."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4586,7 +5150,7 @@ msgstr ""
"Tack för att du anmält dig och vi hoppas att du kommer tycka om att använda "
"denna tjänst."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4594,7 +5158,7 @@ msgstr ""
"(Du kommer få ett meddelande med e-post inom kort med instruktioner hur du "
"bekräftar din e-postadress.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4606,79 +5170,88 @@ msgstr ""
"[kompatibel mikrobloggwebbplats](%%doc.openmublog%%), fyll i din profils URL "
"nedan."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Fjärrprenumerera"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Prenumerera på en fjärranvändare"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Användarens smeknamn"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Smeknamnet på användaren du vill följa"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profil-URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+#, fuzzy
+msgid "URL of your profile on another compatible microblogging service."
msgstr "URL till din profil på en annan kompatibel mikrobloggtjänst"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Prenumerera"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "Ogiltig profil-URL (dåligt format)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Inte en giltig profil-URL (inget YADIS-dokument eller ogiltig XRDS "
"definerad)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "Det där är en lokal profil! Logga in för att prenumerera."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
msgstr "Kunde inte få en token för begäran."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Bara inloggade användaren kan upprepa notiser."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Ingen notis angiven."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "Du kan inte upprepa din egna notis."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Du har redan upprepat denna notis."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Upprepad"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Upprepad!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Svarat till %s"
@@ -4728,11 +5301,105 @@ msgstr ""
"Var den första att [skriva i detta ämne](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Svar till %1$s på %2$s"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "Bara inloggade användaren kan upprepa notiser."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Du har inte registrerat några applikationer än."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Ladda upp fil"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Den uppladdade filen överstiger upload_max_filesize-direktivet i php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Den uppladdade filen överstiger MAX_FILE_SIZE-direktivet som var angivet i "
+"HTML-formuläret."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Den uppladdade filen var bara delvis uppladdad."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Saknar en tillfällig mapp."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Misslyckades att skriva fil till disk."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Filuppladdningen stoppad pga filändelse"
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Systemfel vid uppladdning av fil."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Alla medlemmar"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Ladda upp fil"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Du kan inte återkalla användarroller på denna webbplats."
@@ -4741,7 +5408,7 @@ msgstr "Du kan inte återkalla användarroller på denna webbplats."
msgid "User doesn't have this role."
msgstr "Användare har inte denna roll."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4783,85 +5450,87 @@ msgstr "Sätt på felsökningsutdata för sessioner."
msgid "Save site settings"
msgstr "Spara webbplatsinställningar"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Du måste vara inloggad för att se en applikation."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Applikationsprofil"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Ikon"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Namn"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organisation"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Beskrivning"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Statistik"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Skapad av %1$s - %2$s standardåtkomst - %3$d användare"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Åtgärder för applikation"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Återställ nyckel & hemlighet"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Ta bort"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Information om applikation"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Nyckel för konsument"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Hemlighet för konsument"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL för begäran-token"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL för åtkomst-token"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Tillåt URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4869,36 +5538,43 @@ msgstr ""
"Notera: Vi stöjder HMAC-SHA1-signaturer. Vi stödjer inte metoden med "
"klartextsignatur."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Är du säker på att du vill återställa din konsumentnyckel och -hemlighet?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%1$ss favoritnotiser, sida %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Kunde inte hämta favoritnotiser."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Flöde för %ss favoriter (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Flöde för %ss favoriter (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Flöde för %ss favoriter (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4907,7 +5583,9 @@ msgstr ""
"bredvid någon notis du skulle vilja bokmärka för senare tillfälle eller för "
"att sätta strålkastarljuset på."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4916,7 +5594,10 @@ msgstr ""
"%s har inte lagt till några favoritnotiser ännu. Posta något intressant de "
"skulle lägga till sina favoriter :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4926,7 +5607,8 @@ msgstr ""
"Varför inte [registrera ett konto](%%action.register%%) och vara först med "
"att lägga en notis till dina favoriter!"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Detta är ett sätt att dela med av det du gillar."
@@ -4944,81 +5626,88 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s grupp, sida %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Grupprofil"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Notis"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Alias"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Åtgärder för grupp"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Flöde av notiser för %s grupp (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Flöde av notiser för %s grupp (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Flöde av notiser för %s grupp (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF för %s grupp"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Medlemmar"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Ingen)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Alla medlemmar"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Skapad"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Medlemmar"
@@ -5027,7 +5716,7 @@ msgstr "Medlemmar"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5045,7 +5734,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5059,30 +5748,30 @@ msgstr ""
"sina liv och intressen. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Administratörer"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Inget sådant meddelande."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Endast avsändaren och mottagaren kan läsa detta meddelande."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Meddelande till %1$s på %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Meddelande från %1$s på %2$s"
@@ -5098,7 +5787,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s taggade %2$d"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5346,74 +6035,76 @@ msgstr "Text för webbplatsnotis (max 255 tecken; HTML ok)"
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "Spara webbplatsnotis"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Inställningar för SMS"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Du kan ta emot SMS-meddelanden genom e-post från %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS är inte tillgängligt."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS-adress"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Nuvarande bekäftat telefonnummer för SMS."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Väntar bekräftelse för detta telefonnummer."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Bekräftelsekod"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Fyll i koden du mottog i din telefon."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Bekräfta"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Telefonnummer för SMS"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
+#: actions/smssettings.php:152
+#, fuzzy
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "Telefonnummer, inga punkter eller mellanslag, med landskod"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMS-inställningar"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5422,32 +6113,32 @@ msgstr ""
"debitera mig."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "SMS-inställningar sparade."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Inget telefonnummer."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Ingen operatör vald."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Detta är redan ditt telefonnummer."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Detta telefonnumr tillhör redan en annan användare."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5456,39 +6147,39 @@ msgstr ""
"din telefon för koden och instruktioner om hur du använder den."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Detta är fel bekräftelsenummer."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS-bekräftelse avbruten."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Detta är inte ditt telefonnummer."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Telefonnummer för SMS togs bort."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Mobiloperatör"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Välj en operatör"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5499,8 +6190,9 @@ msgstr ""
"på %s och berätta."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
+#: actions/smssettings.php:535
+#, fuzzy
+msgid "No code entered."
msgstr "Ingen kod ifylld"
#. TRANS: Menu item for site administration
@@ -5572,15 +6264,19 @@ msgstr "Du är inte prenumerat hos den profilen."
msgid "Could not save subscription."
msgstr "Kunde inte spara prenumeration."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Denna åtgärd accepterar endast POST-begäran."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Du kan inte prenumerera på en 0MB 0.1-fjärrprofil med denna åtgärd."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Prenumerant"
@@ -5612,7 +6308,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Det är dessa personer som lyssnar på %ss notiser."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5623,7 +6319,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s har inte några prenumeranter. Vill du bli först?"
@@ -5633,7 +6329,7 @@ msgstr "%s har inte några prenumeranter. Vill du bli först?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5666,7 +6362,7 @@ msgstr "Det är dessa personer vars notiser %s lyssnar på."
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5686,23 +6382,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s lyssnar inte på någon."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "Flöde av notiser för %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5735,12 +6432,15 @@ msgstr "Inget ID-argument."
msgid "Tag %s"
msgstr "Tagg %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Användarprofil"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Foto"
@@ -5756,16 +6456,17 @@ msgstr ""
"Taggar för denna användare (bokstäver, nummer, -, ., och _), separerade med "
"kommatecken eller mellanslag"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Ogiltig tagg: \"%s\""
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
msgstr ""
"Du kan bara tagga personer du prenumererar på eller som prenumererar på dig."
-#: actions/tagother.php:200
-msgid "Could not save tags."
-msgstr "Kunde inte spara taggar."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5776,6 +6477,7 @@ msgstr ""
msgid "No such tag."
msgstr "Ingen sådan tagg."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Du har inte blockerat denna användared."
@@ -5796,7 +6498,7 @@ msgstr "Ingen profil-ID i begäran."
msgid "Unsubscribed"
msgstr "Prenumeration avslutad"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5830,12 +6532,11 @@ msgstr "Ogiltig välkomsttext. Maximal längd är 255 tecken."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, fuzzy, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Ogiltig standardprenumeration: '%1$s' är inte användare."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5894,55 +6595,71 @@ msgstr "Hurvida användare skall tillåtas bjuda in nya användare."
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Spara webbplatsinställningar"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Godkänn prenumeration"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
+#, 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”."
+"click \"Reject\"."
msgstr ""
"Vänligen kontrollera dessa uppgifter för att försäkra dig om att du vill "
"prenumerera på den här användarens notiser. Om du inte bett att prenumerera "
"på någons meddelanden, klicka på \"Avvisa\"."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Licens"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Acceptera"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Prenumerera på denna användare"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Avvisa"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Avvisa denna prenumeration"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Ingen begäran om godkännande!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Prenumeration godkänd"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5952,11 +6669,12 @@ msgstr ""
"med webbplatsens instruktioner hur du bekräftar en prenumeration. Din "
"prenumerations-token är:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Prenumeration avvisad"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5966,55 +6684,80 @@ msgstr ""
"webbplatsens instruktioner för detaljer om hur du fullständingt avvisar "
"prenumerationen."
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "URI för lyssnare '%s' hittades inte här."
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "Lyssnar-URI '%s' är för lång."
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "Lyssnar-URI '%s' är en lokal användare."
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "Profil-URL ‘%s’ är för en lokal användare."
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+"Licensen för lyssnarströmmen '%1$s' är inte förenlig med webbplatslicensen '%"
+"2$s'."
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "Avatar-URL ‘%s’ är inte giltig."
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Kan inte läsa avatar-URL '%s'."
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "Fel bildtyp för avatar-URL '%s'."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Profilutseende"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
"Anpassa hur din profil ser ut genom att välja bakgrundbild och färgpalett."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Smaklig måltid!"
@@ -6045,7 +6788,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Uppdateringar från %1$s på %2$s!"
@@ -6106,7 +6849,7 @@ msgid "Plugins"
msgstr "Insticksmoduler"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Version"
@@ -6115,32 +6858,32 @@ msgid "Author(s)"
msgstr "Författare"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Markera som favorit"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) lade till din notis som en favorit"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Webbadressen '%s' kan inte bearbeta"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Robin tycker att något är omöjligt"
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, fuzzy, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6157,7 +6900,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, fuzzy, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6166,7 +6909,7 @@ msgstr[1] "En så här stor fil skulle överskrida din användarkvot på %d byte
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, fuzzy, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6176,7 +6919,7 @@ msgstr[1] ""
"En sådan här stor fil skulle överskrida din månatliga kvot på %d byte."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Ogiltigt filnamn."
@@ -6234,7 +6977,7 @@ msgid "Could not create login token for %s"
msgstr "Kunde inte skapa inloggnings-token för %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Inget databasnamn eller DSN funnen någonstans."
@@ -6261,23 +7004,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Ingen sådan profil (%1$d) för notis (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Databasfel vid infogning av hashtag: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Problem vid sparande av notis. För långt."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Problem vid sparande av notis. Okänd användare."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6285,7 +7028,7 @@ msgstr ""
"minuter."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6294,43 +7037,43 @@ msgstr ""
"om ett par minuter."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Du är utestängd från att posta notiser på denna webbplats."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Problem med att spara notis."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
#, fuzzy
msgid "Bad type provided to saveKnownGroups."
msgstr "Dålig typ tillhandahållen saveKnownGroups"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Problem med att spara gruppinkorg."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Kunde inte spara lokal gruppinformation."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6338,14 +7081,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "Kan inte återkalla roll \"%1$s\" för användare #%2$d; finns inte."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr "Kan inte återkalla roll \"%1$s\" för användare #%2$d; databasfel."
@@ -6415,35 +7158,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Välkommen till %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Ingen enskild användare definierad för enanvändarläge."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Kunde inte skapa grupp."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Kunde inte ställa in grupp-URI."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Kunde inte ställa in gruppmedlemskap."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Kunde inte spara lokal gruppinformation."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Du kan inte ta bort användare."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6480,211 +7244,214 @@ msgid "Other"
msgstr "Övrigt"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Namnlös sida"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Visa mer"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Primär webbplatsnavigation"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Personlig profil och vänners tidslinje"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Personligt"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Ändra din e-post, avatar, lösenord, profil"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Konto"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Anslut till tjänster"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Anslut"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Ändra webbplatskonfiguration"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Administratör"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Bjud in vänner och kollegor att gå med dig på %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Bjud in"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Logga ut från webbplatsen"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Logga ut"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Skapa ett konto"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Registrera"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Logga in på webbplatsen"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Logga in"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Hjälp mig!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Hjälp"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Sök efter personer eller text"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Sök"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Webbplatsnotis"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Lokala vyer"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Sidnotis"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Sekundär webbplatsnavigation"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Hjälp"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Om"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "Frågor & svar"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Användarvillkor"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Sekretess"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Källa"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Kontakt"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Emblem"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Programvarulicens för StatusNet"
@@ -6692,7 +7459,7 @@ msgstr "Programvarulicens för StatusNet"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6702,7 +7469,7 @@ msgstr ""
"%%](%%site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** är en mikrobloggtjänst."
@@ -6711,7 +7478,7 @@ msgstr "**%%site.name%%** är en mikrobloggtjänst."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6723,51 +7490,51 @@ msgstr ""
"fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Licens för webbplatsinnehåll"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Innehåll och data av %1$s är privat och konfidensiell."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr "Innehåll och data copyright av %1$s. Alla rättigheter reserverade."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Innehåll och data copyright av medarbetare. Alla rättigheter reserverade."
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "Innehåll och data på %1$s är tillgänglig under licensen %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Numrering av sidor"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Senare"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Tidigare"
@@ -6776,10 +7543,80 @@ msgstr "Tidigare"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "Förväntade ett flödes rotelement, men fick ett helt XML-dokument."
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Okänt språk \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Foto"
+msgid "Cannot force remote user to subscribe."
+msgstr "Ange namnet på användaren att prenumerara på."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Okänd filtyp"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Du är redan en medlem i denna grupp."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Hitta innehåll i notiser"
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Ingen sådan användare."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6851,7 +7688,7 @@ msgid "User configuration"
msgstr "Konfiguration av användare"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Användare"
@@ -6896,19 +7733,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6931,28 +7772,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Kunde inte infoga meddelande."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Databasfel vid infogning av OAuth-applikationsanvändare."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "Databasfel vid infogning av OAuth-applikationsanvändare."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Ikon för denna applikation"
@@ -7064,17 +7909,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Återkalla"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Ta inte bort denna grupp"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Författare"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Tillhandahållare"
@@ -7103,6 +7954,11 @@ msgstr "Byte av lösenord är inte tillåtet."
msgid "Block"
msgstr "Blockera"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Blockera denna användare"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7216,7 +8072,7 @@ msgstr "Fullständigt namn: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Plats: %s"
@@ -7224,7 +8080,7 @@ msgstr "Plats: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Hemsida: %s"
@@ -7495,26 +8351,26 @@ msgstr ""
"tracking - inte implementerat än.\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Ingen konfigurationsfil hittades. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "Jag letade efter konfigurationsfiler på följande platser: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Du kanske vill köra installeraren för att åtgärda detta."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Gå till installeraren."
@@ -7555,14 +8411,19 @@ msgstr "Tillåt anslutna applikationer"
msgid "Database error"
msgstr "Databasfel"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Ta bort denna användare"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Ladda upp fil"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7581,25 +8442,74 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Av"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Återställ"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Byt färger"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Använd standardvärden"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Återställ standardutseende"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Återställ till standardvärde"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Spara utseende"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Kunde inte uppdatera dina utseendeinställningar."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Standardvärden för utseende återställda."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Kunde inte återkalla åtkomst för applikation: %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Avmarkera denna notis som favorit"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Ta bort märkning som favorit"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Markera denna notis som favorit"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Markera som favorit"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7616,6 +8526,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Alla medlemmar"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7650,33 +8573,33 @@ msgstr "Gå"
msgid "Grant this user the \"%s\" role"
msgstr "Bevilja denna användare \"%s\"-rollen"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL till gruppen eller ämnets hemsida eller blogg"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Beskriv gruppen eller ämnet"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Beskriv gruppen eller ämnet med högst %d tecken"
msgstr[1] "Beskriv gruppen eller ämnet med högst %d tecken"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "Plats för gruppen, om den finns, såsom \"Stad, Län, Land\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, fuzzy, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7783,40 +8706,41 @@ msgstr "Taggar i %s grupps notiser"
msgid "This page is not available in a media type you accept"
msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Bildfilens format stödjs inte."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Denna fil är för stor. Den maximala filstorleken är %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Bitvis uppladdad."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Systemfel vid uppladdning av fil."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Inte en bildfil eller så är filen korrupt."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Förlorade vår fil."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Okänd filtyp"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7824,7 +8748,7 @@ msgstr[0] "%dMB"
msgstr[1] "%dMB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7832,7 +8756,7 @@ msgstr[0] "%dkB"
msgstr[1] "%dkB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7853,23 +8777,25 @@ msgstr "Okänd källa för inkorg %d."
msgid "Leave"
msgstr "Lämna"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Logga in med ett användarnamn och lösenord"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Registrera dig för ett nytt konto"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "E-postadressbekräftelse"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7900,14 +8826,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s lyssnar nu på dina notiser på %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7922,7 +8848,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7949,14 +8875,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Biografi: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Ny e-postadress för att skicka till %s"
@@ -7964,7 +8890,7 @@ msgstr "Ny e-postadress för att skicka till %s"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, fuzzy, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7987,34 +8913,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s status"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS-bekräftelse"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s: bekräfta detta telefonnummer med denna kod:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
msgstr "Du har blivit knuffad av %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8043,7 +8969,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Nytt privat meddelande från %s"
@@ -8052,7 +8978,7 @@ msgstr "Nytt privat meddelande från %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8087,7 +9013,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%s (@%s) lade till din notis som en favorit"
@@ -8097,7 +9023,7 @@ msgstr "%s (@%s) lade till din notis som en favorit"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8135,7 +9061,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8148,7 +9074,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, fuzzy, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%s (@%s) skickade en notis för din uppmärksamhet"
@@ -8159,7 +9085,7 @@ msgstr "%s (@%s) skickade en notis för din uppmärksamhet"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8208,11 +9134,11 @@ msgstr ""
"\n"
"P.S. Du kan stänga av dessa e-postnotifikationer här: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "Bara användaren kan läsa sina egna brevlådor."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8221,10 +9147,6 @@ msgstr ""
"engagera andra användare i konversationen. Folk kan skicka meddelanden till "
"dig som bara du ser."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "från"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Kunde inte tolka meddelande."
@@ -8252,41 +9174,6 @@ msgid "There was a database error while saving your file. Please try again."
msgstr ""
"Det var ett databasfel vid sparandet av din profil. Var vänlig försök igen."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Den uppladdade filen överstiger upload_max_filesize-direktivet i php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Den uppladdade filen överstiger MAX_FILE_SIZE-direktivet som var angivet i "
-"HTML-formuläret."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Den uppladdade filen var bara delvis uppladdad."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Saknar en tillfällig mapp."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Misslyckades att skriva fil till disk."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Filuppladdningen stoppad pga filändelse"
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8307,7 +9194,7 @@ msgstr "Kunde inte fastställa filens MIME-typ."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8318,7 +9205,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "%s är en filtyp som saknar stöd på denna server."
@@ -8352,19 +9239,28 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Skicka"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Meddelande"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "från"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8380,11 +9276,11 @@ msgstr "Skicka en notis"
msgid "What's up, %s?"
msgstr "Vad är på gång, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Bifoga"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Bifoga en fil"
@@ -8405,55 +9301,59 @@ msgstr ""
"god försök igen senare"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "Ö"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "V"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "på"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "webb"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "i sammanhang"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Upprepad av"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Svara på denna notis"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Svara"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Ta bort denna notis"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Notis upprepad"
@@ -8490,77 +9390,113 @@ msgstr "Duplicera notis."
msgid "Couldn't insert new subscription."
msgstr "Kunde inte infoga ny prenumeration."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Personligt"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Svar"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "Favoriter"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "Inkorg"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Dina inkommande meddelanden"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "Utkorg"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Dina skickade meddelanden"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Taggar i %ss notiser"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Okänd"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Prenumerationer"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Alla prenumerationer"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Prenumeranter"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Alla prenumeranter"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Användar-ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Medlem sedan"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Grupper"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Dagligt genomsnitt"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Alla grupper"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Inte implementerad metod."
@@ -8607,7 +9543,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Återkalla rollen \"%s\" från denna användare"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "API-metod hittades inte."
@@ -8698,6 +9634,10 @@ msgstr "Bjud in"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Bjud in vänner och kollegor att gå med dig på %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Prenumerera på denna användare"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8812,64 +9752,81 @@ msgstr "Avsluta pren."
msgid "User %1$s (%2$d) has no profile record."
msgstr "Användaren har ingen profil."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Redigera avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Åtgärder för användare"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Borttagning av användare pågår..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Redigera profilinställningar"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Redigera"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Skicka ett direktmeddelande till denna användare"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Meddelande"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Moderera"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Användarroll"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Administratör"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Moderator"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Inte inloggad."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "ett par sekunder sedan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "för nån minut sedan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8877,12 +9834,12 @@ msgstr[0] "för ungefär en minut sedan"
msgstr[1] "för ungefär %d minuter sedan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "för en timma sedan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8890,12 +9847,12 @@ msgstr[0] "för ungefär en timma sedan"
msgstr[1] "för ungefär %d timmar sedan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "för en dag sedan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8903,12 +9860,12 @@ msgstr[0] "för ungefär en dag sedan"
msgstr[1] "för ungefär %d dagar sedan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "för en månad sedan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8916,18 +9873,13 @@ msgstr[0] "för ungefär en månad sedan"
msgstr[1] "för ungefär %d månader sedan"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "för ett år sedan"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s är inte en giltig färg!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s är inte en giltig färg! Använd 3 eller 6 hexadecimala tecken."
@@ -8948,32 +9900,18 @@ msgstr[0] "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d."
msgstr[1] "Meddelande för långt - maximum är %1$d tecken, du skickade %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Ogiltig storlek."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Ingen användar-ID angiven."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po
index 250a871739..2ea0fd8dd2 100644
--- a/locale/te/LC_MESSAGES/statusnet.po
+++ b/locale/te/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Telugu (తెలుగు)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Veeven
@@ -10,17 +10,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:15+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:41+0000\n"
"Language-Team: Telugu \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: te\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -75,8 +75,9 @@ msgid "Save access settings"
msgstr "అందుబాటు అమరికలను భద్రపరచు"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -86,13 +87,13 @@ msgstr "అందుబాటు అమరికలను భద్రపరచ
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "భద్రపరచు"
@@ -100,7 +101,7 @@ msgstr "భద్రపరచు"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "అటువంటి పేజీ లేదు."
@@ -110,6 +111,8 @@ msgstr "అటువంటి పేజీ లేదు."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -125,13 +128,23 @@ msgstr "అటువంటి పేజీ లేదు."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -139,15 +152,15 @@ msgstr "అటువంటి పేజీ లేదు."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "అటువంటి వాడుకరి లేరు."
@@ -161,9 +174,10 @@ msgstr "%1$s మరియు మిత్రులు, పేజీ %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s మరియు మిత్రులు"
@@ -205,23 +219,25 @@ msgstr "ఇతరులకి చందా చేరండి, [ఏదైనా
#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@".
#. TRANS: This message contains Markdown links. Keep "](" together.
#: actions/all.php:150
-#, fuzzy, php-format
+#, php-format
msgid ""
"You can try to [nudge %1$s](../%2$s) from their profile or [post something "
"to them](%%%%action.newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-"[ఈ విషయంపై](%%%%action.newnotice%%%%?status_textarea=%s) వ్రాసే మొదటివారు మీరే అవ్వండి!"
+"ప్రొఫైలు ద్వారా [%1$sని కదిపి](../%2$s) చూడండి లేదా [వారికి ఏదైనా వ్రాయండి](%%%%action.newnotice%"
+"%%%?status_textarea=%3$s)."
#. TRANS: Encoutagement displayed on empty timeline user pages for anonymous users.
#. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together.
#. TRANS: Second sentence of empty message for anonymous users. %s is a user nickname.
#. TRANS: This message contains a Markdown link. Keep "](" together.
#: actions/all.php:155 actions/replies.php:210 actions/showstream.php:227
-#, fuzzy, php-format
+#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
"post a notice to them."
-msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!"
+msgstr ""
+"[ఒక ఖాతాని నమోదుచేసుకుని](%%%%action.register%%%%) %sని కదపండి లేదా వారికి ఒక టపాని పంపించండి!"
#. TRANS: H1 text for page when viewing a list for self.
#: actions/all.php:188
@@ -271,14 +287,13 @@ msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండ
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
#: actions/apitimelineuser.php:206 actions/apiusershow.php:100
-#, fuzzy
msgid "API method not found."
-msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
+msgstr "API పద్ధతి లేదు."
#. TRANS: Client error message. POST is a HTTP command. It should not be translated.
#. TRANS: Client error. POST is a HTTP command. It should not be translated.
@@ -304,8 +319,21 @@ msgid ""
msgstr ""
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
-#, fuzzy
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
@@ -315,18 +343,23 @@ msgstr "వాడుకరిని తాజాకరించలేకున
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "వాడుకరికి ప్రొఫైలు లేదు."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
#, fuzzy
msgid "Could not save profile."
msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం."
@@ -337,8 +370,8 @@ msgstr "ప్రొఫైలుని భద్రపరచలేకున్
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -354,13 +387,14 @@ msgstr[1] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "మీ రూపురేఖల అమరికలని భద్రపరచలేకున్నాం."
@@ -368,49 +402,60 @@ msgstr "మీ రూపురేఖల అమరికలని భద్రప
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
#, fuzzy
msgid "Could not update your design."
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "ప్రధాన"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s కాలరేఖ"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s చందాలు"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "ఇష్టాంశాలు"
+msgstr "%s ఇష్టాంశాలు"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "%s గుంపు సభ్యులు"
+msgstr "%s సభ్యత్వాలు"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "మిమ్మల్ని మీరే నిరోధించుకోలేరు!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "వాడుకరి నిరోధం విఫలమైంది."
@@ -467,15 +512,14 @@ msgstr "అందుకోవాల్సిన వాడుకరి కనబ
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "మీ స్నేహితులు కాని వాడుకరులకి నేరు సందేశాలు పంపించలేరు."
#. TRANS: Client error displayed trying to direct message self (403).
#: actions/apidirectmessagenew.php:154
-#, fuzzy
msgid ""
"Do not send a message to yourself; just say it to yourself quietly instead."
-msgstr "మీకు మీరే సందేశాన్ని పంపుకోకండి; దాని బదులు మీలో మీరే మెల్లగా చెప్పుకోండి."
+msgstr "మీకు మీరే సందేశాన్ని పంపుకోకండి; దాని బదులు మీ చెవిలో మీరే మెల్లగా చెప్పుకోండి."
#. TRANS: Client error displayed when requesting a status with a non-existing ID.
#. TRANS: Client error displayed when trying to remove a favourite with an invalid ID.
@@ -491,8 +535,9 @@ msgid "This status is already a favorite."
msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం."
@@ -502,7 +547,8 @@ msgid "That status is not a favorite."
msgstr "ఆ నోటీసు ఇష్టాంశం కాదు."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "ఇష్టాంశాన్ని తొలగించలేకపోయాం."
@@ -547,9 +593,9 @@ msgstr "లక్ష్యిత వాడుకరిని కనుగొన
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి."
@@ -557,21 +603,22 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "సరైన పేరు కాదు."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "హోమ్ పేజీ URL సరైనది కాదు."
@@ -579,24 +626,24 @@ msgstr "హోమ్ పేజీ URL సరైనది కాదు."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
-#, fuzzy
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
-msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)."
+msgstr "పూర్తి పేరు చాలా పెద్దగా ఉంది (గరిష్ఠం 255 అక్షరాలు)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, fuzzy, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -607,9 +654,9 @@ msgstr[1] "వివరణ చాలా పెద్దగా ఉంది (%d
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
#, fuzzy
msgid "Location is too long (maximum 255 characters)."
msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)."
@@ -620,8 +667,8 @@ msgstr "ప్రాంతం పేరు మరీ పెద్దగా ఉ
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, fuzzy, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -638,18 +685,16 @@ msgstr "తప్పుడు మారుపేరు: \"%s\"."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "\"%s\" అన్న మారుపేరుని ఇప్పటికే వాడుతున్నారు. మరొకటి ప్రయత్నించండి."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "మారుపేరు పేరుతో సమానంగా ఉండకూడదు."
@@ -660,28 +705,32 @@ msgstr "మారుపేరు పేరుతో సమానంగా ఉం
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "గుంపు దొరకలేదు."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "నిర్వాహకులు ఆ గుంపు నుండి మిమ్మల్ని నిరోధించారు."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్చలేకపోయాం"
@@ -693,9 +742,11 @@ msgstr "మీరు ఈ గుంపులో సభ్యులు కాద
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -732,7 +783,7 @@ msgid "Upload failed."
msgstr "ఎక్కింపు విఫలమైంది."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
#, fuzzy
msgid "Invalid request token or verifier."
msgstr "సందేశపు విషయం సరైనది కాదు"
@@ -755,20 +806,25 @@ msgid "Request token already authorized."
msgstr "మీకు అధీకరణ లేదు."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -786,18 +842,22 @@ msgstr "అవతారాన్ని పెట్టడంలో పొరప
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr ""
@@ -841,29 +901,31 @@ msgstr "ఖాతా"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "పేరు"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "సంకేతపదం"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -935,6 +997,7 @@ msgstr "ఇతర వాడుకరుల స్థితిని మీరు
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -954,42 +1017,54 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి
msgid "Already repeated that notice."
msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, fuzzy, php-format
-msgid "Unsupported format: %s"
+msgid "Unsupported format: %s."
msgstr "%s కి నేరు సందేశాలు"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "స్థితిని తొలగించాం."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "ఆ IDతో ఏ నోటీసు కనబడలేదు."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr ""
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
msgstr "ఈ నోటీసుని తొలగించలేము."
-#: actions/apistatusesshow.php:243
-#, fuzzy, php-format
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
+#, php-format
msgid "Deleted notice %d"
-msgstr "నోటీసుని తొలగించు"
+msgstr "%d నోటీసుని తొలగించాం"
#. TRANS: Client error displayed when the parameter "status" is missing.
#: actions/apistatusesupdate.php:221
@@ -1044,7 +1119,7 @@ msgstr "%s యొక్క మైక్రోబ్లాగు"
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, fuzzy, php-format
msgid "Could not generate feed for group - %s"
msgstr "గుంపుని తాజాకరించలేకున్నాం."
@@ -1065,22 +1140,22 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s బహిరంగ కాలరేఖ"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "అందరి నుండి %s తాజాకరణలు!"
#. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'.
#: actions/apitimelineretweetedbyme.php:71
-#, fuzzy
msgid "Unimplemented."
-msgstr "క్షమించండి, ఈ ఆదేశం ఇంకా అమలుపరచబడలేదు."
+msgstr "అమలుపరచబడలేదు."
#. TRANS: Title for Atom feed "repeated to me". %s is the user nickname.
#: actions/apitimelineretweetedtome.php:108
@@ -1111,60 +1186,57 @@ msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నో
#. TRANS: Client error displayed trying to add a notice to another user's timeline.
#: actions/apitimelineuser.php:297
-#, fuzzy
msgid "Only the user can add to their own timeline."
-msgstr "ఎవరి తపాలాపెట్టెలను ఆ వాడుకరి మాత్రమే చదవలగరు."
+msgstr "ఆ వాడుకరి మాత్రమే వారి కాలరేఖలో చేర్చగలరు."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, fuzzy, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "ఆ ఈమెయిలు చిరునామా లేదా వాడుకరిపేరుతో వాడుకరులెవరూ లేరు."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
#, fuzzy
@@ -1172,152 +1244,219 @@ msgid "API method under construction."
msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "వాడుకరి దొరకలేదు."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "అటువంటి ఫైలు లేదు."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "కొత్త చందాని చేర్చలేకపోయాం."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "సైటు గమనికని భద్రపరచు"
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "తెలియని చర్య"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "ఇష్టాంశాలకు చేర్చు"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
#, fuzzy
msgid "No such profile."
msgstr "అటువంటి ఫైలు లేదు."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+#, fuzzy
+msgid "Cannot add someone else's subscription."
+msgstr "కొత్త చందాని చేర్చలేకపోయాం."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "సైటు గమనికని భద్రపరచు"
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+#, fuzzy
+msgid "Can only fave notices."
+msgstr "సైటు గమనికని భద్రపరచు"
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+#, fuzzy
+msgid "Unknown note."
+msgstr "తెలియని చర్య"
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+#, fuzzy
+msgid "Already a favorite."
+msgstr "ఇష్టాంశాలకు చేర్చు"
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s గుంపు సభ్యులు"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "%s సభ్యులుగా ఉన్న గుంపులు"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "కొత్త చందాని చేర్చలేకపోయాం."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "సైటు గమనికని భద్రపరచు"
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "తెలియని చర్య"
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "అందరు సభ్యులూ"
+msgstr "ఇప్పటికే సభ్యులు."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "అటువంటి ఫైలు లేదు."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "ఇష్టాంశాన్ని తొలగించలేకపోయాం."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "అటువంటి గుంపు లేదు."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "అందరు సభ్యులూ"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "సభ్యులు కాదు."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "అటువంటి ఫైలు లేదు."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "మీరు ఎవరికీ చందాచేరలేదు."
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "కొత్త చందాని చేర్చలేకపోయాం."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "అటువంటి ఫైలు లేదు."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "మీరు ఎవరికీ చందాచేరలేదు."
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "కొత్త చందాని చేర్చలేకపోయాం."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "%sకి చందాచేరిన వ్యక్తులు"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "తెలియని ఫైలు రకం"
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "ఇప్పటికే %sకి చందాచేరారు."
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1326,11 +1465,15 @@ msgstr "అటువంటి జోడింపు లేదు."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "పేరు"
@@ -1347,7 +1490,7 @@ msgstr "తప్పుడు పరిమాణం."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "అవతారం"
@@ -1360,42 +1503,52 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "మీ వ్యక్తిగత అవతారాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
#, fuzzy
msgid "User without matching profile."
msgstr "వాడుకరికి ప్రొఫైలు లేదు."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "అవతారపు అమరికలు"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "అసలు"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "మునుజూపు"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "తొలగించు"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "ఎక్కించు"
@@ -1411,31 +1564,72 @@ msgstr "కత్తిరించు"
msgid "No file uploaded."
msgstr "ఏ దస్త్రమూ ఎక్కింపబడలేదు."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "మీ అవతారానికి గానూ ఈ చిత్రం నుండి ఒక చతురస్రపు ప్రదేశాన్ని ఎంచుకోండి"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr ""
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "అవతారాన్ని తాజాకరించాం."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "అవతారపు తాజాకరణ విఫలమైంది."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "అవతారాన్ని తొలగించాం."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+#, fuzzy
+msgid "Only logged-in users can backup their account."
+msgstr "కేవలం ప్రవేశించిన వాడుకరులు మాత్రమే నోటీసులని పునరావృతించగలరు."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "నేపథ్యం"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1443,7 +1637,8 @@ msgstr "మీరు ఇప్పటికే ఆ వాడుకరిని
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "వాడుకరిని నిరోధించు"
@@ -1465,15 +1660,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "కాదు"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "ఈ వాడుకరిని నిరోధించకు"
#. TRANS: Button label on the user block form.
@@ -1484,47 +1679,21 @@ msgstr "ఈ వాడుకరిని నిరోధించకు"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "అవును"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
-msgstr "ఈ వాడుకరిని నిరోధించు"
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "ఈ వాడుకరిని నిరోధించండి."
#. TRANS: Server error displayed when blocking a user fails.
#: actions/block.php:189
msgid "Failed to save block information."
msgstr "నిరోధపు సమాచారాన్ని భద్రపరచడంలో విఫలమయ్యాం."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "అటువంటి గుంపు లేదు."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1595,23 +1764,6 @@ msgstr "గుర్తుతెలియని చిరునామా రక
msgid "That address has already been confirmed."
msgstr "ఆ చిరునామా ఇప్పటికే నిర్ధారితమైంది."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1637,11 +1789,83 @@ msgid "Conversation"
msgstr "సంభాషణ"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "సందేశాలు"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+#, fuzzy
+msgid "Only logged-in users can delete their account."
+msgstr "కేవలం ప్రవేశించిన వాడుకరులు మాత్రమే నోటీసులని పునరావృతించగలరు."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "మీ ఖాతాని మీరు తొలగించుకోలేరు."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "మీరు పెట్టెలో తప్పనిసరిగా \"%s\" అని వ్రాయాలి."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "ఖాతాని తొలగించాం."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "ఖాతాని సృష్టించుకోండి"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "నిర్థారించు"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "మీరు వాడుకరులని తొలగించలేరు."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "మీరు వాడుకరులని తొలగించలేరు."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1655,14 +1879,14 @@ msgstr "ఉపకరణం కనబడలేదు."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని కాదు."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr ""
@@ -1684,12 +1908,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "ఈ ఉపకరణాన్ని తొలగించకు"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "ఈ ఉపకరణాన్ని తొలగించు"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1698,8 +1924,10 @@ msgid "You must be logged in to delete a group."
msgstr "గుంపుని తొలగించడానికి మీరు ప్రవేశించి ఉండాలి."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Jabber ID లేదు."
@@ -1741,24 +1969,32 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
+#, fuzzy
+msgid "Do not delete this group."
msgstr "ఈ గుంపును తొలగించకు"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
+#, fuzzy
+msgid "Delete this group."
msgstr "ఈ గుంపుని తొలగించు"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "లోనికి ప్రవేశించలేదు."
@@ -1783,27 +2019,40 @@ msgstr "మీరు నిజంగానే ఈ నోటీసుని త
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "ఈ నోటీసుని తొలగించకు"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "ఈ నోటీసుని తొలగించు"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "మీరు వాడుకరులని తొలగించలేరు."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "మీరు స్థానిక వాడుకరులను మాత్రమే తొలగించగలరు."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "వాడుకరిని తొలగించు"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "వాడుకరిని తొలగించు"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1811,79 +2060,101 @@ msgstr ""
"మీరు నిజంగానే ఈ వాడుకరిని తొలగించాలనుకుంటున్నారా? ఇది ఆ వాడుకరి భోగట్టాని డాటాబేసు నుండి తొలగిస్తుంది, "
"వెనక్కి తేలేకుండా."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr "ఈ వాడుకరిని తొలగించకండి."
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
-msgstr "ఈ వాడుకరిని తొలగించు"
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "ఈ వాడుకరిని తొలగించండి."
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "రూపురేఖలు"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "చిహ్నపు URL చెల్లదు."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "SSL చిహ్నపు URL చెల్లదు."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "అలంకారం అందుబాటులో లేదు: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "చిహ్నాన్ని మార్చు"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "సైటు చిహ్నం"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "SSL చిహ్నం"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "అలంకారాన్ని మార్చు"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "సైటు అలంకారం"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "సైటుకి అలంకారం."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
#, fuzzy
msgid "Custom theme"
msgstr "సైటు అలంకారం"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr ""
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "నేపథ్య చిత్రాన్ని మార్చు"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "నేపథ్యం"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1891,102 +2162,110 @@ msgid ""
msgstr "సైటుకి మీరు నేపథ్యపు చిత్రాన్ని ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం %1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "ఆన్"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "ఆఫ్"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
#, fuzzy
msgid "Turn background image on or off."
msgstr "నేపథ్య చిత్రాన్ని మార్చు"
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
#, fuzzy
msgid "Tile background image"
msgstr "నేపథ్య చిత్రాన్ని మార్చు"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "రంగులను మార్చు"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "విషయం"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "పక్కపట్టీ"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "పాఠ్యం"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "లంకెలు"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "ఉన్నత"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "ప్రత్యేక CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "అప్రమేయాలని ఉపయోగించు"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
#, fuzzy
-msgid "Restore default designs"
+msgid "Restore default designs."
msgstr "అప్రమేయాలని ఉపయోగించు"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
#, fuzzy
-msgid "Reset back to default"
+msgid "Reset back to default."
msgstr "అప్రమేయాలని ఉపయోగించు"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "భద్రపరచు"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "రూపురేఖలని భద్రపరచు"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "ఈ నోటీసు ఇష్టాంశం కాదు!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "ఇష్టాంశాలకు చేర్చు"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "అటువంటి జోడింపు లేదు."
#. TRANS: Title for "Edit application" form.
@@ -2001,7 +2280,7 @@ msgid "You must be logged in to edit an application."
msgstr "ఉపకరణాలని మార్చడానికి మీరు ప్రవేశించి ఉండాలి."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "అటువంటి ఉపకరణం లేదు."
@@ -2011,65 +2290,75 @@ msgid "Use this form to edit your application."
msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "పేరు తప్పనిసరి."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "పేరు చాలా పెద్దగా ఉంది (గరిష్ఠంగా 255 అక్షరాలు)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "వివరణ తప్పనిసరి."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
#, fuzzy
msgid "Source URL is not valid."
msgstr "హోమ్ పేజీ URL సరైనది కాదు."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "సంస్థ తప్పనిసరి."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "సంస్థ పేరు మరీ పెద్దగా ఉంది (255 అక్షరాలు గరిష్ఠం)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
#, fuzzy
msgid "Organization homepage is required."
msgstr "సంస్థ తప్పనిసరి."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "ఉపకరణాన్ని తాజాకరించలేకున్నాం."
@@ -2080,14 +2369,17 @@ msgid "Edit %s group"
msgstr "%s గుంపుని మార్చు"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "గుంపుని సృష్టించడానికి మీరు లోనికి ప్రవేశించాలి."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "గుంపుని మార్చడానికి మీరు నిర్వాహకులయి ఉండాలి."
@@ -2098,63 +2390,65 @@ msgstr "గుంపుని మార్చడానికి ఈ ఫారా
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "తప్పుడు మారుపేరు: \"%s\""
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "గుంపుని తాజాకరించలేకున్నాం."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "మారుపేర్లని సృష్టించలేకపోయాం."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "ఎంపికలు భద్రమయ్యాయి."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "ఈమెయిల్ అమరికలు"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "%%site.name%% నుండి మీకు ఎలా మెయిల్ వస్తూంతో సంభాళించుకోండి."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "ఈమెయిలు చిరునామా"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "ప్రస్తుత నిర్ధారిత ఈమెయిలు చిరునామా."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "తొలగించు"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2167,46 +2461,46 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "ఈమెయిల్ చిరునామా, \"username@example.org\" వలె"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "చేర్చు"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "నేను ఈమెయిలు ద్వారా నోటీసులు పంపాలనుకుంటున్నాను."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
#, fuzzy
msgid "Send email to this address to post new notices."
msgstr "%sకి నోటీసులు పంపించడానికి కొత్త ఈమెయిలు చిరునామా"
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
#, fuzzy
msgid "Make a new email address for posting to; cancels the old one."
msgstr "%sకి నోటీసులు పంపించడానికి కొత్త ఈమెయిలు చిరునామా"
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2214,90 +2508,90 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "కొత్తది"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "ఈమెయిలు అభిరుచులు"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
-msgstr ""
+msgstr "కొత్త చందాదార్లు చేరినప్పుడు నాకు ఈమెయిలు ద్వారా తెలియజేయి."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
-#, fuzzy
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
-msgstr "%s (@%s) మీ నోటీసుని ఇష్టపడ్డారు"
+msgstr "ఎవరైనా నా నోటీసుని ఇష్టాంశంగా చేర్చుకున్నపుడు నాకు ఈమెయిలు పంపించు."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "ఎవరైనా నాకు అంతరంగిక సందేశాన్ని పంపించినప్పుడు నాకు ఈమెయిలుని పంపించు"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
-msgstr ""
+msgstr "ఎవరైనా నాకు \"@-స్పందన\"ని పంపినప్పుడు నాకు ఈమెయిలును పంపించు."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
#, fuzzy
msgid "Publish a MicroID for my email address."
msgstr "అది మీ ఈమెయిలు చిరునామా కాదు."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "ఈమెయిలు అభిరుచులు భద్రమయ్యాయి."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "ఈమెయిలు చిరునామా లేదు."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
+#: actions/emailsettings.php:388
#, fuzzy
-msgid "Cannot normalize that email address"
+msgid "Cannot normalize that email address."
msgstr "ప్రస్తుత నిర్ధారిత ఈమెయిలు చిరునామా."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "సరైన ఈమెయిల్ చిరునామా కాదు:"
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "ఆ ఈమెయిల్ చిరునామా ఇప్పటేకే ఇతర వాడుకరికి సంబంధించినది."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "నిర్ధారణ సంకేతాన్ని చేర్చలేకపోయాం."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
#, fuzzy
msgid ""
"A confirmation code was sent to the email address you added. Check your "
@@ -2307,206 +2601,254 @@ msgstr ""
"చూడండి."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "ఆ ఈమెయిలు చిరునామా సరైనది కాదు."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "ఈమెయిలు నిర్ధారణ రద్దయింది."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "అది మీ ఈమెయిలు చిరునామా కాదు."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "ఆ ఈమెయిలు చిరునామాని తొలగించాం."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
#, fuzzy
msgid "No incoming email address."
msgstr "ఈమెయిలు చిరునామా లేదు."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-#, fuzzy
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
#, fuzzy
msgid "Incoming email address removed."
msgstr "ఆ ఈమెయిలు చిరునామాని తొలగించాం."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
#, fuzzy
msgid "New incoming email address added."
msgstr "ఈమెయిలు చిరునామా లేదు."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం!"
-#: actions/favor.php:92 lib/disfavorform.php:144
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
#, fuzzy
-msgid "Disfavor favorite"
+msgid "Disfavor favorite."
msgstr "ఇష్టాంశాలకు చేర్చు"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "ప్రాచుర్య నోటీసులు"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "ప్రాచుర్య నోటీసులు, పేజీ %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "ప్రస్తుతం ఈ సైటులో అత్యంత ప్రాచుర్య నోటీసులు."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, fuzzy, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
"notice to your favorites!"
msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%sకి ఇష్టమైన నోటీసులు"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "విశేష వాడుకరులు"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "విశేష వాడుకరులు, పేజీ %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "%sలో కొందరు గొప్ప వాడుకరుల యొక్క ఎంపిక"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "సందేశం లేదు."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "సందేశం లేదు."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "జోడింపులు లేవు."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "ఎక్కించిన జోడింపులేమీ లేవు."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr ""
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr ""
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "మీరు స్థానిక చందాని ఉపయోగించవచ్చు!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "ఆ వాడుకరి మిమ్మల్ని చందాచేరకుండా నిరోధించారు."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "మీకు అధీకరణ లేదు."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr ""
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
#, fuzzy
msgid "Error updating remote profile."
msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు"
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "అటువంటి ఫైలు లేదు."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "ఫైలుని చదవలేకపోతున్నాం."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "తప్పుడు పాత్ర."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "వాడుకరికి ఇప్పటికే ఈ పాత్ర ఉంది."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
@@ -2514,37 +2856,48 @@ msgstr "వాడుకరికి ఇప్పటికే ఈ పాత్ర
msgid "No profile specified."
msgstr "గుంపు ఏమీ పేర్కొనలేదు."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
#, fuzzy
msgid "No profile with that ID."
msgstr "ఆ IDతో ఏ నోటీసూ కనబడలేదు."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "గుంపు ఏమీ పేర్కొనలేదు."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "నిర్వాహకులు మాత్రమే గుంపు సభ్యులను నిరోధించగలరు."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "వాడుకరిని ఇప్పటికే గుంపునుండి నిరోధించారు."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "వాడుకరిని గుంపు నుండి నిరోధించు"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2555,164 +2908,192 @@ msgstr ""
"తొలగిస్తాం, ఇక భవిష్యత్తులో వారు గుంపులో ప్రచురించలేరు, మరియు గుంపుకి చందాచేరలేరు."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "ఈ వాడుకరిని ఈ గుంపు నుండి నిరోధించకు"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
-msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "ఈ వాడుకరిని ఈ గుంపునుండి నిరోధించండి."
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
#, fuzzy
msgid "Database error blocking user from group."
msgstr "ఈ వాడుకరిని ఈ గుంపు నుండి నిరోధించకు"
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "ఐడీ లేదు."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "గుంపుని మార్చడానికి మీరు ప్రవేశించి ఉండాలి."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "గుంపు అలంకారం"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr "నేపథ్య చిత్రం మరియు రంగుల ఎంపికతో మీ గుంపు ఎలా కనిపించాలో మలచుకోండి."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "మీ రూపురేఖలని తాజాకరించలేకపోయాం."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+#, fuzzy
+msgid "Unable to update your design settings."
+msgstr "మీ రూపురేఖల అమరికలని భద్రపరచలేకున్నాం."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "ఈమెయిలు అభిరుచులు భద్రమయ్యాయి."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "గుంపు చిహ్నం"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "మీ గుంపుకి మీరు ఒక చిహ్నాన్ని ఎక్కించవచ్చు. ఆ ఫైలు యొక్క గరిష్ఠ పరిమాణం %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "ఎగుమతించు"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "కత్తిరించు"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "చిహ్నంగా ఉండాల్సిన చతురస్త్ర ప్రదేశాన్ని బొమ్మ నుండి ఎంచుకోండి."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "చిహ్నాన్ని తాజాకరించాం."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "చిహ్నపు తాజాకరణ విఫలమైంది."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s గుంపు సభ్యులు"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%1$s గుంపు సభ్యులు, పేజీ %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "ఈ గుంపులో వాడుకరులు జాబితా."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "నిర్వాహకులు"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "నిరోధించు"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "ఈ వాడుకరిని నిరోధించు"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr ""
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr ""
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr "గుంపులు"
-#: actions/groups.php:64
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
#, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
-msgstr "గుంపులు, పేజీ %d"
+msgstr "గుంపులు, పుట %d"
-#: actions/groups.php:90
-#, php-format
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
+#, fuzzy, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"ఒకే రకమైన ఆసక్తులు ఉన్న వ్యక్తులు కలుసుకోడానికి మరియు మాట్లాడుకోడానికి %%%%site.name%%%% "
"గుంపులు వీలుకల్పిస్తాయి. ఒక గుంపులో చేరిన తర్వాత మీరు \"!groupname\" అన్న సంకేతం ద్వారా ఆ "
"గుంపు లోని సభ్యులందరికీ సందేశాలని పంపించవచ్చు. మీకు నచ్చిన గుంపు కనబడలేదా? [దాని కోసం వెతకండి](%%"
"%%action.groupsearch%%%%) లేదా [మీరే కొత్తది సృష్టించండి!](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "కొత్త గుంపుని సృష్టించు"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2721,24 +3102,32 @@ msgstr ""
"%%site.name%%లో గుంపులను వాటి పేరు, ప్రాంతం, లేదా వివరణని బట్టి వెతకండి. అన్వేషించే పదాలను ఖాళీలతో "
"వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "గుంపుల అన్వేషణ"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "ఫలితాలేమీ లేవు."
-#: actions/groupsearch.php:82
-#, php-format
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
+#, fuzzy, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"మీరు వెతుకున్న గుంపు మీకు కనబడకపోతే, మీరే [దాన్ని సృష్టించవచ్చు](%%action.newgroup%%)."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2748,206 +3137,216 @@ msgstr ""
"action.newgroup%%)కూడదు!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "నిర్వాహకులు మాత్రమే గుంపు సభ్యులపై నిరోధాన్ని ఎత్తివేయగలరు."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "వాడుకరిని గుంపు నుండి నిరోధించలేదు."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "నిరోధాన్ని తొలగించడంలో పొరపాటు."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM అమరికలు"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM అందుబాటులో లేదు."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM చిరునామా"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా"
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"ఈ చిరునామా నిర్ధారణకై వేచివున్నాం. తదుపరి సూచనలతో ఉన్న సందేశానికై మీ ఇన్బాక్స్లో (స్పామ్ బాక్సులో కూడా!) "
"చూడండి."
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "IM అభిరుచులు"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr ""
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
#, fuzzy
-msgid "Publish a MicroID for my Jabber/GTalk address."
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "ప్రస్తుతం నిర్ధారించిన Jabber/GTalk చిరునామా"
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "అభిరుచులు భద్రమయ్యాయి."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Jabber ID లేదు."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
#, fuzzy
-msgid "Cannot normalize that Jabber ID"
+msgid "Cannot normalize that Jabber ID."
msgstr "సరైన Jabber ఐడీ కాదు"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "సరైన Jabber ఐడీ కాదు"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "ఈ Jabber ID మీకు ఇప్పటికే ఉంది"
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID ఇప్పటికే వేరొకరికి ఉంది."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
"s for sending messages to you."
msgstr ""
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "ఆ IM చిరునామా సరైనది కాదు."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
#, fuzzy
-msgid "Couldn't delete IM confirmation."
+msgid "Could not delete IM confirmation."
msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "IM నిర్ధారణ రద్దయింది."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "ఇది మీ Jabber ID కాదు"
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "ఆ IM చిరునామాని తొలగించాం."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "%1$sకి వచ్చినవి - %2$dవ పేజీ"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "%sకి వచ్చినవి"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "ఇవి మీకు వచ్చిన అంతరంగిక సందేశాలు."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "ఆహ్వానాలని అచేతనం చేసారు."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "sని ఉపయోగించమని ఇతర వాడుకరులని ఆహ్వానించడానికి మీరు ప్రవేశించి ఉండాలి."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "చెల్లని ఈమెయిలు చిరునామా: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "ఆహ్వానాలని పంపించాం"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "కొత్త వాడుకరులని ఆహ్వానించండి"
@@ -2955,7 +3354,7 @@ msgstr "కొత్త వాడుకరులని ఆహ్వానిం
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2964,7 +3363,7 @@ msgstr[1] "మీరు ఇప్పటికే ఈ వాడుకరులక
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2973,7 +3372,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
#, fuzzy
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
@@ -2984,7 +3383,7 @@ msgstr[1] "ఈ వ్యక్తులు ఇప్పటికే ఇక్క
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "ఈ వ్యక్తికి ఆహ్వానాన్ని పంపించాం:"
@@ -2992,7 +3391,7 @@ msgstr[1] "ఈ వ్యక్తులకు ఆహ్వానాలని ప
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3001,33 +3400,34 @@ msgstr ""
"పెంచుతున్నందుకు ధన్యవాదాలు!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr "ఈ ఫారాన్ని ఉపయోగించి మీ స్నేహితులను మరియు సహోద్యోగులను ఈ సేవను వినియోగించుకోమని ఆహ్వానించండి."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "ఈమెయిలు చిరునామాలు"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+#, fuzzy
+msgid "Addresses of friends to invite (one per line)."
msgstr "ఆహ్వానించాల్సిన మిత్రుల చిరునామాలు (లైనుకి ఒకటి చొప్పున)"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "వ్యక్తిగత సందేశం"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "ఐచ్ఛికంగా ఆహ్వానానికి వ్యక్తిగత సందేశం చేర్చండి."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "పంపించు"
@@ -3035,7 +3435,7 @@ msgstr "పంపించు"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%2$sలో చేరమని %1$s మిమ్మల్ని ఆహ్వానించారు"
@@ -3045,7 +3445,7 @@ msgstr "%2$sలో చేరమని %1$s మిమ్మల్ని ఆహ్
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3099,178 +3499,194 @@ msgstr ""
"\n"
"వినమ్రతతో, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "గుంపుల్లో చేరడానికి మీరు ప్రవేశించి ఉండాలి."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s %2$s గుంపులో చేరారు"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "మీరు ఆ గుంపులో సభ్యులు కాదు."
-#: actions/leavegroup.php:137
-#, php-format
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "లైసెన్సు"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr ""
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr ""
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "చెల్లని స్వాగత పాఠ్యం. గరిష్ఠ పొడవు 255 అక్షరాలు."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr ""
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr ""
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr ""
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "లైసెన్సు ఎంపిక"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "అంతరంగికం"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr ""
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "క్రియేటివ్ కామన్స్"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "రకం"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
-msgstr ""
+msgstr "లైసెన్సును ఎంచుకోండి"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "లైసెన్సు వివరాలు"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "యజమాని"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr ""
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr ""
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr ""
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr ""
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr ""
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr ""
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr ""
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "భద్రపరచు"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "లైసెన్సు అమరికలను భద్రపరచు"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "ఇప్పటికే లోనికి ప్రవేశించారు."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "వాడుకరిని అమర్చడంలో పొరపాటు. బహుశా మీకు అధీకరణ లేకపోవచ్చు."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "ప్రవేశించండి"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "సైటు లోనికి ప్రవేశించు"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "నన్ను గుర్తుంచుకో"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "భవిష్యత్తులో ఆటోమెటిగ్గా లోనికి ప్రవేశించు; బయటి కంప్యూర్ల కొరకు కాదు!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "మీ సంకేతపదం మర్చిపోయారా?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
msgstr ""
"భద్రతా కారణాల దృష్ట్యా, అమరికలు మార్చే ముందు మీ వాడుకరి పేరుని మరియు సంకేతపదాన్ని మరోసారి ఇవ్వండి."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "మీ వాడుకరిపేరు మరియు సంకేతపదాలతో ప్రవేశించండి."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3305,20 +3721,23 @@ msgid "New application"
msgstr "కొత్త ఉపకరణం"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "ఉపకరణాలని నమోదుచేసుకోడానికి మీరు లోనికి ప్రవేశించి ఉండాలి."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "కొత్త ఉపకరణాన్ని నమోదుచేసుకోడానికి ఈ ఫారాన్ని ఉపయోగించండి."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
#, fuzzy
msgid "Source URL is required."
msgstr "పేరు తప్పనిసరి."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "ఉపకరణాన్ని సృష్టించలేకపోయాం."
@@ -3327,11 +3746,23 @@ msgstr "ఉపకరణాన్ని సృష్టించలేకపో
msgid "New group"
msgstr "కొత్త గుంపు"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "ఈ గుంపును తొలగించడానికి మీకు అనుమతి లేదు."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "కొత్త గుంపుని సృష్టిండానికి ఈ ఫారాన్ని ఉపయోగించండి."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "మారుపేరు పేరుతో సమానంగా ఉండకూడదు."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "కొత్త సందేశం"
@@ -3381,7 +3812,9 @@ msgstr "కొత్త సందేశం"
msgid "Notice posted"
msgstr "నోటీసుని పునరావృతించారు"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3390,16 +3823,21 @@ msgstr ""
"%%site.name%%లోని సందేశాలను వెతకండి. అన్వేషణ పదాలను ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా "
"అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "పాఠ్య అన్వేషణ"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "%2$sలో \"%1$s\"కై అన్వేషణ ఫలితాలు"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3407,7 +3845,9 @@ msgid ""
msgstr ""
"[ఈ విషయంపై](%%%%action.newnotice%%%%?status_textarea=%s) వ్రాసే మొదటివారు మీరే అవ్వండి!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3416,14 +3856,17 @@ msgstr ""
"మీరు [ఒక ఖాతా నమోదు చేసుకుని](%%%%action.register%%%%) [ఈ విషయంపై వ్రాసే](%%%%action."
"newnotice%%%%?status_textarea=%s) మొదటివారు ఎందుకుకాకూడదు!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!"
#: actions/nudge.php:85
@@ -3464,30 +3907,30 @@ msgid "You have not registered any applications yet."
msgstr "మీరు ఇంకా ఏ ఉపకరణాన్నీ నమోదు చేసుకోలేదు."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "సంధానిత ఉపకరణాలు"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "మీరు ఆ ఉపకరణం యొక్క వాడుకరి కాదు."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3495,20 +3938,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "మీ ఖాతాని ఉపయోగించుకోడానికి మీరు ఏ ఉపకరణాన్నీ అధీకరించలేదు."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "వాడుకరి దొరకలేదు."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "నోటీసుకి ప్రొఫైలు లేదు."
@@ -3518,6 +3971,16 @@ msgstr "నోటీసుకి ప్రొఫైలు లేదు."
msgid "%1$s's status on %2$s"
msgstr "%2$sలో %1$s యొక్క స్థితి"
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "అందుకోవాల్సిన వాడుకరి కనబడలేదు."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3531,16 +3994,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr ""
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "ప్రజల అన్వేషణ"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "నోటీసుల అన్వేషణ"
@@ -3554,73 +4018,84 @@ msgid "Manage various other options."
msgstr "వేరే ఇతర ఎంపికలని సంభాళించండి."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (స్వేచ్ఛా సేవ)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "URL కుదింపు సేవ"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "ఫ్రొఫైలు రూపురేఖలు"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
#, fuzzy
msgid "Show or hide profile designs."
msgstr "ఫ్రొఫైలు రూపురేఖలు"
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "URL కుదింపు సేవ మరీ పెద్దగా ఉంది (50 అక్షరాలు గరిష్ఠం)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "గుంపు ఏమీ పేర్కొనలేదు."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "గుంపు ఏమీ పేర్కొనలేదు."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
#, fuzzy
msgid "No login token requested."
msgstr "అధీకరణ అభ్యర్థన లేదు!"
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
#, fuzzy
msgid "Invalid login token specified."
msgstr "సందేశపు విషయం సరైనది కాదు"
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
#, fuzzy
msgid "Login token expired."
msgstr "సైటు లోనికి ప్రవేశించు"
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, fuzzy, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "%1$sకి వచ్చినవి - %2$dవ పేజీ"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, fuzzy, php-format
msgid "Outbox for %s"
msgstr "%sకి వచ్చినవి"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "ఇవి మీరు పంపివున్న అంతరంగిక సందేశాలు."
@@ -3632,7 +4107,8 @@ msgstr "సంకేతపదం మార్చుకోండి"
msgid "Change your password."
msgstr "మీ సంకేతపదం మార్చుకోండి."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "సంకేతపదం మార్పు"
@@ -3640,48 +4116,49 @@ msgstr "సంకేతపదం మార్పు"
msgid "Old password"
msgstr "పాత సంకేతపదం"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "కొత్త సంకేతపదం"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
-msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
+msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు."
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "నిర్థారించు"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "పై సంకేతపదం వలెనే"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "మార్చు"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "సంకేతపదం తప్పనిసరిగా 6 లేదా అంతకంటే ఎక్కువ అక్షరాలుండాలి."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "సంకేతపదాలు సరిపోలలేదు."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "పాత సంకేతపదం తప్పు"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "సంకేతపదం భద్రమయ్యింది."
@@ -3897,7 +4374,7 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "జోడింపులు"
@@ -3971,7 +4448,9 @@ msgstr ""
msgid "Save paths"
msgstr "కొత్త సందేశం"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3980,7 +4459,8 @@ msgstr ""
"%%site.name%%లో వ్యక్తులను వారి పేరు, ప్రాంతం, లేదా ఆసక్తులను బట్టి వెతకండి. అన్వేషించే పదాలను "
"ఖాళీలతో వేరుచేయండి; ఒక్కో పదంలో 3 లేదా అంతకంటే ఎక్కువ అక్షరాలు ఉండాలి."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "వ్యక్తుల అన్వేషణ"
@@ -4004,12 +4484,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "ఫ్రొఫైలు అమరికలు"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4017,33 +4497,34 @@ msgstr ""
"తెలుసుకోగలుగుతారు."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "ప్రొఫైలు సమాచారం"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "పూర్తి పేరు"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "హోమ్ పేజీ"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా"
@@ -4051,7 +4532,7 @@ msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వ
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4059,78 +4540,83 @@ msgstr[0] "మీ గురించి మరియు మీ ఆసక్త
msgstr[1] "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "స్వపరిచయం"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "ప్రాంతం"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "ట్యాగులు"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "భాష"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
-msgstr "ప్రాథాన్యతా భాష"
+#: actions/profilesettings.php:171
+msgid "Preferred language."
+msgstr "ప్రాధాన్యతా భాష."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "కాలమండలం"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "మీరు సామాన్యంగా ఉండే కాలమండలం ఏది?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
-msgstr ""
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
+msgstr "ఉపయోగించాల్సిన యాంత్రిక కుదింపు సేవ."
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4138,52 +4624,54 @@ msgstr[0] "స్వపరిచయం చాలా పెద్దగా ఉం
msgstr[1] "స్వపరిచయం చాలా పెద్దగా ఉంది (%d అక్షరాలు గరిష్ఠం)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "కాలమండలాన్ని ఎంచుకోలేదు."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "భాష మరీ పెద్దగా ఉంది (50 అక్షరాలు గరిష్ఠం)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "తప్పుడు మారుపేరు: \"%s\""
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
+#: actions/profilesettings.php:347
#, fuzzy
-msgid "Couldn't update user for autosubscribe."
+msgid "Could not update user for autosubscribe."
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
+#: actions/profilesettings.php:405
#, fuzzy
-msgid "Couldn't save location prefs."
+msgid "Could not save location prefs."
msgstr "ట్యాగులని భద్రపరచలేకున్నాం."
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం."
-
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
-msgstr "ట్యాగులని భద్రపరచలేకున్నాం."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
+msgstr "ట్యాగులని భద్రపరచలేకపోయాం."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "అమరికలు భద్రమయ్యాయి."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "ఖాతాని సృష్టించుకోండి"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4257,6 +4745,12 @@ msgstr ""
"ఇది %%site.name%%, స్వేచ్ఛా మృదూపకరమైన [స్టేటస్నెట్](http://status.net/) అనే పనిముట్టుపై "
"ఆధారపడిన ఒక [మైక్రో-బ్లాగింగు](http://en.wikipedia.org/wiki/Micro-blogging) సేవ."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "అందరి నుండి %s తాజాకరణలు!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4299,226 +4793,263 @@ msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%ac
msgid "Tag cloud"
msgstr "ట్యాగు మేఘం"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
#, fuzzy
msgid "No such recovery code."
msgstr "అటువంటి సందేశమేమీ లేదు."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
#, fuzzy
msgid "Not a recovery code."
msgstr "నమోదైన వాడుకరి కాదు."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr ""
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "నిర్ధారణ సంకేతంలో పొరపాటు."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "ఈ నిర్ధారణ సంకేతం చాలా పాతది. మళ్ళీ మొదలుపెట్టండి."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "నిర్ధారిత ఈమెయిలు చిరునామాతో వాడుకరిని తాజాకరించలేకపోయాం."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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:167
+msgid "You have been identified. Enter a new password below."
+msgstr "మిమ్మల్ని గుర్తించాం. మీ కొత్త సంకేతపదాన్ని క్రింత ఇవ్వండి."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
#, fuzzy
msgid "Password recovery"
msgstr "సంకేతపదం మార్పు"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "ముద్దుపేరు లేదా ఈమెయిలు చిరునామా"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "ఈ సర్వరులో మీ పేరు, లేదా నమౌదైన మీ ఈమెయిల్ చిరునామా."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
#, fuzzy
msgid "Recover"
msgstr "తొలగించు"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "తొలగించు"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
#, fuzzy
msgid "Reset password"
msgstr "కొత్త సంకేతపదం"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
#, fuzzy
msgid "Recover password"
msgstr "కొత్త సంకేతపదం"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr ""
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "సంకేతపదం భద్రమయ్యింది."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "తెలియని చర్య"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు, మర్చిపోకండి!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "రీసెట్"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "పేరు లేదా ఈమెయిల్ చిరునామా ఇవ్వండి."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "ఆ ఈమెయిలు చిరునామా లేదా వాడుకరిపేరుతో వాడుకరులెవరూ లేరు."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "ఈ వాడుకరికై నమోదైన ఈమెయిల్ చిరునామాలు ఏమీ లేవు."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "చిరునామా నిర్ధారణని భద్రపరచడంలో పొరపాటు."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
msgstr "మీ సంకేతపదాన్ని తిరిగి పొందడానికై అవసరమైన సూచనలని మీ ఖాతాతో నమోదైన ఈమెయిల్ చిరునామాకి పంపించాం."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr ""
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "సంకేతపదం 6 లేదా అంతకంటే ఎక్కవ అక్షరాలుండాలి."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "సంకేతపదం మరియు నిర్ధారణ సరిపోలేదు."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
#, fuzzy
msgid "Error setting user."
msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "మీ కొత్త సంకేతపదం భద్రమైంది. మీరు ఇప్పుడు లోనికి ప్రవేశించారు."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "క్షమించండి, ఆహ్వానితులు మాత్రమే నమోదుకాగలరు."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "క్షమించండి, తప్పు ఆహ్వాన సంకేతం."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "నమోదు విజయవంతం"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "నమోదు"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "నమోదు అనుమతించబడదు."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "ఈ లైసెన్సుకి అంగీకరించకపోతే మీరు నమోదుచేసుకోలేరు."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "ఈమెయిల్ చిరునామా ఇప్పటికే ఉంది."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "వాడుకరిపేరు లేదా సంకేతపదం తప్పు."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామ చిహ్నాలు లేదా ఖాళీలు లేకుండా. తప్పనిసరి."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు. తప్పనిసరి."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "పై సంకేతపదం మరోసారి. తప్పనిసరి."
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "ఈమెయిల్"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+#, fuzzy
+msgid "Longer name, preferably your \"real\" name."
msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\""
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "సర్వహక్కులూ సురక్షితం."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4527,7 +5058,7 @@ msgstr ""
"నా పాఠ్యం మరియు దస్త్రాలు %s క్రింద లభ్యం, ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM "
"చిరునామా, మరియు ఫోన్ నంబర్."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4558,7 +5089,7 @@ msgstr ""
"\n"
"నమోదుచేసుకున్నందుకు కృతజ్ఞతలు మరియు ఈ సేవని ఉపయోగిస్తూ మీరు ఆనందిస్తారని మేం ఆశిస్తున్నాం."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4566,7 +5097,7 @@ msgstr ""
"(మీ ఈమెయిలు చిరునామాని ఎలా నిర్ధారించాలో తెలిపే సూచనలతో ఒక సందేశం మీరు ఈమెయిలు ద్వారా మరి కొద్దిసేపట్లోనే "
"అందుతుంది.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4577,78 +5108,86 @@ msgstr ""
"action.register%%). ఒకవేళ మీకు ఇప్పటికే ఏదైనా [పొసగే మైక్రోబ్లాగింగు సైటులో](%%doc.openmublog%"
"%) ఖాతా ఉంటే, మీ ప్రొఫైలు చిరునామాని క్రింద ఇవ్వండి."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "సుదూర చందా"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "ఈ వాడుకరికి చందాచేరు"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "వాడుకరి పేరు"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "మీరు అనుసరించాలనుకుంటున్న వాడుకరి యొక్క ముద్దుపేరు"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "ప్రొఫైలు URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "చందాచేరు"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "ప్రొపైల్ URL తప్పు (చెడు ఫార్మాట్)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+#, fuzzy
+msgid "That is a local profile! Login to subscribe."
msgstr "అది స్థానిక ప్రొఫైలు! చందాచేరడానికి ప్రవేశించండి."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
-msgstr ""
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
+msgstr "ట్యాగులని భద్రపరచలేకపోయాం."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "కేవలం ప్రవేశించిన వాడుకరులు మాత్రమే నోటీసులని పునరావృతించగలరు."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "గుంపు ఏమీ పేర్కొనలేదు."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+#, fuzzy
+msgid "You cannot repeat your own notice."
msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
#, fuzzy
msgid "Repeated"
msgstr "సృష్టితం"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "పునరావృతించారు!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "%sకి స్పందనలు"
@@ -4697,11 +5236,102 @@ msgid ""
msgstr ""
"[ఈ విషయంపై](%%%%action.newnotice%%%%?status_textarea=%s) వ్రాసే మొదటివారు మీరే అవ్వండి!"
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "%2$sలో %1$sకి స్పందనలు!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+#, fuzzy
+msgid "Only logged-in users can restore their account."
+msgstr "కేవలం ప్రవేశించిన వాడుకరులు మాత్రమే నోటీసులని పునరావృతించగలరు."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "మీరు ఇంకా ఏ ఉపకరణాన్నీ నమోదు చేసుకోలేదు."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "ఫైలుని ఎక్కించు"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "ఎక్కించిన ఫైలు కేవలం పాక్షికంగా మాత్రమే ఎక్కింది."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "తాత్కాలిక సంచయం కనబడటంలేదు."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr ""
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "అందరు సభ్యులూ"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "ఫైలుని ఎక్కించు"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు."
@@ -4710,7 +5340,7 @@ msgstr "ఈ సైటులో మీరు వాడుకరలకి పా
msgid "User doesn't have this role."
msgstr "వాడుకరికి ఈ పాత్ర లేదు."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "స్టేటస్నెట్"
@@ -4755,135 +5385,149 @@ msgstr ""
msgid "Save site settings"
msgstr "సైటు అమరికలను భద్రపరచు"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "ఉపకరణాలని చూడడానికి మీరు తప్పనిసరిగా ప్రవేశించి ఉండాలి."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "ఉపకరణ ప్రవర"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "ప్రతీకం"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "పేరు"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "సంస్ధ"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "వివరణ"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "గణాంకాలు"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "సృష్టించినది %1$s - అప్రమేయ అందుబాటు %2$s - %3$d వాడుకరులు"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "ఉపకరణ చర్యలు"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "తొలగించు"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "ఉపకరణ సమాచారం"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
#, fuzzy
msgid "Authorize URL"
msgstr "రచయిత"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%1$sకి ఇష్టమైన నోటీసులు, పేజీ %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
#, fuzzy
msgid "Could not retrieve favorite notices."
msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "%s యొక్క ఇష్టాంశాల ఫీడు (RSS 2.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "%s యొక్క ఇష్టాంశాల ఫీడు (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "%s యొక్క ఇష్టాంశాల ఫీడు (ఆటమ్)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, fuzzy, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4893,7 +5537,8 @@ msgstr ""
"%sకి చందాదార్లు ఎవరూ లేరు. [ఒక ఖాతాని నమోదు చేసుకుని](%%%%action.register%%%%) మీరు "
"ఎందుకు మొదటి చందాదారు కాకూడదు?"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "మీకు నచ్చినవి పంచుకోడానికి ఇదొక మార్గం."
@@ -4911,82 +5556,89 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s గుంపు , %2$dవ పేజీ"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "గుంపు ప్రొఫైలు"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr ""
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "గమనిక"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "మారుపేర్లు"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "గుంపు చర్యలు"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "%s కొరకు స్పందనల ఫీడు (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "%s కొరకు స్పందనల ఫీడు (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "%s గుంపు"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "సభ్యులు"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(ఏమీలేదు)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "అందరు సభ్యులూ"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "సృష్టితం"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "సభ్యులు"
@@ -4995,7 +5647,7 @@ msgstr "సభ్యులు"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5014,7 +5666,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, fuzzy, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5030,30 +5682,30 @@ msgstr ""
"doc.help%%%%))"
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "నిర్వాహకులు"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "అటువంటి సందేశం లేదు."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "పంపినవారు మరియు అందుకున్నవారు మాత్రమే ఈ సందేశాన్ని చదవవచ్చు."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, fuzzy, php-format
msgid "Message to %1$s on %2$s"
msgstr "%2$sలో %1$sకి స్పందనలు!"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, fuzzy, php-format
msgid "Message from %1$s on %2$s"
msgstr "%2$sలో %1$sకి స్పందనలు!"
@@ -5069,7 +5721,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s, %2$dవ పేజీ"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5317,111 +5969,112 @@ msgstr "సైటు-వారీ నోటీసు పాఠ్యం (255 అ
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
+#, fuzzy
+msgid "Save site notice."
msgstr "సైటు గమనికని భద్రపరచు"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS అమరికలు"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, fuzzy, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "%%site.name%% నుండి మీకు ఎలా మెయిల్ వస్తూంతో సంభాళించుకోండి."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "IM అందుబాటులో లేదు."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS చిరునామా"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
#, fuzzy
msgid "Current confirmed SMS-enabled phone number."
msgstr "ప్రస్తుత నిర్ధారిత ఈమెయిలు చిరునామా."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "ఈ ఫోను నంబరు యొక్క నిర్ధారణకై వేచివుంది."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "నిర్ధారణ సంకేతం"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr ""
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "నిర్థారించు"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
#, fuzzy
msgid "SMS phone number"
msgstr "ఫోను నెంబరు లేదు."
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
+#: actions/smssettings.php:152
#, fuzzy
-msgid "Phone number, no punctuation or spaces, with area code"
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామ చిహ్నాలు లేదా ఖాళీలు లేకుండా. తప్పనిసరి."
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMS అభిరుచులు"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
msgstr ""
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
#, fuzzy
msgid "SMS preferences saved."
msgstr "అభిరుచులు భద్రమయ్యాయి."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "ఫోను నెంబరు లేదు."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
#, fuzzy
msgid "No carrier selected."
msgstr "నోటీసుని తొలగించాం."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "ఇది ఇప్పటికే మీ ఫోను నెంబరు."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "ఆ ఫోను నంబరు ఇప్పటికే వేరే వాడుకరికి చెందినది."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
#, fuzzy
msgid ""
"A confirmation code was sent to the phone number you added. Check your phone "
@@ -5429,39 +6082,39 @@ msgid ""
msgstr "ఆ నిర్ధారణా సంకేతం మీది కాదు!"
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "అది తప్పుడు నిర్ధారణ సంఖ్య."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "IM నిర్ధారణ రద్దయింది."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "అది మీ ఫోను నంబర్ కాదు."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "ఆ IM చిరునామాని తొలగించాం."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr ""
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr ""
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5469,9 +6122,9 @@ msgid ""
msgstr ""
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
+#: actions/smssettings.php:535
#, fuzzy
-msgid "No code entered"
+msgid "No code entered."
msgstr "విషయం లేదు!"
#. TRANS: Menu item for site administration
@@ -5547,15 +6200,19 @@ msgstr "మీరు ఎవరికీ చందాచేరలేదు."
msgid "Could not save subscription."
msgstr "కొత్త చందాని చేర్చలేకపోయాం."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "చందాచేరారు"
@@ -5587,7 +6244,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "వీళ్ళు %s యొక్క నోటీసులని వినే ప్రజలు."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
#, fuzzy
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
@@ -5597,7 +6254,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%sకి చందాదార్లు ఎవరూ లేరు. మీరే మొదటివారు కావాలనుకుంటున్నారా?"
@@ -5607,7 +6264,7 @@ msgstr "%sకి చందాదార్లు ఎవరూ లేరు. మ
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5640,7 +6297,7 @@ msgstr "%s వీరి నోటీసులని వింటున్నా
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5654,23 +6311,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s ప్రస్తుతం ఎవరినీ వినడంలేదు."
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "జాబర్"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr ""
@@ -5703,12 +6361,15 @@ msgstr "జోడింపులు లేవు."
msgid "Tag %s"
msgstr "ట్యాగులు"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "వాడుకరి ప్రొఫైలు"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "ఫొటో"
@@ -5723,15 +6384,16 @@ msgid ""
"separated"
msgstr ""
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "తప్పుడు మారుపేరు: \"%s\""
+
#: 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
#, fuzzy
msgid "Use this form to add tags to your subscribers or subscriptions."
@@ -5741,6 +6403,7 @@ msgstr "మీ ఉపకరణాన్ని మార్చడానికి
msgid "No such tag."
msgstr "అటువంటి ట్యాగు లేదు."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "మీరు ఆ వాడుకరిని నిరోధించలేదు."
@@ -5763,7 +6426,7 @@ msgstr "అధీకరణ అభ్యర్థన లేదు!"
msgid "Unsubscribed"
msgstr "చందామాను"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5794,12 +6457,11 @@ msgstr "చెల్లని స్వాగత పాఠ్యం. గరి
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "ప్రొఫైలు"
@@ -5857,118 +6519,153 @@ msgstr "వాడుకరులను కొత్త వారిని ఆహ
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
+#, fuzzy
+msgid "Save user settings."
msgstr "వాడుకరి అమరికలను భద్రపరచు"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "చందాని అధీకరించండి"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "లైసెన్సు"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
msgid "Accept"
msgstr "అంగీకరించు"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
-msgstr "ఈ వాడుకరికి చందాచేరు"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
+msgstr "ఈ వాడుకరికి చందాచేరండి."
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
msgid "Reject"
msgstr "తిరస్కరించు"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
-msgstr "ఈ చందాని తిరస్కరించు"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
+msgstr "ఈ చందాని తిరస్కరించండి."
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "అధీకరణ అభ్యర్థన లేదు!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "చందాని అధీకరించారు"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "చందాని తిరస్కరించారు."
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+msgid "Listenee URI \"%s\" is too long."
msgstr ""
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+msgid "Listenee URI \"%s\" is a local user."
msgstr ""
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+msgid "Profile URL \"%s\" is for a local user."
msgstr ""
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
msgstr ""
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "హోమ్ పేజీ URL సరైనది కాదు."
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "'%s' అనే అవతారపు URL తప్పు"
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "ఫ్రొఫైలు రూపురేఖలు"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
#, fuzzy
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr "నేపథ్య చిత్రం మరియు రంగుల ఎంపికతో మీ గుంపు ఎలా కనిపించాలో మలచుకోండి."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -5998,7 +6695,7 @@ msgstr "[గుంపులని వెతికి](%%action.groupsearch%%)
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, fuzzy, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "%2$sలో %1$s మరియు స్నేహితుల నుండి తాజాకరణలు!"
@@ -6048,7 +6745,7 @@ msgid "Plugins"
msgstr "ప్లగిన్లు"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "సంచిక"
@@ -6057,32 +6754,32 @@ msgid "Author(s)"
msgstr "రచయిత(లు)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "ఇష్టపడు"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%2$s నోటీసుని %1$s ఇష్టాంశంగా గుర్తించారు."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6095,7 +6792,7 @@ msgstr[1] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6104,7 +6801,7 @@ msgstr[1] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6112,7 +6809,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "తప్పుడు దస్త్రపుపేరు.."
@@ -6170,7 +6867,7 @@ msgid "Could not create login token for %s"
msgstr "మారుపేర్లని సృష్టించలేకపోయాం."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6199,29 +6896,29 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, fuzzy, php-format
msgid "Database error inserting hashtag: %s"
msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు. చాలా పొడవుగా ఉంది."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు. గుర్తుతెలియని వాడుకరి."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr "చాలా ఎక్కువ నోటీసులు అంత వేగంగా; కాస్త ఊపిరి తీసుకుని మళ్ళీ కొన్ని నిమిషాల తర్వాత వ్రాయండి."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
#, fuzzy
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
@@ -6229,43 +6926,43 @@ msgid ""
msgstr "చాలా ఎక్కువ నోటీసులు అంత వేగంగా; కాస్త ఊపిరి తీసుకుని మళ్ళీ కొన్ని నిమిషాల తర్వాత వ్రాయండి."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
#, fuzzy
msgid "Problem saving group inbox."
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6273,14 +6970,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6352,35 +7049,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "@%2$s, %1$sకి స్వాగతం!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "గుంపుని సృష్టించలేకపోయాం."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "గుంపుని సృష్టించలేకపోయాం."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "మీరు వాడుకరులని తొలగించలేరు."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
#, fuzzy
@@ -6418,212 +7136,215 @@ msgid "Other"
msgstr "ఇతర"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "శీర్షికలేని పేజీ"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "మరింత చూపించు"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "ప్రాధమిక సైటు మార్గదర్శిని"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr ""
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "వ్యక్తిగత"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "ఖాతా"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
#, fuzzy
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "అనుసంధానాలు"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "అనుసంధానించు"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "సైటు స్వరూపణాన్ని మార్చండి"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "నిర్వాహకులు"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "%sలో తోడుకై మీ స్నేహితులని మరియు సహోద్యోగులని ఆహ్వానించండి"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "ఆహ్వానించు"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "సైటు నుండి నిష్క్రమించు"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "నిష్క్రమించు"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "ఖాతాని సృష్టించుకోండి"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "నమోదు"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "సైటు లోనికి ప్రవేశించండి"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "ప్రవేశించు"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "సహాయం కావాలి!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "సహాయం"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "ప్రజలు లేదా పాఠ్యం కొరకు వెతకండి"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "వెతుకు"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "సైటు గమనిక"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "స్థానిక వీక్షణలు"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "పేజీ గమనిక"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "ద్వితీయ సైటు మార్గదర్శిని"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "సహాయం"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "గురించి"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "ప్రశ్నలు"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "సేవా నియమాలు"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "అంతరంగికత"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "మూలము"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "సంప్రదించు"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "బాడ్జి"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "స్టేటస్నెట్ మృదూపకరణ లైసెన్సు"
@@ -6631,7 +7352,7 @@ msgstr "స్టేటస్నెట్ మృదూపకరణ లైస
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6641,7 +7362,7 @@ msgstr ""
"అందిస్తున్న సూక్ష్మ బ్లాగింగు సేవ."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగింగు సదుపాయం."
@@ -6650,7 +7371,7 @@ msgstr "**%%site.name%%** అనేది మైక్రో బ్లాగి
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6662,50 +7383,50 @@ msgstr ""
"పై నడుస్తుంది."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "స్టేటస్నెట్ మృదూపకరణ లైసెన్సు"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "పేజీకరణ"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "తర్వాత"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "ఇంతక్రితం"
@@ -6714,10 +7435,79 @@ msgstr "ఇంతక్రితం"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "గుర్తు తెలియని భాష \"%s\"."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "ఫొటో"
+msgid "Cannot force remote user to subscribe."
+msgstr "ఏవరికి చందా చేరాలనుకుంటున్నారో ఆ వాడుకరి పేరుని ఇవ్వండి."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr "తెలియని ప్రొఫైలు."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "మీరు ఇప్పటికే ఆ గుంపులో సభ్యులు."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు."
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "అటువంటి వాడుకరి లేరు."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s - %2$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6791,7 +7581,7 @@ msgid "User configuration"
msgstr "వాడుకరి స్వరూపణం"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "వాడుకరి"
@@ -6836,19 +7626,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6871,29 +7665,33 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "ట్యాగులని భద్రపరచలేకపోయాం."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
#, fuzzy
msgid "Database error inserting OAuth application user."
msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు"
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "ఈ ఉపకరణానికి ప్రతీకం"
@@ -7006,17 +7804,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "తొలగించు"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "ఈ గుంపును తొలగించకు"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "రచయిత"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "మునుజూపు"
@@ -7039,15 +7843,19 @@ msgstr "సంకేతపదం మార్పు విఫలమైంది"
#. TRANS: Exception thrown when a password change attempt fails because it is not allowed.
#: lib/authenticationplugin.php:238
-#, fuzzy
msgid "Password changing is not allowed."
-msgstr "సంకేతపదం మార్పు"
+msgstr "సంకేతపదం మార్పడానికి అనుమతి లేదు."
#. TRANS: Title for the form to block a user.
#: lib/blockform.php:68
msgid "Block"
msgstr "నిరోధించు"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "ఈ వాడుకరిని నిరోధించు"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7164,7 +7972,7 @@ msgstr "పూర్తిపేరు: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "ప్రాంతం: %s"
@@ -7172,7 +7980,7 @@ msgstr "ప్రాంతం: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "హోంపేజీ: %s"
@@ -7407,26 +8215,26 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "స్వరూపణపు దస్త్రమేమీ కనబడలేదు. "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
#, fuzzy
msgid "I looked for configuration files in the following places:"
msgstr "స్వరూపణపు దస్త్రాల కొరకు ఈ ప్రదేశాలతో చూసాం: "
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
#, fuzzy
msgid "Go to the installer."
msgstr "సైటు లోనికి ప్రవేశించండి"
@@ -7470,14 +8278,19 @@ msgstr "అధీకృత అనుసంధాన ఉపకరణాలు"
msgid "Database error"
msgstr ""
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "ఈ వాడుకరిని తొలగించు"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "ఫైలుని ఎక్కించు"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "మీ వ్యక్తిగత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై."
@@ -7494,26 +8307,77 @@ msgctxt "RADIO"
msgid "Off"
msgstr "ఆఫ్"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "రీసెట్"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "రంగులను మార్చు"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "అప్రమేయాలని ఉపయోగించు"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+#, fuzzy
+msgid "Restore default designs"
+msgstr "అప్రమేయాలని ఉపయోగించు"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+#, fuzzy
+msgid "Reset back to default"
+msgstr "అప్రమేయాలని ఉపయోగించు"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "రూపురేఖలని భద్రపరచు"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "మీ రూపురేఖలని తాజాకరించలేకపోయాం."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr ""
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
#, fuzzy
msgid "Disfavor this notice"
msgstr "ఈ నోటీసుని తొలగించు"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "ఇష్టాంశాలకు చేర్చు"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "ఈ నోటీసుని పునరావృతించు"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "ఇష్టపడు"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7530,6 +8394,19 @@ msgstr "ఆటమ్"
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "అందరు సభ్యులూ"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7565,33 +8442,33 @@ msgstr "వెళ్ళు"
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr "ఈ ఉపకరణం యొక్క హోమ్పేజీ చిరునామా"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "గుంపుని లేదా విషయాన్ని వివరించండి"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "గుంపు లేదా విషయాన్ని గురించి %d అక్షరాల్లో వివరించండి"
msgstr[1] "గుంపు లేదా విషయాన్ని గురించి %d అక్షరాల్లో వివరించండి"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "గుంపు యొక్క ప్రాంతం, ఉంటే, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\""
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7696,40 +8573,41 @@ msgstr "%s గుంపు లక్షణాలను మార్చు"
msgid "This page is not available in a media type you accept"
msgstr ""
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr ""
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
-#, fuzzy, php-format
+#: lib/imagefile.php:91
+#, php-format
msgid "That file is too big. The maximum file size is %s."
-msgstr "ఇది చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం 140 అక్షరాలు."
+msgstr "ఆ దస్త్రం చాలా పెద్దగా ఉంది. గరిష్ఠ దస్త్రపు పరిమాణం %s అక్షరాలు."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "పాక్షిక ఎగుమతి."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr ""
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "బొమ్మ కాదు లేదా పాడైపోయిన ఫైలు."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "అటువంటి ఫైలు లేదు."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "తెలియని ఫైలు రకం"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7737,7 +8615,7 @@ msgstr[0] "%dమెబై"
msgstr[1] "%dమెబై"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7745,7 +8623,7 @@ msgstr[0] "%dకిబై"
msgstr[1] "%dకిబై"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7766,23 +8644,25 @@ msgstr "గుర్తు తెలియని భాష \"%s\"."
msgid "Leave"
msgstr "వైదొలగు"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "వాడుకరిపేరు మరియు సంకేతపదాలతో ప్రవేశించండి"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "కొత్త ఖాతా కొరకై నమోదుచేసుకోండి"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "ఈమెయిల్ చిరునామా నిర్ధారణ"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, fuzzy, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7813,14 +8693,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7832,7 +8712,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7859,14 +8739,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "స్వపరిచయం: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "%sకి నోటీసులు పంపించడానికి కొత్త ఈమెయిలు చిరునామా"
@@ -7874,7 +8754,7 @@ msgstr "%sకి నోటీసులు పంపించడానికి
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7889,34 +8769,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s స్థితి"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS నిర్ధారణ"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, fuzzy, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "ఈ ఫోను నంబరు యొక్క నిర్ధారణకై వేచివుంది."
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
-#, php-format
-msgid "You've been nudged by %s"
-msgstr ""
+#: lib/mail.php:485
+#, fuzzy, php-format
+msgid "You have been nudged by %s"
+msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు."
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7945,7 +8825,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "%s నుండి కొత్త అంతరంగిక సందేశం"
@@ -7954,7 +8834,7 @@ msgstr "%s నుండి కొత్త అంతరంగిక సందే
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7989,7 +8869,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) మీ నోటీసుని ఇష్టపడ్డారు"
@@ -7999,7 +8879,7 @@ msgstr "%1$s (@%2$s) మీ నోటీసుని ఇష్టపడ్డా
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8037,7 +8917,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8050,7 +8930,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) మీ దృష్టికి ఒక నోటిసుని పంపించారు"
@@ -8061,7 +8941,7 @@ msgstr "%1$s (@%2$s) మీ దృష్టికి ఒక నోటిసు
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8110,11 +8990,11 @@ msgstr ""
"\n"
"తా.క. ఈ ఈమెయిలు గమనింపులని మీరు ఇక్కడ నిలిపివేసుకోవచ్చు: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "ఎవరి తపాలాపెట్టెలను ఆ వాడుకరి మాత్రమే చదవలగరు."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8122,10 +9002,6 @@ msgstr ""
"మీకు అంతరంగిక సందేశాలు లేవు. ఇతర వాడుకరులతో సంభాషణకై మీరు వారికి అంతరంగిక సందేశాలు "
"పంపించవచ్చు. మీ కంటికి మాత్రమే కనబడేలా వారు మీకు సందేశాలు పంపవచ్చు."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "నుండి"
-
#: lib/mailhandler.php:37
#, fuzzy
msgid "Could not parse message."
@@ -8154,38 +9030,6 @@ msgstr "%s కి నేరు సందేశాలు"
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "ఎక్కించిన ఫైలు కేవలం పాక్షికంగా మాత్రమే ఎక్కింది."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "తాత్కాలిక సంచయం కనబడటంలేదు."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8206,7 +9050,7 @@ msgstr "ఇష్టాంశాన్ని తొలగించలేకప
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8215,7 +9059,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8249,18 +9093,27 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "పంపించు"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "సందేశం"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "నుండి"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "పేరులో చిన్నబడి అక్షరాలు మరియు అంకెలు మాత్రమే ఖాళీలు లేకుండా ఉండాలి."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8276,11 +9129,11 @@ msgstr "సైటు గమనిక"
msgid "What's up, %s?"
msgstr "%s, ఏమిటి సంగతులు?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "జోడించు"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "ఒక ఫైలుని జోడించు"
@@ -8301,55 +9154,59 @@ msgstr ""
"కాసేపాగి ప్రయత్నించండి"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "ఉ"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "ద"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "తూ"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "ప"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "ప్రాంతం"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "జాలం"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "సందర్భంలో"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "%s యొక్క పునరావృతం"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "ఈ నోటీసుపై స్పందించండి"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "స్పందించండి"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "ఈ నోటీసుని తొలగించు"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "నోటీసుని పునరావృతించారు"
@@ -8389,78 +9246,114 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "కొత్త చందాని చేర్చలేకపోయాం."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "వ్యక్తిగత"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "స్పందనలు"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "ప్రొఫైలు"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
msgid "Favorites"
msgstr "ఇష్టాంశాలు"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+#, fuzzy
+msgctxt "MENU"
msgid "Inbox"
msgstr "వచ్చినవి"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "మీకు వచ్చిన సందేశాలు"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+#, fuzzy
+msgctxt "MENU"
msgid "Outbox"
msgstr "పంపినవి"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "మీరు పంపిన సందేశాలు"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr ""
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
#, fuzzy
msgid "Unknown"
msgstr "తెలియని చర్య"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "చందాలు"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "అన్ని చందాలు"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "చందాదార్లు"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "అందరు చందాదార్లు"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "వాడుకరి ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "సభ్యులైన తేదీ"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "గుంపులు"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "రోజువారీ సగటు"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "అన్ని గుంపులు"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8507,7 +9400,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "ఈ గుంపునుండి ఈ వాడుకరిని నిరోధించు"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
@@ -8599,6 +9492,10 @@ msgstr "ఆహ్వానించు"
msgid "Invite friends and colleagues to join you on %s"
msgstr "%sలో తోడుకై మీ స్నేహితులని మరియు సహోద్యోగులని ఆహ్వానించండి"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "ఈ వాడుకరికి చందాచేరు"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8710,65 +9607,82 @@ msgstr "చందామాను"
msgid "User %1$s (%2$d) has no profile record."
msgstr "వాడుకరికి ప్రొఫైలు లేదు."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "అవతారాన్ని మార్చు"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "వాడుకరి చర్యలు"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "వాడుకరి తొలగింపు కొనసాగుతూంది..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "ఫ్రొఫైలు అమరికలని మార్చు"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "మార్చు"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "సందేశం"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
#, fuzzy
msgid "Moderate"
msgstr "సమన్వయకర్త"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "వాడుకరి పాత్ర"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "నిర్వాహకులు"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "సమన్వయకర్త"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "లోనికి ప్రవేశించలేదు."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "కొన్ని క్షణాల క్రితం"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "ఓ నిమిషం క్రితం"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8776,12 +9690,12 @@ msgstr[0] "సుమారు ఒక నిమిషం క్రితం"
msgstr[1] "సుమారు %d నిమిషాల క్రితం"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "ఒక గంట క్రితం"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8789,12 +9703,12 @@ msgstr[0] "సుమారు ఒక గంట క్రితం"
msgstr[1] "సుమారు %d గంటల క్రితం"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "ఓ రోజు క్రితం"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8802,12 +9716,12 @@ msgstr[0] "సుమారు ఒక రోజు క్రితం"
msgstr[1] "సుమారు %d రోజుల క్రితం"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "ఓ నెల క్రితం"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8815,18 +9729,13 @@ msgstr[0] "సుమారు ఒక నెల క్రితం"
msgstr[1] "సుమారు %d నెలల క్రితం"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "ఒక సంవత్సరం క్రితం"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s అనేది సరైన రంగు కాదు!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s అనేది సరైన రంగు కాదు! 3 లేదా 6 హెక్స్ అక్షరాలను వాడండి."
@@ -8847,32 +9756,18 @@ msgstr[0] "నోటిసు చాలా పొడవుగా ఉంది -
msgstr[1] "నోటిసు చాలా పొడవుగా ఉంది - %1$d అక్షరాలు గరిష్ఠం, మీరు %2$d పంపించారు."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "తప్పుడు పరిమాణం."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "గుంపు ఏమీ పేర్కొనలేదు."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
-msgstr[1] ""
diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po
index 16d69a9718..7445a3cb42 100644
--- a/locale/tr/LC_MESSAGES/statusnet.po
+++ b/locale/tr/LC_MESSAGES/statusnet.po
@@ -1,6 +1,7 @@
# Translation of StatusNet - Core to Turkish (Türkçe)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
+# Author: Emperyan
# Author: Joseph
# Author: Maidis
# Author: McDutchie
@@ -11,17 +12,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:16+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:44+0000\n"
"Language-Team: Turkish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tr\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -77,8 +78,9 @@ msgid "Save access settings"
msgstr "Erişim ayarlarını kaydet"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -88,13 +90,13 @@ msgstr "Erişim ayarlarını kaydet"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Kaydet"
@@ -102,7 +104,7 @@ msgstr "Kaydet"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Böyle bir sayfa yok."
@@ -112,6 +114,8 @@ msgstr "Böyle bir sayfa yok."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -127,13 +131,23 @@ msgstr "Böyle bir sayfa yok."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -141,15 +155,15 @@ msgstr "Böyle bir sayfa yok."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Böyle bir kullanıcı yok."
@@ -163,9 +177,10 @@ msgstr "%1$s ve arkadaşları, sayfa %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s ve arkadaşları"
@@ -281,7 +296,7 @@ msgstr "%2$s üzerindeki %1$s ve arkadaşlarından güncellemeler!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -315,7 +330,21 @@ msgstr ""
"belirtmelisiniz."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Kullanıcı güncellenemedi."
@@ -325,18 +354,23 @@ msgstr "Kullanıcı güncellenemedi."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Kullanıcının profili yok."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Profil kaydedilemedi."
@@ -346,8 +380,8 @@ msgstr "Profil kaydedilemedi."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -364,13 +398,14 @@ msgstr[0] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Dizayn ayarlarınız kaydedilemedi."
@@ -378,48 +413,59 @@ msgstr "Dizayn ayarlarınız kaydedilemedi."
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Tasarımınız güncellenemedi."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "Ana"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s zaman çizelgesi"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
-#, fuzzy, php-format
+#, php-format
msgid "%s subscriptions"
-msgstr "Bütün abonelikler"
+msgstr "%s abonelikleri"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "%s kullanıcısının favori durum mesajları"
+msgstr "%s favorileri"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "%s grup üyeleri"
+msgstr "%s üyelikleri"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Kendinizi engelleyemezsiniz!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Kullanıcıyı engelleme başarısız oldu."
@@ -474,7 +520,8 @@ msgstr "Alıcı kullanıcı bulunamadı."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+#, fuzzy
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Arkadaşınız olmayan kullanıcılara özel mesaj gönderemezsiniz."
#. TRANS: Client error displayed trying to direct message self (403).
@@ -499,8 +546,9 @@ msgid "This status is already a favorite."
msgstr "Bu durum mesajı zaten bir favori."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Favori oluşturulamadı."
@@ -510,7 +558,8 @@ msgid "That status is not a favorite."
msgstr "Bu durum mesajı bir favori değil."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Favori silinemedi."
@@ -555,9 +604,9 @@ msgstr "Hedef kullanıcı bulunamadı."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Takma ad kullanımda. Başka bir tane deneyin."
@@ -565,21 +614,22 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Geçersiz bir takma ad."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Başlangıç sayfası adresi geçerli bir URL değil."
@@ -587,23 +637,24 @@ msgstr "Başlangıç sayfası adresi geçerli bir URL değil."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Tam isim çok uzun (en fazla: 255 karakter)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -613,9 +664,9 @@ msgstr[0] "Tanım çok uzun (en fazla %d karakter)."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Yer bilgisi çok uzun (en fazla 255 karakter)."
@@ -625,8 +676,8 @@ msgstr "Yer bilgisi çok uzun (en fazla 255 karakter)."
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -642,18 +693,16 @@ msgstr "Geçersiz büyüklük."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Diğerisim \"%s\" kullanımda. Başka bir tane deneyin."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Diğerisim, kullanıcı adı ile aynı olamaz."
@@ -664,28 +713,32 @@ msgstr "Diğerisim, kullanıcı adı ile aynı olamaz."
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Onay kodu bulunamadı."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Bize o profili yollamadınız"
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Bu gruptan yönetici tarafından engellendiniz."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "%1$s kullanıcısı, %2$s grubuna katılamadı."
@@ -697,9 +750,11 @@ msgstr "Bu grubun bir üyesi değilsiniz."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -736,7 +791,7 @@ msgid "Upload failed."
msgstr "Yükleme başarısız."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Geçersiz istek belirteci veya sağlayıcı."
@@ -756,20 +811,25 @@ msgid "Request token already authorized."
msgstr "İstek belirteci zaten yetkili."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "Oturum belirtecinizde bir sorun var. Lütfen, tekrar deneyin."
@@ -786,18 +846,22 @@ msgstr "oauth_token_association eklerken veritabanı hatası."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Beklenmeğen form girdisi."
@@ -849,29 +913,31 @@ msgstr "Hesap"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Takma ad"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Parola"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -945,6 +1011,7 @@ msgstr "Başka bir kullanıcının durum mesajını silemezsiniz."
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -964,38 +1031,51 @@ msgstr "Kendi durum mesajınızı tekrarlayamazsınız."
msgid "Already repeated that notice."
msgstr "Bu durum mesajı zaten tekrarlanmış."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "HTTP yöntemi desteklenmiyor."
-#: actions/apistatusesshow.php:141
-#, php-format
-msgid "Unsupported format: %s"
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
+#, fuzzy, php-format
+msgid "Unsupported format: %s."
msgstr "Desteklenmeyen biçim: %s"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Durum silindi."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Bu ID'li bir durum mesajı bulunamadı."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Yalnızca Atom biçimi kullanılarak silinebilir."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+#, fuzzy
+msgid "Cannot delete this notice."
msgstr "Bu durum mesajı silinemiyor."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "%d durum mesajını sil"
@@ -1051,7 +1131,7 @@ msgstr "%2$s / %3$s tarafından favorilere eklenen %1$s güncellemeleri."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Grup - %s için besleme oluşturulamadı."
@@ -1072,13 +1152,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr ""
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s genel zaman çizelgesi"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr ""
@@ -1126,204 +1207,271 @@ msgstr ""
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
msgstr ""
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr ""
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr ""
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "UPA metodu yapım aşamasında."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
#, fuzzy
msgid "User not found."
msgstr "Onay kodu bulunamadı."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Böyle bir durum mesajı yok."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Yeni abonelik eklenemedi."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Durum mesajını kaydederken hata oluştu."
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Böyle bir durum mesajı yok."
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Favorilere ekle"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
#, fuzzy
msgid "No such profile."
msgstr "Böyle bir durum mesajı yok."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, fuzzy, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "%2$s üzerindeki %1$s ve arkadaşlarından güncellemeler!"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+#, fuzzy
+msgid "Cannot add someone else's subscription."
+msgstr "Yeni abonelik eklenemedi."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+#, fuzzy
+msgid "Can only handle favorite activities."
+msgstr "Durum mesajını kaydederken hata oluştu."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+#, fuzzy
+msgid "Can only fave notices."
+msgstr "Durum mesajını kaydederken hata oluştu."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+#, fuzzy
+msgid "Unknown note."
+msgstr "Böyle bir durum mesajı yok."
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+#, fuzzy
+msgid "Already a favorite."
+msgstr "Favorilere ekle"
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s grup üyeleri"
-#: actions/atompubmembershipfeed.php:147
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
+msgid "Groups %1$s is a member of on %2$s"
msgstr "%2$s kullanıcısının üye olduğu %1$s grupları."
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+#, fuzzy
+msgid "Cannot add someone else's membership."
+msgstr "Yeni abonelik eklenemedi."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+#, fuzzy
+msgid "Can only handle join activities."
+msgstr "Durum mesajını kaydederken hata oluştu."
-#: actions/atompubmembershipfeed.php:256
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
#, fuzzy
msgid "Unknown group."
msgstr "Yeni grup"
-#: actions/atompubmembershipfeed.php:263
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
#, fuzzy
msgid "Already a member."
msgstr "Tüm üyeler"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
msgstr ""
-#: actions/atompubshowfavorite.php:89
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
#, fuzzy
msgid "No such favorite."
msgstr "Böyle bir dosya yok."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
#, fuzzy
-msgid "Can't delete someone else's favorite"
+msgid "Cannot delete someone else's favorite."
msgstr "Favori silinemedi."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Böyle bir kullanıcı yok."
-#: actions/atompubshowmembership.php:90
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
#, fuzzy
-msgid "Not a member"
+msgid "Not a member."
msgstr "Tüm üyeler"
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "HTTP yöntemi desteklenmiyor."
-
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
-
-#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
-#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Böyle bir durum mesajı yok."
-
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Bize o profili yollamadınız"
-
-#: actions/atompubshowsubscription.php:154
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's membership."
msgstr "Yeni abonelik eklenemedi."
-#: actions/atompubsubscriptionfeed.php:150
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
+#: actions/atompubshowsubscription.php:72
+#: actions/atompubshowsubscription.php:83
+#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
+msgid "No such profile id: %d."
+msgstr "Böyle bir durum mesajı yok."
+
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, fuzzy, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Bize o profili yollamadınız"
+
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+#, fuzzy
+msgid "Cannot delete someone else's subscription."
+msgstr "Yeni abonelik eklenemedi."
+
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, fuzzy, php-format
+msgid "People %1$s has subscribed to on %2$s"
msgstr "Uzaktan abonelik"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
msgstr ""
-#: actions/atompubsubscriptionfeed.php:262
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
#, fuzzy, php-format
-msgid "Unknown profile %s"
+msgid "Unknown profile %s."
msgstr "Kullanıcının profili yok."
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, fuzzy, php-format
+msgid "Already subscribed to %s."
+msgstr "Zaten abone olunmuş!"
+
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@@ -1332,11 +1480,15 @@ msgstr "Böyle bir durum mesajı yok."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Takma ad yok"
@@ -1353,7 +1505,7 @@ msgstr "Geçersiz büyüklük."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Avatar"
@@ -1367,42 +1519,52 @@ msgstr ""
"Kişisel kullanıcı resminizi yükleyebilirsiniz. Maksimum dosya boyutu %s'dir."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
#, fuzzy
msgid "User without matching profile."
msgstr "Kullanıcının profili yok."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Profil ayarları"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Orijinal"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Önizleme"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Sil"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
#, fuzzy
msgctxt "BUTTON"
msgid "Upload"
@@ -1419,31 +1581,71 @@ msgstr "Kırp"
msgid "No file uploaded."
msgstr "Hiçbir dosya yüklenmedi."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+#, fuzzy
+msgid "Pick a square area of the image to be your avatar."
msgstr "Resimden kullanıcı resminiz olacak bir kare alanı seçin"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr ""
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Avatar güncellendi."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Avatar güncellemede hata."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Kullanıcı resmi silindi."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Arkaplan"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1451,7 +1653,8 @@ msgstr "Jabber ID başka bir kullanıcıya ait."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Kullanıcıyı engelle"
@@ -1475,15 +1678,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Hayır"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+#, fuzzy
+msgid "Do not block this user."
msgstr "Bu kullanıcıyı engelleme"
#. TRANS: Button label on the user block form.
@@ -1494,15 +1697,15 @@ msgstr "Bu kullanıcıyı engelleme"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Evet"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+#, fuzzy
+msgid "Block this user."
msgstr "Bu kullanıcıyı engelle"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1510,31 +1713,6 @@ msgstr "Bu kullanıcıyı engelle"
msgid "Failed to save block information."
msgstr "Engelleme bilgisinin kaydedilmesi başarısızlığa uğradı."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Böyle bir kullanıcı yok."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1605,23 +1783,6 @@ msgstr "Tanınmayan adres türü %s."
msgid "That address has already been confirmed."
msgstr "O adres daha önce onaylanmış."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Kullanıcı güncellenemedi."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1647,11 +1808,84 @@ msgid "Conversation"
msgstr "Konuşma"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Durum mesajları"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Kullanıcıları silemezsiniz."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Kullanıcı resmi silindi."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+#, fuzzy
+msgid "Delete account"
+msgstr "Bir hesap oluştur"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Onayla"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Kullanıcıları silemezsiniz."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Kullanıcıları silemezsiniz."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1665,14 +1899,14 @@ msgstr "Onay kodu bulunamadı."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Bu uygulamanın sahibi değilsiniz."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr ""
@@ -1695,12 +1929,14 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
+#, fuzzy
+msgid "Do not delete this application."
msgstr "Bu uygulamayı silme"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
+#, fuzzy
+msgid "Delete this application."
msgstr "Bu uygulamayı sil"
#. TRANS: Client error when trying to delete group while not logged in.
@@ -1710,8 +1946,10 @@ msgid "You must be logged in to delete a group."
msgstr "Bir grup oluşturmak için giriş yapmış olmanız gerekir."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
#, fuzzy
msgid "No nickname or ID."
msgstr "Takma ad yok"
@@ -1757,25 +1995,31 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
#, fuzzy
-msgid "Do not delete this group"
+msgid "Do not delete this group."
msgstr "Bu durum mesajını silme"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
#, fuzzy
-msgid "Delete this group"
+msgid "Delete this group."
msgstr "Bu kullanıcıyı sil"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Giriş yapılmadı."
@@ -1802,27 +2046,40 @@ msgstr "Bu durum mesajını silmek istediğinizden emin misiniz?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
+#, fuzzy
+msgid "Do not delete this notice."
msgstr "Bu durum mesajını silme"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
+#: actions/deletenotice.php:166
+#, fuzzy
+msgid "Delete this notice."
msgstr "Bu durum mesajını sil"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Kullanıcıları silemezsiniz."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Sadece yerel kullanıcıları silebilirsiniz."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+#, fuzzy
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Kullanıcıyı sil"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Kullanıcıyı sil"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1830,79 +2087,103 @@ msgstr ""
"Bu kullanıcıyı silmek istediğinizden emin misiniz? Bu, veritabanından "
"kullanıcıya ait tüm verileri herhangi bir yedek olmaksızın temizleyecektir."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+#, fuzzy
+msgid "Do not delete this user."
+msgstr "Bu durum mesajını silme"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
+#: actions/deleteuser.php:165
+#, fuzzy
+msgid "Delete this user."
msgstr "Bu kullanıcıyı sil"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Dizayn"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr ""
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Geçersiz logo bağlantısı."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
#, fuzzy
msgid "Invalid SSL logo URL."
msgstr "Geçersiz logo bağlantısı."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Tema mevcut değil: %s"
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Değiştir"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Site logosu"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "SSL logosu"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Temayı değiştir"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Site teması"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Site için tema."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Özel tema"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Özel bir StatusNet temasını .ZIP arşivi olarak yükleyebilirsiniz."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Arkaplan resmini değiştir"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Arkaplan"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1912,98 +2193,108 @@ msgstr ""
"$s'dir."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Açık"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Kapalı"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Arkaplan resmini açın ya da kapatın."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Arkaplan resmini döşe"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+#, fuzzy
+msgid "Change colors"
msgstr "Renkleri değiştir"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "İçerik"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Kenar Çubuğu"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Metin"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Bağlantılar"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Gelişmiş"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Özel CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+#, fuzzy
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "Öntanımlıları kullan"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
-msgstr ""
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+#, fuzzy
+msgid "Restore default designs."
+msgstr "Öntanımlıları kullan"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+#, fuzzy
+msgid "Reset back to default."
msgstr "Öntanımlıya geri dön"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Kaydet"
-
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+#, fuzzy
+msgid "Save design."
msgstr "Dizaynı kaydet"
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Bu durum mesajı bir favori değil!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Favorilere ekle"
-#: actions/doc.php:158
-#, php-format
-msgid "No such document \"%s\""
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
+#, fuzzy, php-format
+msgid "No such document \"%s\"."
msgstr "Böyle bir durum mesajı yok."
#. TRANS: Title for "Edit application" form.
@@ -2018,7 +2309,7 @@ msgid "You must be logged in to edit an application."
msgstr "Bir uygulamayı düzenlemek için giriş yapmış olmanız gerekir."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Böyle bir uygulama yok."
@@ -2028,63 +2319,73 @@ msgid "Use this form to edit your application."
msgstr "Uygulamayı düzenlemek için bu biçimi kullan."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "İsim gereklidir."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
#, fuzzy
msgid "Name is too long (maximum 255 characters)."
msgstr "İsim çok uzun (maksimum: 255 karakter)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "İsim halihazırda kullanımda. Başka bir tane deneyin."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Abonelik reddedildi."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "Kaynak bağlantı çok uzun."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "Kaynak bağlantı geçerli değil."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Organizasyon gereklidir."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
#, fuzzy
msgid "Organization is too long (maximum 255 characters)."
msgstr "Organizasyon çok uzun (maksimum 255 karakter)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Organizasyon anasayfası gereklidir."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr ""
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr ""
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Uygulama güncellenemedi."
@@ -2095,14 +2396,17 @@ msgid "Edit %s group"
msgstr "%s grubunu düzenle"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Bir grup oluşturmak için giriş yapmış olmanız gerekir."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "Bir grubu düzenlemek için bir yönetici olmalısınız."
@@ -2113,63 +2417,65 @@ msgstr "Grubu düzenlemek için bu biçimi kullan."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, fuzzy, php-format
msgid "Invalid alias: \"%s\""
msgstr "%s Geçersiz başlangıç sayfası"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Grup güncellenemedi."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Kullanıcı güncellenemedi."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Seçenekler kaydedildi."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "E-posta ayarları"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "%%site.name%%'dan nasıl e-posta alacağınızı yönetin."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "E-posta adresi"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Mevcut doğrulanmış e-posta adresi."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Geri al"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2182,46 +2488,46 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "\"kullanıcıadı@örnek.org\" benzeri bir e-posta adresi."
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Ekle"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Gelen e-posta"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr ""
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Yeni durum mesajları göndermek için bu adrese e-posta atın."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
"Gönderim yapmak için yeni bir e-posta adresi oluşturun; eskisi iptal "
"olacaktır."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
@@ -2229,93 +2535,94 @@ msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Yeni"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "E-posta tercihleri"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
#, fuzzy
msgid "Send me notices of new subscriptions through email."
msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Biri benim durum mesajımı favori olarak eklediğinde bana e-posta gönder."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Birisi bana özel mesaj attığında bana e-posta gönder."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
#, fuzzy
msgid "Publish a MicroID for my email address."
msgstr "Bir takma ad veya eposta adresi girin."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "E-posta tercihleri kaydedildi."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
#, fuzzy
msgid "No email address."
msgstr "Geçersiz bir eposta adresi."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
+#: actions/emailsettings.php:388
#, fuzzy
-msgid "Cannot normalize that email address"
+msgid "Cannot normalize that email address."
msgstr "Jabber işlemlerinde bir hata oluştu."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Geçersiz bir eposta adresi."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Bu zaten sizin e-posta adresiniz."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
#, fuzzy
msgid "That email address already belongs to another user."
msgstr "Jabber ID başka bir kullanıcıya ait."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+#, fuzzy
+msgid "Could not insert confirmation code."
msgstr "Onay kodu eklenemedi."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
#, fuzzy
msgid ""
"A confirmation code was sent to the email address you added. Check your "
@@ -2325,244 +2632,306 @@ msgstr ""
"mesaj yollanabilmesi için onaylamanız gerekmektedir."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "İptal etmek için beklenen onay yok."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Bu yanlış e-posta adresi."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+#, fuzzy
+msgid "Could not delete email confirmation."
msgstr "Eposta onayı silinemedi."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "İptal etmek için beklenen onay yok."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Bu sizin e-posta adresiniz değil."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Eposta adresi zaten var."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
#, fuzzy
msgid "No incoming email address."
msgstr "Geçersiz bir eposta adresi."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+#, fuzzy
+msgid "Could not update user record."
msgstr "Kullanıcı kayıtları güncellenemedi."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Gelen e-posta adresi silindi."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Yeni gelen e-posta adresi eklendi."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Bu durum mesajı zaten bir favori!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+#, fuzzy
+msgid "Disfavor favorite."
msgstr "Favoriliğini kaldır"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Popüler durum mesajları"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Popüler durum mesajları, sayfa %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Şu an sitedeki en popüler durum mesajları."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr ""
"Favori durum mesajları bu sayfada görüntülenir ama daha hiç kimse favorilere "
"eklememiş."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, 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:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%s kullanıcısının favori durum mesajları"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, fuzzy, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "%s adli kullanicinin durum mesajlari"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Öne çıkan kullanıcılar"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Öne çıkan kullanıcılar, sayfa %d"
-#: actions/featured.php:99
-#, php-format
-msgid "A selection of some great users on %s"
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
+#, fuzzy, php-format
+msgid "A selection of some great users on %s."
msgstr "%s üzerindeki harika kullanıcılardan bazılarının bir seçkisi"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Böyle bir durum mesajı yok."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Böyle bir durum mesajı yok."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Ek yok."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Yüklenmiş ek yok."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Bu yanıt beklenmiyordu!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr ""
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Yerel aboneliği kullanabilirsiniz!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr ""
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Takip talebine izin verildi"
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr ""
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
#, fuzzy
msgid "Remote service uses unknown version of OMB protocol."
msgstr "OMB protokolünün bilinmeğen sürümü."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
#, fuzzy
msgid "Error updating remote profile."
msgstr "Uzaktaki profili güncellemede hata oluştu"
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Böyle bir dosya yok."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Profil kaydedilemedi."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
#, fuzzy
msgid "Invalid role."
msgstr "Geçersiz büyüklük."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr ""
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
#, fuzzy
msgid "You cannot grant user roles on this site."
msgstr "Bize o profili yollamadınız"
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
#, fuzzy
msgid "User already has this role."
msgstr "Kullanıcının profili yok."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Hiçbir profil belirtilmedi."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr ""
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Hiçbir grup belirtilmedi."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Sadece bir yönetici grup üyelerini engelleyebilir."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Kullanıcı zaten gruptan engellenmiş."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Kullanıcı grubunun bir üyesi değil."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Kullanıcıyı gruptan engelle"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2571,164 +2940,193 @@ msgid ""
msgstr ""
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+#, fuzzy
+msgid "Do not block this user from this group."
msgstr "Bu kullanıcıyı bu gruptan engellemeyin"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
+#: actions/groupblock.php:198
+#, fuzzy
+msgid "Block this user from this group."
msgstr "Bu kullanıcıyı bu gruptan engelleyin"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr ""
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "JabberID yok."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "Bir grubu düzenlemek için giriş yapmış olmanız gerekir."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Grup dizaynı"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
#, fuzzy
-msgid "Couldn't update your design."
-msgstr "Kullanıcı güncellenemedi."
+msgid "Unable to update your design settings."
+msgstr "Dizayn ayarlarınız kaydedilemedi."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
#, fuzzy
msgid "Design preferences saved."
msgstr "Tercihler kaydedildi."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Grup logosu"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, fuzzy, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr ""
"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?"
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Yükle"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Kırp"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Resimden logo olacak bir kare alanı seçin."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
#, fuzzy
msgid "Logo updated."
msgstr "Avatar güncellendi."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
#, fuzzy
msgid "Failed updating logo."
msgstr "Avatar güncellemede hata."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s grup üyeleri"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr ""
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Bu gruptaki kullanıcıların listesi."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Yönetici"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Engelle"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Bu kullanıcıyı engelle"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Kullanıcıyı grubun bir yöneticisi yap"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Yönetici Yap"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Bu kullanıcıyı yönetici yap"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, fuzzy, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "%s adli kullanicinin durum mesajlari"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+#, fuzzy
+msgctxt "TITLE"
msgid "Groups"
msgstr "Gruplar"
-#: actions/groups.php:64
-#, php-format
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
-msgstr ""
+msgstr "Bütün abonelikler"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Yeni bir grup oluştur"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, fuzzy, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2738,23 +3136,31 @@ msgstr ""
"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla "
"karakterden oluşmalı. "
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Grup arama"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Sonuç yok."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2762,138 +3168,146 @@ msgid ""
msgstr ""
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr ""
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Kullanıcı gruptan engellenmedi."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Engellemeyi kaldırırken hata."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Profil ayarları"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
-#, php-format
+#: actions/imsettings.php:71
+#, fuzzy, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"Jabber/GTalk kullanarak durum mesaji gÖnderip alabilirsiniz. IM adres "
"ayarlarinizi aşağıda yapın."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "Anlık mesajlaşma mevcut değil."
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "Anlık mesajlaşma adresi"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
+#: actions/imsettings.php:109
+#, fuzzy
+msgid "Current confirmed Jabber/Google Talk address."
msgstr "Onaylanmış Jabber/Gtalk adresi."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"Bu adresten onay bekleniyor. Jabber/Google Talk hesabınızı ayrıntılı bilgi "
"içeren mesajı almak için kontrol edin. (%s'u arkadaş listenize eklediniz mi?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber veya Gtalk adresi: \"KullaniciAdi@example.org\" gibi. Öncelikle %s, "
"IM istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Tercihler kaydedildi."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
"Jabber/GTalk durum mesajim değiştiğinde nedurum.com'da durumumu güncelle"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
#, fuzzy
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
#, fuzzy
-msgid "Publish a MicroID for my Jabber/GTalk address."
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "Onaylanmış Jabber/Gtalk adresi."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Tercihler kaydedildi."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "JabberID yok."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "Jabber işlemlerinde bir hata oluştu."
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "Geçersiz bir Jabber ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Bu zaten sizin Jabber ID'niz."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID başka bir kullanıcıya ait."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2902,75 +3316,80 @@ msgstr ""
"Eklemiş olduğunuz IM adresine bir onay kodu gönderildi. %s tarafından size "
"mesaj yollanabilmesi için onaylamanız gerekmektedir."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Yanlış IM adresi."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
#, fuzzy
-msgid "Couldn't delete IM confirmation."
+msgid "Could not delete IM confirmation."
msgstr "Eposta onayı silinemedi."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Onay kodu yok."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Bu sizin Jabber ID'niz değil."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
#, fuzzy
msgid "The IM address was removed."
msgstr "Bu adres kaldırılmıştı."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr ""
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "%s için gelen kutusu"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr ""
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, fuzzy, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Kullanıcı güncellenemedi."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, fuzzy, php-format
msgid "Invalid email address: %s."
msgstr "Geçersiz bir eposta adresi."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
#, fuzzy
msgid "Invitations sent"
msgstr "Davet(iyeler) gönderildi"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Yeni kullanıcıları davet et"
@@ -2978,7 +3397,7 @@ msgstr "Yeni kullanıcıları davet et"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
#, fuzzy
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
@@ -2986,7 +3405,7 @@ msgstr[0] "Bize o profili yollamadınız"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, fuzzy, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2995,7 +3414,7 @@ msgstr "%1$s'in %2$s'deki durum mesajları "
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3004,48 +3423,48 @@ msgstr[0] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] ""
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
msgstr ""
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
#, fuzzy
msgid "Email addresses"
msgstr "Eposta adresi zaten var."
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
msgstr ""
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Kişisel mesaj"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr ""
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Gönder"
@@ -3053,7 +3472,7 @@ msgstr "Gönder"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, fuzzy, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s %2$s'da durumunuzu takip ediyor"
@@ -3063,7 +3482,7 @@ msgstr "%1$s %2$s'da durumunuzu takip ediyor"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3094,170 +3513,186 @@ msgid ""
"Sincerely, %2$s\n"
msgstr ""
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Gruba katılmak için giriş yapmalısınız."
-#: actions/joingroup.php:141
-#, php-format
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
+#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
-msgstr ""
+msgstr "%1$s'in %2$s'deki durum mesajları "
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr ""
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Bu grubun bir üyesi değilsiniz."
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, fuzzy, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s'in %2$s'deki durum mesajları "
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Lisans"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Bu StatusNet sitesi için lisans"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Geçersiz lisans seçimi."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr ""
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
#, fuzzy
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Geçersiz lisans başlığı. En fazla uzunluk 255 karakterdir."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Geçersiz lisans bağlantısı."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Geçersiz lisans resmi bağlantısı."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "Lisans bağlantısı boş veya geçerli bir tane olmalıdır."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "Lisans resmi boş veya geçerli bir tane olmalıdır."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Lisans seçimi"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
#, fuzzy
msgid "Private"
msgstr "Gizlilik"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Tüm Hakları Saklıdır"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Creative Commons"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr ""
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Lisans seç"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Lisans ayrıntıları"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Sahibi"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "site içeriğinin sahibinin ismi (eğer varsa)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Lisans Başlığı"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Lisansın başlığı."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "Lisans Bağlantısı"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "Lisans hakkında daha fazla bilgi için bağlantı."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "Lisans Resminin Bağlantısı"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "Lisansla birlikte gösterilecek bir resim için bağlantı."
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Kaydet"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Lisans ayarlarını kaydet"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Zaten giriş yapılmış."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Yanlış kullanıcı adı veya parola."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
#, fuzzy
msgid "Error setting user. You are probably not authorized."
msgstr "Yetkilendirilmemiş."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Giriş"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Siteye giriş"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Beni hatırla"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Parolamı unuttum veya kaybettim"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3265,11 +3700,11 @@ msgstr ""
"Güvenliğiniz için, ayarlarınızı değiştirmeden önce lütfen kullanıcı adınızı "
"ve parolanızı tekrar giriniz."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Yanlış kullanıcı adı veya parola."
-#: actions/login.php:295
+#: actions/login.php:284
#, fuzzy, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3309,19 +3744,22 @@ msgid "New application"
msgstr "Yeni Uygulama"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr ""
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr ""
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr ""
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Eposta onayı silinemedi."
@@ -3330,11 +3768,23 @@ msgstr "Eposta onayı silinemedi."
msgid "New group"
msgstr "Yeni grup"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Bu grubun bir üyesi değilsiniz."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr ""
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+#, fuzzy
+msgid "Alias cannot be the same as nickname."
+msgstr "Diğerisim, kullanıcı adı ile aynı olamaz."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Yeni mesaj"
@@ -3385,7 +3835,9 @@ msgstr "Yeni durum mesajı"
msgid "Notice posted"
msgstr "Durum mesajı gönderildi"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3394,37 +3846,47 @@ msgstr ""
"%%site.name%%'da durum mesajlarının içeriğinde arama yap. Anahtar kelimeleri "
"boşluk ile ayırın. Anahtar kelime 3 veya daha fazla karakterden oluşmalı."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Metin arama"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "%2$s üzerindeki \"%1$s\" için arama sonuçları"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!"
msgstr ""
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, 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:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, fuzzy, php-format
msgid "Updates with \"%s\""
msgstr "%s adli kullanicinin durum mesajlari"
-#: actions/noticesearchrss.php:98
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
#, fuzzy, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler"
#: actions/nudge.php:85
@@ -3463,30 +3925,30 @@ msgid "You have not registered any applications yet."
msgstr ""
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Bağlı uygulamalar"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr ""
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Bu uygulamanın bir kullanıcısı değilsiniz."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, fuzzy, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Uygulamayı düzenlemek için bu biçimi kullan."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3494,20 +3956,30 @@ msgid ""
msgstr ""
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr ""
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
"this instance of StatusNet."
msgstr ""
+#: actions/oembed.php:64
+#, fuzzy, php-format
+msgid "\"%s\" not found."
+msgstr "Onay kodu bulunamadı."
+
+#: actions/oembed.php:76
+#, fuzzy, php-format
+msgid "Notice %s not found."
+msgstr "Üst durum mesajı bulunamadı."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Kullanıcının profili yok."
@@ -3517,6 +3989,16 @@ msgstr "Kullanıcının profili yok."
msgid "%1$s's status on %2$s"
msgstr "%1$s'in %2$s'deki durum mesajları "
+#: actions/oembed.php:95
+#, fuzzy, php-format
+msgid "Attachment %s not found."
+msgstr "Alıcı kullanıcı bulunamadı."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr ""
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, fuzzy, php-format
@@ -3530,16 +4012,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr ""
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Desteklenen bir veri biçimi değil."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Kişi Arama"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Durum Mesajı Arama"
@@ -3553,73 +4036,84 @@ msgid "Manage various other options."
msgstr ""
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr ""
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Bağlantıları şununla kısalt"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Kullanılacak otomatik kısaltma servisi."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Profil dizaynlarını görüntüle"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr ""
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
#, fuzzy
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Yer bilgisi çok uzun (azm: 255 karakter)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
#, fuzzy
msgid "No user ID specified."
msgstr "Yeni durum mesajı"
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
#, fuzzy
msgid "No login token specified."
msgstr "Yeni durum mesajı"
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
#, fuzzy
msgid "No login token requested."
msgstr "Yetkilendirme isteği yok!"
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
#, fuzzy
msgid "Invalid login token specified."
msgstr "Geçersiz durum mesajı"
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr ""
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr ""
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr ""
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
@@ -3631,7 +4125,8 @@ msgstr "Parolayı değiştir"
msgid "Change your password."
msgstr "Parolanızı değiştirin."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Parola değiştirildi"
@@ -3639,48 +4134,50 @@ msgstr "Parola değiştirildi"
msgid "Old password"
msgstr "Eski parola"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Yeni parola"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+#, fuzzy
+msgid "6 or more characters."
msgstr "6 veya daha fazla karakter"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Onayla"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+#, fuzzy
+msgid "Same as password above."
msgstr "yukarıdaki parolanın aynısı"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Değiştir"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Parolalar birbirini tutmuyor."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Eski parola yanlış"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+#, fuzzy
+msgid "Cannot save new password."
msgstr "Yeni parola kaydedilemedi."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Parola kaydedildi."
@@ -3897,7 +4394,7 @@ msgstr ""
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr ""
@@ -3970,7 +4467,9 @@ msgstr ""
msgid "Save paths"
msgstr "Yeni durum mesajı"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3980,7 +4479,8 @@ msgstr ""
"yap. Anahtar kelimeleri boşluk ile ayırın. Anahtar kelime 3 veya daha fazla "
"karakterden oluşmalı. "
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Kişi Arama"
@@ -4004,12 +4504,12 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr ""
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Profil ayarları"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
@@ -4017,12 +4517,12 @@ msgstr ""
"hakkınızda daha fazla bilgi sahibi olur."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Profil ayarları"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
#, fuzzy
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr ""
@@ -4031,21 +4531,22 @@ msgstr ""
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Tam İsim"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Başlangıç Sayfası"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
#, fuzzy
msgid "URL of your homepage, blog, or profile on another site."
msgstr ""
@@ -4054,141 +4555,149 @@ msgstr ""
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, fuzzy, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
msgstr[0] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
#, fuzzy
msgid "Describe yourself and your interests"
msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Hakkında"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Yer"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr ""
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Etiketler"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Kendiniz için etiketler (harf, sayı, -. ., ve _ kullanılabilir), virgül veya "
"boşlukla ayırabilirsiniz"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Dil"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
+#: actions/profilesettings.php:171
+#, fuzzy
+msgid "Preferred language."
msgstr "Tercih edilen dil"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Zaman dilimi"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "Normalde hangi zaman dilimi içindesiniz?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
+#, fuzzy
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr "Bana abone olan herkese abone yap (insan olmayanlar için en iyisi)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, fuzzy, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
msgstr[0] "Yer bilgisi çok uzun (azm: %d karakter)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Zaman dilimi seçilmedi."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
#, fuzzy
msgid "Language is too long (maximum 50 characters)."
msgstr "Dil çok uzun (maksimum: 50 karakter)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
-#, php-format
-msgid "Invalid tag: \"%s\""
+#: actions/profilesettings.php:291
+#, fuzzy, php-format
+msgid "Invalid tag: \"%s\"."
msgstr "Geçersiz büyüklük."
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
+#: actions/profilesettings.php:347
#, fuzzy
-msgid "Couldn't update user for autosubscribe."
+msgid "Could not update user for autosubscribe."
msgstr "Kullanıcı güncellenemedi."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
+#: actions/profilesettings.php:405
#, fuzzy
-msgid "Couldn't save location prefs."
-msgstr "Profil kaydedilemedi."
-
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
+msgid "Could not save location prefs."
msgstr "Profil kaydedilemedi."
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-#, fuzzy
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Profil kaydedilemedi."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Ayarlar kaydedildi."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Bir hesap oluştur"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4257,6 +4766,12 @@ msgid ""
"tool."
msgstr ""
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, php-format
+msgid "%s updates from everyone."
+msgstr ""
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
#, fuzzy
@@ -4300,36 +4815,44 @@ msgstr ""
msgid "Tag cloud"
msgstr ""
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Zaten giriş yapmış durumdasıznız!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Böyle bir geri alma kodu yok."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Bir geri alma kodu değil."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Bilinmeye kullanıcı için geri alma kodu"
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Onay kodu hatası."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Onay kodu çok eski. Lütfen tekrar başlayınız."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
#, fuzzy
msgid "Could not update user with confirmed email address."
msgstr "Kullanıcı güncellenemedi."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
#, fuzzy
msgid ""
"If you have forgotten or lost your password, you can get a new one sent to "
@@ -4338,70 +4861,103 @@ msgstr ""
"Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getirmek için "
"gerekli olan talimatlar yollanmıştır."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
msgstr ""
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
#, fuzzy
msgid "Password recovery"
msgstr "Parola geri alma isteği"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
#, fuzzy
msgid "Nickname or email address"
msgstr "Bir takma ad veya eposta adresi girin."
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "Bu sunucudaki takma adınız veya kaydedilmiş eposta adresiniz."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Geri al"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Geri al"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Parolayı sıfırla"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Parolanı geri al"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Parola geri alma isteği"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+#, fuzzy
+msgid "Password saved"
+msgstr "Parola kaydedildi."
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr ""
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+#, fuzzy
+msgid "6 or more characters, and do not forget it!"
msgstr "Unutmayın, 6 veya daha fazla karakter"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Sıfırla"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Bir takma ad veya eposta adresi girin."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
#, fuzzy
msgid "No user with that email address or username."
msgstr "Kullanıcı için kaydedilmiş eposta adresi yok."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Kullanıcı için kaydedilmiş eposta adresi yok."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Adres onayını kaydetmede hata."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4409,126 +4965,116 @@ msgstr ""
"Hesabınıza eklemiş olduğunuz eposta adresine parolanızı geri getirmek için "
"gerekli olan talimatlar yollanmıştır."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Beklemeğen parola sıfırlaması."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
#, fuzzy
msgid "Password must be 6 characters or more."
msgstr "Parola 6 veya daha fazla karakterden oluşmalıdır."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Parola ve onaylaması birbirini tutmuyor."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Kullanıcı ayarlamada hata oluştu."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Yeni parola başarıyla kaydedildi. Şimdi giriş yaptınız."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr ""
-#: actions/register.php:99
+#: actions/register.php:94
#, fuzzy
msgid "Sorry, invalid invitation code."
msgstr "Onay kodu hatası."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Kayıt başarılı"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Kayıt"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Kayıt yapılmasına izin verilmiyor."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
+#: actions/register.php:201
+#, fuzzy
+msgid "You cannot register if you don't agree to the license."
msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Eposta adresi zaten var."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Geçersiz kullanıcı adı veya parola."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
-#: actions/register.php:433
-#, fuzzy
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin "
-"verilmez"
-
-#: actions/register.php:438
-#, fuzzy
-msgid "6 or more characters. Required."
-msgstr "6 veya daha fazla karakter"
-
-#: actions/register.php:442
-#, fuzzy
-msgid "Same as password above. Required."
-msgstr "yukarıdaki parolanın aynısı"
-
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Eposta"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
+#: actions/register.php:432 actions/register.php:436
+#, fuzzy
+msgid "Used only for updates, announcements, and password recovery."
msgstr ""
"Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
msgstr ""
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr ""
-"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi"
+#: actions/register.php:471
+#, fuzzy
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr ""
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr ""
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Tüm hakları saklıdır."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, fuzzy, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4537,7 +5083,7 @@ msgstr ""
"bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon "
"numarası."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4556,13 +5102,13 @@ msgid ""
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
msgstr ""
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4570,83 +5116,89 @@ msgid ""
"microblogging site](%%doc.openmublog%%), enter your profile URL below."
msgstr ""
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Uzaktan abonelik"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
#, fuzzy
msgid "Subscribe to a remote user"
msgstr "Takip talebine izin verildi"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Kullanıcı takma adı"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+#, fuzzy
+msgid "Nickname of the user you want to follow."
msgstr "Takip etmek istediğiniz kullanıcının takma adı"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "Profil Adresi"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
msgstr ""
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Abone ol"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr ""
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
+msgstr "Geçersiz dosya ismi."
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr "Geçersiz profil adresi (YADIS belgesi yok)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
msgstr ""
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
-msgstr ""
+#: actions/remotesubscribe.php:182
+#, fuzzy
+msgid "Could not get a request token."
+msgstr "Yeni abonelik eklenemedi."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr ""
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
#, fuzzy
msgid "No notice specified."
msgstr "Yeni durum mesajı"
-#: actions/repeat.php:76
+#: actions/repeat.php:75
#, fuzzy
-msgid "You can't repeat your own notice."
+msgid "You cannot repeat your own notice."
msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
#, fuzzy
msgid "You already repeated that notice."
msgstr "Zaten giriş yapmış durumdasıznız!"
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Sıfırla"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
#, fuzzy
msgid "Repeated!"
msgstr "Yarat"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "%s için cevaplar"
@@ -4692,11 +5244,101 @@ msgid ""
"newnotice%%%%?status_textarea=%3$s)."
msgstr ""
-#: actions/repliesrss.php:72
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
#, fuzzy, php-format
-msgid "Replies to %1$s on %2$s!"
+msgid "Replies to %1$s on %2$s."
msgstr "%s için cevaplar"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Yükle"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Dosya yüklemede sistem hatası."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Tüm üyeler"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Yükle"
+
#: actions/revokerole.php:75
#, fuzzy
msgid "You cannot revoke user roles on this site."
@@ -4707,7 +5349,7 @@ msgstr "Bize o profili yollamadınız"
msgid "User doesn't have this role."
msgstr "Kullanıcının profili yok."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "İstatistikler"
@@ -4751,135 +5393,149 @@ msgstr ""
msgid "Save site settings"
msgstr "Profil ayarları"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr ""
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
#, fuzzy
msgid "Application profile"
msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Simge"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
#, fuzzy
msgid "Name"
msgstr "Takma ad"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Organizasyon"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Tanım"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "İstatistikler"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr ""
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr ""
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr ""
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Sil"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr ""
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr ""
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr ""
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr ""
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr ""
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr ""
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr ""
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%s ve arkadaşları"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
#, fuzzy
msgid "Could not retrieve favorite notices."
msgstr "Profil kaydedilemedi."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, fuzzy, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "%s için arkadaş güncellemeleri RSS beslemesi"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, fuzzy, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "%s için arkadaş güncellemeleri RSS beslemesi"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, fuzzy, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "%s için arkadaş güncellemeleri RSS beslemesi"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr ""
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4887,7 +5543,8 @@ msgid ""
"their favorites :)"
msgstr ""
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr ""
@@ -4905,82 +5562,89 @@ msgid "%1$s group, page %2$d"
msgstr "Bütün abonelikler"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Kullanıcının profili yok."
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "Bağlantı"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Not"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Diğerisimler"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, fuzzy, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "%s için durum RSS beslemesi"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, fuzzy, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "%s için durum RSS beslemesi"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, fuzzy, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "%s için durum RSS beslemesi"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, fuzzy, php-format
msgid "FOAF for %s group"
msgstr "%s için durum RSS beslemesi"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Üyeler"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Yok)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Tüm üyeler"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
#, fuzzy
msgctxt "LABEL"
msgid "Created"
msgstr "Oluşturuldu"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
#, fuzzy
msgctxt "LABEL"
msgid "Members"
@@ -4990,7 +5654,7 @@ msgstr "Üyeler"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5003,7 +5667,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5013,30 +5677,30 @@ msgid ""
msgstr ""
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Yöneticiler"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Böyle bir mesaj yok."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr ""
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr ""
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr ""
@@ -5052,7 +5716,7 @@ msgid "%1$s tagged %2$s"
msgstr "%s ve arkadaşları"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, fuzzy, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5293,117 +5957,117 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
#, fuzzy
-msgid "Save site notice"
+msgid "Save site notice."
msgstr "Yeni durum mesajı"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Profil ayarları"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr ""
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
#, fuzzy
msgid "SMS is not available."
msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil"
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
#, fuzzy
msgid "SMS address"
msgstr "IM adresi"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr ""
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr ""
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
#, fuzzy
msgid "Confirmation code"
msgstr "Onay kodu yok."
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr ""
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
#, fuzzy
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Onayla"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr ""
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
+#: actions/smssettings.php:152
#, fuzzy
-msgid "Phone number, no punctuation or spaces, with area code"
+msgid "Phone number, no punctuation or spaces, with area code."
msgstr ""
"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin "
"verilmez"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Tercihler kaydedildi."
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
msgstr ""
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
#, fuzzy
msgid "SMS preferences saved."
msgstr "Tercihler kaydedildi."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
#, fuzzy
msgid "No phone number."
msgstr "Böyle bir kullanıcı yok."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr ""
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
#, fuzzy
msgid "That is already your phone number."
msgstr "Bu zaten sizin Jabber ID'niz."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
#, fuzzy
msgid "That phone number already belongs to another user."
msgstr "Jabber ID başka bir kullanıcıya ait."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5412,42 +6076,42 @@ msgstr ""
"mesaj yollanabilmesi için onaylamanız gerekmektedir."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
#, fuzzy
msgid "That is the wrong confirmation number."
msgstr "Yanlış IM adresi."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Onay kodu yok."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
#, fuzzy
msgid "That is not your phone number."
msgstr "Bu sizin Jabber ID'niz değil."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
#, fuzzy
msgid "The SMS phone number was removed."
msgstr "Bu adres kaldırılmıştı."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr ""
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr ""
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5455,9 +6119,9 @@ msgid ""
msgstr ""
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
+#: actions/smssettings.php:535
#, fuzzy
-msgid "No code entered"
+msgid "No code entered."
msgstr "İçerik yok!"
#. TRANS: Menu item for site administration
@@ -5531,16 +6195,20 @@ msgstr "Bize o profili yollamadınız"
msgid "Could not save subscription."
msgstr "Yeni abonelik eklenemedi."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr ""
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Bize o profili yollamadınız"
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
#, fuzzy
msgid "Subscribed"
msgstr "Abone ol"
@@ -5573,7 +6241,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "%s adlı kullanıcının durumunu takip edenler"
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5581,7 +6249,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr ""
@@ -5591,7 +6259,7 @@ msgstr ""
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5622,7 +6290,7 @@ msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar"
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5636,23 +6304,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, fuzzy, php-format
msgid "%s is not listening to anyone."
msgstr "%1$s %2$s'da durumunuzu takip ediyor"
-#: actions/subscriptions.php:178
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "%s için durum RSS beslemesi"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr ""
@@ -5686,13 +6355,16 @@ msgstr "Böyle bir belge yok."
msgid "Tag %s"
msgstr ""
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
#, fuzzy
msgid "User profile"
msgstr "Kullanıcının profili yok."
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Fotoğraf"
@@ -5706,15 +6378,16 @@ msgid ""
"separated"
msgstr ""
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Geçersiz büyüklük."
+
#: 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 "Profil kaydedilemedi."
-
#: actions/tagother.php:236
msgid "Use this form to add tags to your subscribers or subscriptions."
msgstr ""
@@ -5723,6 +6396,7 @@ msgstr ""
msgid "No such tag."
msgstr "Böyle bir etiket yok."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
#, fuzzy
msgid "You haven't blocked that user."
@@ -5748,7 +6422,7 @@ msgstr "Yetkilendirme isteği yok!"
msgid "Unsubscribed"
msgstr "Aboneliği sonlandır"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5780,12 +6454,11 @@ msgstr "Geçersiz lisans başlığı. En fazla uzunluk 255 karakterdir."
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr ""
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Profil"
@@ -5845,122 +6518,161 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr ""
+#, fuzzy
+msgid "Save user settings."
+msgstr "Profil ayarları"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Takip isteğini onayla"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
#, 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”."
+"click \"Reject\"."
msgstr ""
"Lütfen bu kullanıcının durumunu takip etmek istediğinizden emin olmak için "
"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde "
"bulunmadıysanız \"İptal\" tuşuna basın. "
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Lisans"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+#, fuzzy
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Kabul et"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+#, fuzzy
+msgid "Subscribe to this user."
msgstr "Bize o profili yollamadınız"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+#, fuzzy
+msgctxt "BUTTON"
msgid "Reject"
msgstr "Reddet"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+#, fuzzy
+msgid "Reject this subscription."
msgstr "Takip isteğini onayla"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Yetkilendirme isteği yok!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Takip talebine izin verildi"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Abonelik reddedildi."
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
+msgid "Listener URI \"%s\" not found here."
msgstr ""
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
-msgstr ""
-
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr ""
-
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
-msgstr ""
-
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr ""
-
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, fuzzy, php-format
-msgid "Can’t read avatar URL ‘%s’."
+msgid "Listenee URI \"%s\" is too long."
+msgstr "Kaynak bağlantı çok uzun."
+
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, php-format
+msgid "Listenee URI \"%s\" is a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, php-format
+msgid "Profile URL \"%s\" is for a local user."
+msgstr ""
+
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr ""
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "Kaynak bağlantı geçerli değil."
+
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "Avatar URLi '%s' okunamıyor"
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
#, fuzzy, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "%s için yanlış resim türü"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
#, fuzzy
msgid "Profile design"
msgstr "Profil ayarları"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr ""
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr ""
@@ -5990,7 +6702,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr ""
@@ -6039,7 +6751,7 @@ msgid "Plugins"
msgstr "Eklentiler"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Sürüm"
@@ -6048,32 +6760,32 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr ""
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s %2$s'da durumunuzu takip ediyor"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr ""
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr ""
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6085,7 +6797,7 @@ msgstr[0] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6093,14 +6805,14 @@ msgstr[0] ""
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
msgstr[0] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Geçersiz dosya ismi."
@@ -6163,7 +6875,7 @@ msgid "Could not create login token for %s"
msgstr "Avatar bilgisi kaydedilemedi"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6192,72 +6904,72 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Avatar eklemede hata oluştu"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Durum mesajını kaydederken hata oluştu. Çok uzun."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Durum mesajını kaydederken hata oluştu. Bilinmeyen kullanıcı."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr ""
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Durum mesajını kaydederken hata oluştu."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
#, fuzzy
msgid "Problem saving group inbox."
msgstr "Durum mesajını kaydederken hata oluştu."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Profil kaydedilemedi."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, fuzzy, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6265,14 +6977,14 @@ msgstr "%1$s'in %2$s'deki durum mesajları "
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6344,35 +7056,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Kullanıcı güncellenemedi."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Profil kaydedilemedi."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Kullanıcı güncellenemedi."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Profil kaydedilemedi."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, fuzzy, php-format
+msgid "Cannot locate account %s."
+msgstr "Kullanıcıları silemezsiniz."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6409,76 +7142,77 @@ msgid "Other"
msgstr "Diğer"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, fuzzy, php-format
msgid "%1$s - %2$s"
msgstr "%1$s'in %2$s'deki durum mesajları "
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Başlıksız sayfa"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr ""
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr ""
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Kişisel profil ve arkadaşların zaman çizelgesi"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "Kişisel"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "E-postanızı, kullanıcı resminizi, parolanızı, profilinizi değiştirin"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Hesap"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "Servislere bağlan"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "Bağlan"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Site yapılandırmasını değiştir"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Yönetim"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
@@ -6486,140 +7220,142 @@ msgstr ""
"%s üzerinde size katılmaları için arkadaşlarınızı ve meslektaşlarınızı davet "
"edin"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Davet et"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr ""
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
#, fuzzy
msgctxt "MENU"
msgid "Logout"
msgstr "Çıkış"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Bir hesap oluştur"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Kayıt"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Siteye giriş"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Giriş"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Bana yardım et!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Yardım"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Kişi ya da yazılar için arama yap"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Ara"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
#, fuzzy
msgid "Site notice"
msgstr "Yeni durum mesajı"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr ""
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
#, fuzzy
msgid "Page notice"
msgstr "Yeni durum mesajı"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
#, fuzzy
msgid "Secondary site navigation"
msgstr "Abonelikler"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Yardım"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Hakkında"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "SSS"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr ""
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Gizlilik"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Kaynak"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "İletişim"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr ""
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet yazılım lisansı"
@@ -6627,7 +7363,7 @@ msgstr "StatusNet yazılım lisansı"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, fuzzy, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6637,7 +7373,7 @@ msgstr ""
"hazırlanan anında mesajlaşma ağıdır. "
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır."
@@ -6646,7 +7382,7 @@ msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6658,50 +7394,50 @@ msgstr ""
"microbloglama yazılımının %s. versiyonunu kullanmaktadır."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Site içeriği lisansı"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr ""
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr ""
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr ""
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Sonra"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Önce"
@@ -6710,10 +7446,80 @@ msgstr "Önce"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Kullanıcının profili yok."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
#, fuzzy
-msgid "Post"
-msgstr "Fotoğraf"
+msgid "Cannot force remote user to subscribe."
+msgstr "Kullanıcı güncellenemedi."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Kullanıcının profili yok."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Bize o profili yollamadınız"
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız."
+
+#: lib/activitymover.php:84
+#, fuzzy, php-format
+msgid "No such user %s."
+msgstr "Böyle bir kullanıcı yok."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, fuzzy, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s'in %2$s'deki durum mesajları "
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6785,7 +7591,7 @@ msgid "User configuration"
msgstr "Onay kodu yok."
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Kullanıcı"
@@ -6831,19 +7637,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr ""
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr ""
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr ""
@@ -6866,28 +7676,32 @@ msgid ""
msgstr ""
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
#, fuzzy
msgid "Could not issue access token."
msgstr "Yeni abonelik eklenemedi."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "OAuth uygulama kullanıcısı eklerken veritabanı hatası."
+#: lib/apioauthstore.php:345
+#, fuzzy
+msgid "Database error updating OAuth application user."
+msgstr "OAuth uygulama kullanıcısı eklerken veritabanı hatası."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr ""
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr ""
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Bu uygulama için simge"
@@ -7003,17 +7817,23 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Geri al"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Bu durum mesajını silme"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr ""
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Sağlayıcı"
@@ -7044,6 +7864,11 @@ msgstr "Parola kaydedildi."
msgid "Block"
msgstr "Engelle"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Bu kullanıcıyı engelle"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7155,7 +7980,7 @@ msgstr "Tam İsim: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Yer: %s"
@@ -7163,7 +7988,7 @@ msgstr "Yer: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, fuzzy, php-format
msgid "Homepage: %s"
msgstr "Başlangıç Sayfası"
@@ -7396,25 +8221,25 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
#, fuzzy
msgid "No configuration file found."
msgstr "Onay kodu yok."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr ""
@@ -7456,15 +8281,20 @@ msgstr ""
msgid "Database error"
msgstr ""
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Bu kullanıcıyı sil"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
#, fuzzy
msgid "Upload file"
msgstr "Yükle"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
#, fuzzy
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
@@ -7485,27 +8315,75 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Kapalı"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Renkleri değiştir"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "Öntanımlıları kullan"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr ""
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Öntanımlıya geri dön"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Dizaynı kaydet"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
#, fuzzy
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Sıfırla"
+msgid "Couldn't update your design."
+msgstr "Kullanıcı güncellenemedi."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr ""
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, fuzzy, php-format
+msgid "Unable to find services for %s."
+msgstr "Uygulamayı düzenlemek için bu biçimi kullan."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr ""
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Favoriliğini kaldır"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
#, fuzzy
msgid "Favor this notice"
msgstr "Böyle bir durum mesajı yok."
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr ""
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7522,6 +8400,19 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Tüm üyeler"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7556,36 +8447,36 @@ msgstr ""
msgid "Grant this user the \"%s\" role"
msgstr ""
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
"1-64 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin "
"verilmez"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
#, fuzzy
msgid "URL of the homepage or blog of the group or topic."
msgstr ""
"Web Sitenizin, blogunuzun ya da varsa başka bir sitedeki profilinizin adresi"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
#, fuzzy
msgid "Describe the group or topic"
msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, fuzzy, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
#, fuzzy
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "Bulunduğunuz yer, \"Şehir, Eyalet (veya Bölge), Ülke\" gibi"
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7689,56 +8580,57 @@ msgstr ""
msgid "This page is not available in a media type you accept"
msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Desteklenmeyen görüntü dosyası biçemi."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, fuzzy, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr ""
"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?"
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Kısmi yükleme."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Dosya yüklemede sistem hatası."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Bu bir resim dosyası değil ya da dosyada hata var"
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
#, fuzzy
msgid "Lost our file."
msgstr "Böyle bir durum mesajı yok."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr ""
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, fuzzy, php-format
msgid "%dMB"
msgid_plural "%dMB"
msgstr[0] "MB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, fuzzy, php-format
msgid "%dkB"
msgid_plural "%dkB"
msgstr[0] "kB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7759,25 +8651,27 @@ msgstr ""
msgid "Leave"
msgstr "Kaydet"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
#, fuzzy
msgid "Login with a username and password"
msgstr "Geçersiz kullanıcı adı veya parola."
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
#, fuzzy
msgid "Sign up for a new account"
msgstr "Yeni hesap oluştur"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Eposta adresi onayı"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7796,14 +8690,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s %2$s'da durumunuzu takip ediyor"
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7815,7 +8709,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, fuzzy, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7838,14 +8732,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, fuzzy, php-format
msgid "Bio: %s"
msgstr "Hakkında"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, fuzzy, php-format
msgid "New email address for posting to %s"
msgstr "Kullanıcı için kaydedilmiş eposta adresi yok."
@@ -7853,7 +8747,7 @@ msgstr "Kullanıcı için kaydedilmiş eposta adresi yok."
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7868,35 +8762,35 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s durum"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
#, fuzzy
msgid "SMS confirmation"
msgstr "Onay kodu yok."
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
+msgid "You have been nudged by %s"
msgstr ""
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7914,7 +8808,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr ""
@@ -7923,7 +8817,7 @@ msgstr ""
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7944,7 +8838,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, fuzzy, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s %2$s'da durumunuzu takip ediyor"
@@ -7954,7 +8848,7 @@ msgstr "%1$s %2$s'da durumunuzu takip ediyor"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -7976,7 +8870,7 @@ msgid ""
msgstr ""
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -7986,7 +8880,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr ""
@@ -7997,7 +8891,7 @@ msgstr ""
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8024,20 +8918,16 @@ msgid ""
"P.S. You can turn off these email notifications here: %8$s\n"
msgstr ""
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr ""
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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:228 lib/noticelist.php:521
-msgid "from"
-msgstr ""
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Mesaj ayrıştırılamadı."
@@ -8064,38 +8954,6 @@ msgstr "Desteklenmeyen mesaj türü: %s"
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8116,7 +8974,7 @@ msgstr "Dosyanın MIME türü belirlenemedi."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8125,7 +8983,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8160,20 +9018,29 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Gönder"
+#: lib/messagelist.php:77
+#, fuzzy
+msgid "Messages"
+msgstr "Mesaj gönder"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr ""
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Takma ad sadece küçük harflerden ve rakamlardan oluşabilir, boşluk "
"kullanılamaz. "
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8189,11 +9056,11 @@ msgstr "Yeni durum mesajı"
msgid "What's up, %s?"
msgstr "N'aber %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr ""
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr ""
@@ -8214,57 +9081,61 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "K"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "G"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "D"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "B"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
#, fuzzy
msgid "in context"
msgstr "İçerik yok!"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
#, fuzzy
msgid "Repeated by"
msgstr "Yarat"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr ""
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Cevaplar"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Bu durum mesajını sil"
+
+#: lib/noticelist.php:691
#, fuzzy
msgid "Notice repeated"
msgstr "Durum mesajları"
@@ -8302,78 +9173,112 @@ msgstr ""
msgid "Couldn't insert new subscription."
msgstr "Yeni abonelik eklenemedi."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Kişisel"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+#, fuzzy
+msgctxt "MENU"
msgid "Replies"
msgstr "Cevaplar"
-#: lib/personalgroupnav.php:117
-msgid "Favorites"
-msgstr ""
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+#, fuzzy
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Profil"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+#, fuzzy
+msgctxt "MENU"
+msgid "Favorites"
+msgstr "%s favorileri"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr ""
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr ""
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
msgid "Outbox"
msgstr ""
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr ""
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr ""
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr ""
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Abonelikler"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Bütün abonelikler"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Abone olanlar"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
#, fuzzy
msgid "All subscribers"
msgstr "Abone olanlar"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr ""
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Üyelik başlangıcı"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Gruplar"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr ""
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr ""
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr ""
@@ -8424,7 +9329,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Böyle bir kullanıcı yok."
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
#, fuzzy
msgid "Page not found."
msgstr "Onay kodu bulunamadı."
@@ -8521,6 +9426,10 @@ msgstr ""
msgid "Invite friends and colleagues to join you on %s"
msgstr ""
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Bize o profili yollamadınız"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8636,121 +9545,133 @@ msgstr "Aboneliği sonlandır"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Kullanıcının profili yok."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
#, fuzzy
msgid "Edit Avatar"
msgstr "Avatar"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr ""
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr ""
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
#, fuzzy
msgid "Edit profile settings"
msgstr "Profil ayarları"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr ""
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr ""
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr ""
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr ""
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
#, fuzzy
msgid "User role"
msgstr "Kullanıcının profili yok."
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr ""
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr ""
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Giriş yapılmadı."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "birkaç saniye önce"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "yaklaşık bir dakika önce"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "yaklaşık bir saat önce"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "yaklaşık bir gün önce"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "yaklaşık bir ay önce"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
msgstr[0] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "yaklaşık bir yıl önce"
-#: lib/webcolor.php:80
-#, fuzzy, php-format
-msgid "%s is not a valid color!"
-msgstr "Başlangıç sayfası adresi geçerli bir URL değil."
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, fuzzy, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "Başlangıç sayfası adresi geçerli bir URL değil."
@@ -8770,31 +9691,18 @@ msgid_plural "Message too long. Maximum is %1$d characters, you sent %2$d."
msgstr[0] "Bu çok uzun. Maksimum durum mesajı boyutu %d karakterdir."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
#, fuzzy
msgid "Invalid XML."
msgstr "Geçersiz büyüklük."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-#, fuzzy
-msgid "No user specified; using backup user."
-msgstr "Yeni durum mesajı"
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po
index 36adfb46e8..747a4bcbed 100644
--- a/locale/uk/LC_MESSAGES/statusnet.po
+++ b/locale/uk/LC_MESSAGES/statusnet.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Core to Ukrainian (Українська)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: AS
# Author: Boogie
@@ -12,18 +12,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:17+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:47+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -80,8 +80,9 @@ msgid "Save access settings"
msgstr "Зберегти параметри доступу"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -91,13 +92,13 @@ msgstr "Зберегти параметри доступу"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "Зберегти"
@@ -105,7 +106,7 @@ msgstr "Зберегти"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "Немає такої сторінки."
@@ -115,6 +116,8 @@ msgstr "Немає такої сторінки."
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -130,13 +133,23 @@ msgstr "Немає такої сторінки."
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -144,15 +157,15 @@ msgstr "Немає такої сторінки."
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "Такого користувача немає."
@@ -166,9 +179,10 @@ msgstr "%1$s та друзі, сторінка %2$d"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s з друзями"
@@ -281,7 +295,7 @@ msgstr "Оновлення від %1$s та друзів на %2$s!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -314,7 +328,21 @@ msgstr ""
"Ви мусите встановити параметр «device» з одним зі значень: sms, im, none."
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "Не вдалося оновити користувача."
@@ -324,18 +352,23 @@ msgstr "Не вдалося оновити користувача."
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "Користувач не має профілю."
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "Не вдалося зберегти профіль."
@@ -345,8 +378,8 @@ msgstr "Не вдалося зберегти профіль."
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -369,13 +402,14 @@ msgstr[2] ""
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "Не маю можливості зберегти налаштування дизайну."
@@ -383,48 +417,59 @@ msgstr "Не маю можливості зберегти налаштуванн
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "Не вдалося оновити ваш дизайн."
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
msgstr "Головна"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s стрічка"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "Підписки %s"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "Обрані"
+msgstr "Обрані %s"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
msgstr "Учасники спільноти %s"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Ви не можете блокувати самого себе!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "Спроба заблокувати користувача невдала."
@@ -481,9 +526,10 @@ msgstr "Отримувача не знайдено."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
+msgid "Cannot send direct messages to users who aren't your friend."
msgstr ""
-"Не можна надіслати пряме повідомлення користувачеві, який не є вашим другом."
+"Не вдається надіслати пряме повідомлення користувачеві, який не є вашим "
+"другом."
#. TRANS: Client error displayed trying to direct message self (403).
#: actions/apidirectmessagenew.php:154
@@ -507,8 +553,9 @@ msgid "This status is already a favorite."
msgstr "Цей статус вже є обраним."
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "Не можна позначити як обране."
@@ -518,7 +565,8 @@ msgid "That status is not a favorite."
msgstr "Цей статус не є обраним."
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "Не можна видалити зі списку обраних."
@@ -565,9 +613,9 @@ msgstr "Не вдалося знайти цільового користувач
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "Це ім’я вже використовується. Спробуйте інше."
@@ -575,21 +623,22 @@ msgstr "Це ім’я вже використовується. Спробуйт
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "Це недійсне ім’я користувача."
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "Веб-сторінка має недійсну URL-адресу."
@@ -597,23 +646,24 @@ msgstr "Веб-сторінка має недійсну URL-адресу."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "Повне ім’я надто довге (не більше 255 символів)."
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -625,9 +675,9 @@ msgstr[2] "Опис надто довгий (максимум — %d знакі
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "Розташування надто довге (не більше 255 символів)."
@@ -637,8 +687,8 @@ msgstr "Розташування надто довге (не більше 255 с
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -656,18 +706,16 @@ msgstr "Помилкове додаткове ім’я: «%s»."
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Додаткове ім’я «%s» вже використовується. Спробуйте інше."
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "Додаткове ім’я не може бути таким самим що й основне."
@@ -678,28 +726,32 @@ msgstr "Додаткове ім’я не може бути таким сами
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "Спільноту не знайдено."
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "Ви вже стоїте у цій спільноти."
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "Адміністратор спільноти заблокував ваш профіль."
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "Не вдалось долучити користувача %1$s до спільноти %2$s."
@@ -711,9 +763,11 @@ msgstr "Ви не стоїте у цій спільноті."
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -750,7 +804,7 @@ msgid "Upload failed."
msgstr "Збій при завантаженні."
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "Неправильний запит токену або його підтвердження."
@@ -770,20 +824,25 @@ msgid "Request token already authorized."
msgstr "Токен запиту вже авторизовано."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr ""
@@ -801,18 +860,22 @@ msgstr "Помилка бази даних при додаванні парам
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "Несподіване представлення форми."
@@ -863,29 +926,31 @@ msgstr "Акаунт"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "Ім’я користувача"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "Пароль"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -959,6 +1024,7 @@ msgstr "Ви не можете видалити статус іншого кор
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -978,38 +1044,50 @@ msgstr "Не можна повторювати власні дописи."
msgid "Already repeated that notice."
msgstr "Цей допис вже повторено."
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "HTTP спосіб не підтримується."
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, php-format
-msgid "Unsupported format: %s"
-msgstr "Не підтримується формат: %s"
+msgid "Unsupported format: %s."
+msgstr "Формат, який не підтримується: %s."
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "Статус видалено."
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "Не знайдено жодних статусів з таким ID."
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "Можна видалити тільки у форматі Atom."
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
-msgstr "Не можна видалити цей допис."
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
+msgstr "Не вдається видалити цей допис."
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "Вилучене повідомлення %d"
@@ -1074,7 +1152,7 @@ msgstr "%1$s, оновлення обраних дописів %2$s / %3$s."
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "Не вдалося створити веб-стрічку для спільноти — %s"
@@ -1095,13 +1173,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s оновив цю відповідь на допис від %2$s / %3$s."
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s загальна стрічка"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s оновлення від усіх!"
@@ -1145,211 +1224,257 @@ msgstr "Користувач може робити доповнення тіль
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
msgstr "Приймати лише AtomPub для веб-стрічок формату Atom."
-#: actions/apitimelineuser.php:310
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr "POST-запит Atom має бути записом формату Atom."
+msgstr "Запис Atom не повинен бути порожнім."
-#: actions/apitimelineuser.php:315
-#, fuzzy
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr "POST-запит Atom має бути записом формату Atom."
+msgstr "Запис Atom має бути у правильно сформованому XML."
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
msgstr "POST-запит Atom має бути записом формату Atom."
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
-#, fuzzy
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr "Можливою є обробка лише для POST-запитів."
+msgstr "Можливою є обробка лише POST-запитів."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
-#, fuzzy, php-format
+#: actions/apitimelineuser.php:345
+#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr "Неможливо опрацювати дії об’єкта типу «%s»"
+msgstr "Неможливо опрацювати дії об’єкта типу «%s»."
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "Пошук дописів за змістом"
+msgstr "Допис %d не має змісту."
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "Повідомлення з URI \"%s\" вже існує."
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr "Запис AtomPub з невідомим цільовим URI %s"
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API метод наразі знаходиться у розробці."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Сторінку не знайдено."
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "Немає такого профілю."
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "Не вдалося додати нову підписку."
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-#, fuzzy
-msgid "Can only handle Favorite activities."
-msgstr "Можливою є обробка лише для POST-запитів."
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "Можливою є обробка лише для POST-запитів."
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "Невідомо"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "Додати до обраних"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "Немає такого профілю."
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "Дописи від %1$s, що їх було позначено як обрані на %2$s"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "Не вдається додати чужу підписку."
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "Можливою є обробка лише стрічки обраних дописів."
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "Можна лише додавати дописи до обраних."
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "Невідома примітка"
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "Вже у списку обраних."
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
+#, php-format
msgid "%s group memberships"
msgstr "Учасники спільноти %s"
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "Спільноти, до яких залучений %s"
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "Спільноти, до яких залучений %1$s на %2$s"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "Не вдається надати комусь членство."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-#, fuzzy
-msgid "Can only handle Join activities."
-msgstr "Можливою є обробка лише для POST-запитів."
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr "Можливою є лише обробка POST-запитів."
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "Невідомо"
+msgstr "Невідома спільнота."
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "Всі учасники"
+msgstr "Вже є учасником."
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "Заблоковано адміністратором."
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "Такого файлу немає."
+msgstr "Немає такого обраного допису."
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "Не можна видалити зі списку обраних."
+msgid "Cannot delete someone else's favorite."
+msgstr "Не вдається видалити допис з чужого списку обраних."
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "Такої спільноти не існує."
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "Всі учасники"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "HTTP спосіб не підтримується."
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "Не є учасником."
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+msgid "Cannot delete someone else's membership."
+msgstr "Неможливо позбавити когось членства."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "Немає такого профілю."
+#, php-format
+msgid "No such profile id: %d."
+msgstr "Немає такого ідентифікатора профілю: %d."
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "Ви не підписані до цього профілю."
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "Профіль %1$d не є підписаним до профілю %2$d."
-#: actions/atompubshowsubscription.php:154
-#, fuzzy
-msgid "Can't delete someone else's subscription"
-msgstr "Не можу видалити самопідписку."
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr "Не вдається видалити чужу підписку."
-#: actions/atompubsubscriptionfeed.php:150
-#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "Люди підписані до %s"
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "Люди, до яких підписаний %1$s на %2$s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
-#, fuzzy
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
-msgstr "Можливою є обробка лише для POST-запитів."
+msgstr "Можливою є обробка активності лише щодо підписок."
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "Можливе лише слідування людьми."
-#: actions/atompubsubscriptionfeed.php:262
-#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "Тип файлу не підтримується"
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "Невідомий профіль %s."
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "Вже підписаний до %s."
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1359,11 +1484,15 @@ msgstr "Такого вкладення немає."
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "Немає імені."
@@ -1380,7 +1509,7 @@ msgstr "Недійсний розмір."
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "Аватара"
@@ -1393,41 +1522,51 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "Ви можете завантажити аватару. Максимальний розмір %s."
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "Користувач без відповідного профілю."
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "Налаштування аватари"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "Оригінал"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "Перегляд"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "Видалити"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "Завантажити"
@@ -1443,31 +1582,77 @@ msgstr "Втяти"
msgid "No file uploaded."
msgstr "Жодного файлу не завантажено."
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
-msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою автарою."
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
+msgstr "Оберіть квадратну ділянку зображення, яка й буде вашою аватаркою."
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "Дані вашого файлу загублено."
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "Аватару оновлено."
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "Оновлення аватари невдале."
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "Аватару видалено."
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "Резерв. копія"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr ""
+"Лише користувачі, що знаходяться у системі, можуть зробити резервну копію "
+"свого акаунту."
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "Ви не можете створити резервну копію свого акаунту."
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+"Ви маєте можливість створити резервну копію даних вашого акаунту у форматі "
+"Activity Streams. Ця можливість є "
+"експериментальною і результат копіювання не буде повним; особисті дані, як "
+"то електронна адреса або ІМ-адреса не будуть долучені до резервного файлу. "
+"До того ж, прикріплені до ваших повідомлень файли і прямі повідомлення також "
+"не долучаються до резервного файлу."
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Резерв. копія"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr "Резервне копіювання вашого облікового запису."
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1475,7 +1660,8 @@ msgstr "Цього користувача вже заблоковано."
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "Блокувати користувача"
@@ -1498,16 +1684,15 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "Ні"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
-msgstr "Не блокувати цього користувача"
+#: actions/block.php:158
+msgid "Do not block this user."
+msgstr "Не блокувати цього користувача."
#. TRANS: Button label on the user block form.
#. TRANS: Button label on the delete application form.
@@ -1517,47 +1702,21 @@ msgstr "Не блокувати цього користувача"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "Так"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
-msgstr "Блокувати користувача"
+#: actions/block.php:165
+msgid "Block this user."
+msgstr "Блокувати користувача."
#. TRANS: Server error displayed when blocking a user fails.
#: actions/block.php:189
msgid "Failed to save block information."
msgstr "Збереження інформації про блокування завершилось невдачею."
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "Такої спільноти не існує."
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1627,23 +1786,6 @@ msgstr "Невизначений тип адреси %s."
msgid "That address has already been confirmed."
msgstr "Цю адресу вже підтверджено."
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "Не вдалося оновити користувача."
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1668,11 +1810,85 @@ msgid "Conversation"
msgstr "Розмова"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "Дописи"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr ""
+"Лише користувачі, що знаходяться у системі, можуть видаляти свої акаунти."
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "Ви не можете видалити свій акаунт."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "Безсумнівно."
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "Ви мусите написати «%s» саме у цьому віконці."
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "Акаунт видалено."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "Видалити акаунт"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+"Ця дія призведе до негайного видалення усіх даних вашого "
+"акаунту з цього сервера."
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+"Наполегливо радимо вам, зробити резервну копію даних "
+"вашого акаунту, перш ніж видаляти його з сервера."
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "Підтвердити"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Введіть «%s», тим самим підтверджуючи свою згоду на видалення акаунту."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "Остаточне і негайне видалення акаунту"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1686,14 +1902,14 @@ msgstr "Додаток не виявлено."
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "Ви не є власником цього додатку."
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "Виникли певні проблеми з токеном поточної сесії."
@@ -1716,13 +1932,13 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
-msgstr "Не видаляти додаток"
+msgid "Do not delete this application."
+msgstr "Не видаляти цей додаток."
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
-msgstr "Видалити додаток"
+msgid "Delete this application."
+msgstr "Видалити додаток."
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
@@ -1730,15 +1946,17 @@ msgid "You must be logged in to delete a group."
msgstr "Ви повинні спочатку увійти на сайт, аби видалити спільноту."
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "Немає імені або ІД."
#. TRANS: Client error when trying to delete a group without having the rights to delete it.
#: actions/deletegroup.php:107
msgid "You are not allowed to delete this group."
-msgstr "Вам не дозволено видаляти цю спільноту спільноту."
+msgstr "Вам не дозволено видаляти цю спільноту."
#. TRANS: Server error displayed if a group could not be deleted.
#. TRANS: %s is the name of the group that could not be deleted.
@@ -1773,24 +1991,30 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
-msgstr "Не видаляти цю спільноту"
+msgid "Do not delete this group."
+msgstr "Не видаляти цю спільноту."
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
-msgstr "Видалити спільноту"
+msgid "Delete this group."
+msgstr "Видалити спільноту."
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "Не увійшли."
@@ -1815,27 +2039,37 @@ msgstr "Ви впевненні, що бажаєте видалити цей д
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
-msgstr "Не видаляти цей допис"
+msgid "Do not delete this notice."
+msgstr "Не видаляти цей допис."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
-msgstr "Видалити допис"
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
+msgstr "Видалити допис."
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "Ви не можете видаляти користувачів."
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "Ви можете видаляти лише локальних користувачів."
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
msgstr "Видалити користувача"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "Видалити користувача"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
@@ -1843,78 +2077,100 @@ msgstr ""
"Впевнені, що бажаєте видалити цього користувача? Усі дані буде знищено без "
"можливості відновлення."
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr "Не видаляти цього користувача."
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
-msgstr "Видалити цього користувача"
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "Видалити цього користувача."
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "Дизайн"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "Налаштування дизайну для цього сайту StatusNet"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "Помилкова URL-адреса логотипу."
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "Невірний SSL або URL-адреса логотипу."
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "Тема недоступна: %s."
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "Змінити логотип"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "Логотип сайту"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "Логотип сайту з SSL"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "Змінити тему"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "Тема сайту"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "Тема для цього сайту."
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "Своя тема"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "Ви можете завантажити свою тему для сайту StatusNet як .ZIP архів."
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "Змінити фонове зображення"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "Фон"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1924,99 +2180,104 @@ msgstr ""
"%1$s."
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "Увімк."
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "Вимк."
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "Увімкнути або вимкнути фонове зображення."
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "Замостити фон"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
msgstr "Змінити кольори"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "Зміст"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "Сайдбар"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "Текст"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "Посилання"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "Додатково"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "Свій CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "За замовч."
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
-msgstr "Оновити налаштування за замовчуванням"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
+msgstr "Відновити стандартні установки."
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
-msgstr "Повернутись до початкових налаштувань"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr "Повернутись до стандартних налаштувань."
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "Зберегти"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
+msgstr "Зберегти дизайн."
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
-msgstr "Зберегти дизайн"
-
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "Цей допис не є обраним!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "Додати до обраних"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
-msgstr "Немає такого документа «%s»"
+msgid "No such document \"%s\"."
+msgstr "Немає такого документа «%s»."
#. TRANS: Title for "Edit application" form.
#. TRANS: Form legend.
@@ -2030,7 +2291,7 @@ msgid "You must be logged in to edit an application."
msgstr "Ви маєте спочатку увійти, аби мати змогу керувати додатком."
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "Такого додатку немає."
@@ -2040,61 +2301,71 @@ msgid "Use this form to edit your application."
msgstr "Скористайтесь цією формою, щоб відредагувати додаток."
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "Потрібне ім’я."
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "Ім’я надто довге (не більше 255 знаків)."
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "Це ім’я вже використовується. Спробуйте інше."
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "Потрібен опис."
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "URL-адреса надто довга."
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "URL-адреса не є дійсною."
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "Потрібна організація."
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "Назва організації надто довга (не більше 255 знаків)."
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "Потрібна домашня сторінка організації."
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "Форма зворотнього дзвінка надто довга."
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "URL-адреса для зворотнього дзвінка не є дійсною."
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "Не вдалося оновити додаток."
@@ -2105,14 +2376,17 @@ msgid "Edit %s group"
msgstr "Змінити властивості спільноти %s"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "Ви маєте спочатку увійти, аби мати змогу започаткувати спільноту."
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr ""
"Ви маєте бути наділені правами адміністратора, аби відредагувати властивості "
@@ -2125,63 +2399,65 @@ msgstr "Скористайтесь цією формою, щоб відреда
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Помилкове додаткове ім’я: «%s»"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "Не вдалося оновити спільноту."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "Неможна призначити додаткові імена."
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "Опції збережено."
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Налаштування пошти"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "Зазначте, як саме ви бажаєте отримувати листи з %%site.name%%."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "Електронна адреса"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "Поточна підтверджена поштова адреса."
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "Видалити"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2194,132 +2470,134 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "Електронна адреса, на зразок «UserName@example.org»"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "Додати"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "Вхідна пошта"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "Я хочу надсилати дописи поштою."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "Надсилайте дописи на цю адресу і їх буде опубліковано на сайті."
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "Створити нову адресу для надсилання повідомлень; видалити стару."
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
+"Для відправки повідомлень електронною поштою, ми маємо створити для вас "
+"унікальну електронну адресу на даному сервері:"
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "Нове"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Преференції ел. пошти"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "Поівдомляти мене поштою про нові підписки."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "Надсилати мені листа, коли хтось додає мій допис до списку обраних."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "Надсилати мені листа, коли хтось має приватне повідомлення для мене."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Надсилати мені листа, коли на мій допис з’являється «@-відповідь»."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "Дозволити друзям «розштовхати» мене, надіславши мені листа."
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "Позначати міткою MicroID мою електронну адресу."
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Преференції пошти збережно."
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "Немає електронної адреси."
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
-msgstr "Не можна полагодити цю поштову адресу"
+#: actions/emailsettings.php:388
+msgid "Cannot normalize that email address."
+msgstr "Не можна полагодити цю поштову адресу."
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Це недійсна електронна адреса."
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "Це і є вашою адресою."
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "Ця електронна адреса належить іншому користувачу."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
msgstr "Не вдалося додати код підтвердження."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2329,87 +2607,100 @@ msgstr ""
"подальші інструкції."
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "Не очікується підтвердження для скасування."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "Це помилкова адреса електронної пошти."
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
-msgstr "Не вдалося видалити підтвердження поштової адреси."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
+msgstr "Не вдається видалити підтвердження електронної адреси."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Підтвердження електронної пошти скасовано."
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "Це не є вашою адресою."
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "Адреса була видалена."
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "Немає адреси для вхідної пошти."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr "Не вдалося оновити запис користувача."
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "Адресу вхідної пошти видалено."
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "Нову адресу для вхідних повідомлень додано."
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "Цей допис вже є обраним!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
-msgstr "Видалити з обраних"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
+msgstr "Видалити з обраних."
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "Популярні дописи"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "Популярні дописи, сторінка %d"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "Представлено найбільш популярні дописи на сайті."
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr "Тут мають бути обрані дописи, але ще ніхто нічого не додав до обраних."
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: actions/favorited.php:153
msgid ""
"Be the first to add a notice to your favorites by clicking the fave button "
@@ -2418,7 +2709,9 @@ msgstr ""
"Додайте свій перший вподобаний допис, варто лише натиснути на відповідну "
"кнопку."
-#: actions/favorited.php:156
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
@@ -2427,142 +2720,186 @@ msgstr ""
"Чому б не [зареєструватись](%%action.register%%) і не почати додавати цікаві "
"дописи до улюблених!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "Обрані дописи %s"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "Оновлення обраних дописів %1$s на %2$s!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "Користувачі варті уваги"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "Користувачі варті уваги, сторінка %d"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
-msgstr "Список деяких видатних користувачів на %s"
+msgid "A selection of some great users on %s."
+msgstr "Список деяких видатних користувачів на %s."
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "Немає ID допису."
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "Немає допису."
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "Немає вкладень."
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "Немає завантажених вкладень."
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "Ця відповідь не очікується!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "Користувача, який слідкував за вашими повідомленнями, більше не існує."
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "Ви можете користуватись локальними підписками!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "Цей користувач позбавив вас можливості підписатись до нього."
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "Не авторизовано."
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "Не вдалося перетворити токени запиту на токени звернення."
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "Невідома версія протоколу OMB."
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "Помилка при оновленні віддаленого профілю."
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "Такого файлу немає."
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "Не можу прочитати файл."
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "Невірна роль."
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "Цю роль вже зарезервовано і не може бути встановлено."
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "Ви не можете надавати користувачеві жодних ролей на цьому сайті."
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "Користувач вже має цю роль."
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "Не визначено жодного профілю."
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "Не визначено профілю з таким ID."
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "Спільноту не визначено."
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "Лише адміністратор спільноти має змогу блокувати користувачів."
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "Користувача заблоковано в цій спільноті."
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "Користувач не є учасником спільноти."
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "Блокувати користувача у цій спільноті"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2574,33 +2911,39 @@ msgstr ""
"спільноти знов."
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
-msgstr "Не блокувати користувача в спільноті"
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
+msgstr "Не блокувати цього користувача у цій спільноті."
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
-msgstr "Заблокувати користувача в спільноті"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "Заблокувати цього користувача у цій спільноті."
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "Виникла помилка при блокуванні користувача в цій спільноті."
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "Немає ID."
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr ""
"Ви маєте спочатку увійти, аби мати змогу відредагувати властивості спільноти."
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "Дизайн спільноти"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
@@ -2608,22 +2951,25 @@ msgstr ""
"Налаштуйте вигляд сторінки спільноти, використовуючи фонове зображення і "
"кольори на свій смак."
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "Не вдалося оновити дизайн."
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
+msgstr "Не вдалося оновити налаштування дизайну."
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "Преференції дизайну збережно."
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "Логотип спільноти"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
@@ -2631,112 +2977,129 @@ msgstr ""
"Ви маєте можливість завантажити логотип для вашої спільноти. Максимальний "
"розмір файлу становить %s."
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "Завантажити"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "Втяти"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "Оберіть квадратну ділянку зображення, яка й буде логотипом спільноти."
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "Логотип оновлено."
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "Оновлення логотипу завершилось невдачею."
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "Учасники спільноти %s"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "Учасники спільноти %1$s, сторінка %2$d"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "Список учасників цієї спільноти."
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "Адмін"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "Блок"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "Блокувати користувача"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "Надати користувачеві права адміністратора"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "Зробити адміном"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "Надати цьому користувачеві права адміністратора"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "Оновлення членів %1$s на %2$s!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr "Спільноти"
-#: actions/groups.php:64
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
#, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
msgstr "Спільноти, сторінка %d"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"Спільноти на сайті %%%%site.name%%%% дозволять вам відшукати людей зі "
"схожими інтересами. Лише приєднайтеся до спільноти і надсилайте повідомлення "
-"до усіх її учасників використовуючи просту команду «!groupname» у тексті "
+"до усіх її учасників використовуючи просту команду «!spilnota» у тексті "
"повідомлення. Не бачите спільноту, яка вас цікавить? Спробуйте її [знайти](%%"
"%%action.groupsearch%%%%) або [створіть власну!](%%%%action.newgroup%%%%)"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "Створити нову спільноту"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2746,25 +3109,33 @@ msgstr ""
"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків "
"або більше."
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "Пошук спільнот"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "Немає результатів."
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
msgstr ""
"Якщо не можете відшукати спільноту, яка вас цікавить, то [створіть](%%action."
"newgroup%%) власну."
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2774,139 +3145,144 @@ msgstr ""
"action.newgroup%%) свою власну спільноту!"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "Лише адміністратори можуть розблокувати учасників спільноти."
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "Користувача не блоковано."
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "Помилка при розблокуванні."
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "Налаштування ІМ"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
-"Ви можете надсилати та отримувати дописи через Jabber/GTalk [службу миттєвих "
-"повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції нижче."
+"Ви можете надсилати та отримувати дописи через Jabber/Google Talk [службу "
+"миттєвих повідомлень](%%doc.im%%). Вкажіть свою адресу і налаштуйте опції "
+"нижче."
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "ІМ недоступний"
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "ІМ-адреса"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "Поточна підтверджена адреса Jabber/GTalk."
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
+msgstr "Поточна підтверджена адреса Jabber/Google Talk."
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
-"Очікування підтвердження цієї адреси. Перевірте свій Jabber/GTalk акаунт, "
-"туди має надійти повідомлення з подальшими інструкціями. (Ви додали %s до "
-"вашого списку контактів?)"
+"Очікування підтвердження цієї адреси. Перевірте свій Jabber/Google Talk "
+"акаунт, туди має надійти повідомлення з подальшими інструкціями. (Ви додали %"
+"s до вашого списку контактів?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
+#: actions/imsettings.php:139
#, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
-"Jabber або GTalk адреса, на зразок «UserName@example.org». Але спершу "
+"Jabber або Google Talk адреса, на зразок «username@example.org». Але спершу "
"переконайтеся, що додали %s до списку контактів в своєму IM-клієнті або в "
-"GTalk."
+"Google Talk."
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "Преференції ІМ"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
-msgstr "Повідомляти мене через Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+msgid "Send me notices through Jabber/Google Talk."
+msgstr "Повідомляти мене через Jabber/Google Talk."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
-msgstr "Надсилати дописи на сайт, коли мій статус Jabber/GTalk змінюється."
-
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr ""
-"Надсилати також мені відповіді через Jabber/GTalk від людей, до яких я не "
+"Надсилати дописи на сайт, коли мій статус Jabber/Google Talk змінюється."
+
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
+msgstr ""
+"Надсилати мені відповіді через Jabber/Google Talk від людей, до яких я не "
"підписаний."
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
-msgstr "Позначати міткою MicroID мою адресу Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+msgid "Publish a MicroID for my Jabber/Google Talk address."
+msgstr "Позначати міткою MicroID мою адресу Jabber/Google Talk."
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "Преференції збережно."
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "Немає Jabber ID."
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
-msgstr "Не можна полагодити цей Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+msgid "Cannot normalize that Jabber ID."
+msgstr "Не можна полагодити цей Jabber ID."
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
-msgstr "Це недійсний Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+msgid "Not a valid Jabber ID."
+msgstr "Це недійсний Jabber ID."
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "Це і є ваш Jabber ID."
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID вже належить іншому користувачу."
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, php-format
msgid ""
"A confirmation code was sent to the IM address you added. You must approve %"
@@ -2915,73 +3291,78 @@ msgstr ""
"Код підтвердження був відправлений на адресу IM, яку ви зазначили. Ви "
"повинні затвердити %s для відправлення вам повідомлень."
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "Це помилкова адреса IM."
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
-msgstr "Не вдалося видалити підтвердження ІМ."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
+msgstr "Не вдалося видалити підтвердження ІМ-адреси."
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "Підтвердження ІМ скасовано."
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "Це не ваш Jabber ID."
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "Адреса ІМ була видалена."
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "Вхідні для %1$s — сторінка %2$d"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "Вхідні для %s"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Це ваші вхідні повідомлення, тут містяться повідомлення надіслані приватно."
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "Запрошення були скасовані."
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "Ви маєте спочатку увійти, аби мати змогу запросити когось до %s."
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "Неправильна електронна адреса: %s."
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "Запрошення надіслано"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "Запросити нових користувачів"
@@ -2989,7 +3370,7 @@ msgstr "Запросити нових користувачів"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "Ви вже підписані до цього користувача:"
@@ -2998,7 +3379,7 @@ msgstr[2] "Ви вже підписані до цих користувачів:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3007,7 +3388,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3021,7 +3402,7 @@ msgstr[2] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "Запрошення було надіслано наступній особі:"
@@ -3030,7 +3411,7 @@ msgstr[2] "Запрошення були надіслані наступним
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
@@ -3039,7 +3420,7 @@ msgstr ""
"і зареєструються на сайті. Дякуємо, що сприяєте формуванню спільноти!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
@@ -3047,28 +3428,28 @@ msgstr ""
"сервісу."
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "Електронні адреси"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
msgstr ""
-"Адреси друзів куди надсилатимуться запрошення (кожна адреса окремим рядком)"
+"Адреси друзів, куди надсилатимуться запрошення (кожна адреса окремим рядком)."
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "Особисті повідомлення"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "Можна додати персональне повідомлення до запрошення (опціонально)."
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "Надіслати"
@@ -3076,7 +3457,7 @@ msgstr "Надіслати"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s запросив(ла) вас приєднатися до нього(неї) на %2$s"
@@ -3086,7 +3467,7 @@ msgstr "%1$s запросив(ла) вас приєднатися до ньог
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3144,44 +3525,51 @@ msgstr ""
"\n"
"Щиро ваші, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "Ви повинні спочатку увійти на сайт, аби долучитися до спільноти."
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
msgstr "%1$s приєднався до спільноти %2$s"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "Ви повинні спочатку увійти на сайт, аби залишити спільноту."
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "Ви не є учасником цієї спільноти."
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
msgstr "%1$s залишив спільноту %2$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "Ліцензія"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "Ліцензія для цього сайту StatusNet"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "Невірний вибір ліцензії."
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
@@ -3189,125 +3577,134 @@ msgstr ""
"Ви повинні зазначити власника змісту повідомлень, якщо збираєтесь "
"використовувати варіант «Всі права захищені»."
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "Помилкова назва ліцензії. Максимальна довжина — 255 символів."
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "Помилкова URL-адреса ліцензії."
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "Помилкова URL-адреса логотипу ліцензії."
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "Адреса ліцензії має бути порожньою або містити коректний URL."
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "Адреса логотипу ліцензії має бути порожньою або містити коректний URL."
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "Вибір ліцензії"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "Приватно"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "Всі права захищені."
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "Кріейтів Комонс"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "Тип"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "Оберіть ліцензію"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "Подробиці ліцензії"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "Власник"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "Ім’я власника усього змісту на сайті (якщо він є)."
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "Назва ліцензії"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "Назва ліцензії."
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "URL-адреса ліцензії"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "URL-адреса додаткової інформації щодо ліцензії."
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "URL-адреса логотипу ліцензії"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "URL-адреса зображення (логотипу) для показу поруч з ліцензією"
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "Зберегти"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "Зберегти налаштування ліцензії"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "Тепер ви увійшли."
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "Неточне ім’я або пароль."
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "Помилка. Можливо, ви не авторизовані."
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "Увійти"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "Вхід на сайт"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "Пам’ятати мене"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr ""
"Автоматично входити у майбутньому; не для комп’ютерів загального "
"користування!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "Загубили або забули пароль?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
@@ -3315,11 +3712,11 @@ msgstr ""
"З міркувань безпеки, будь ласка, введіть ще раз ім’я та пароль, перед тим як "
"змінювати налаштування."
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "Увійти використовуючи ім’я та пароль."
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3359,19 +3756,22 @@ msgid "New application"
msgstr "Новий додаток"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "Ви маєте спочатку увійти, аби мати змогу зареєструвати додаток."
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "Скористайтесь цією формою, щоб зареєструвати новий додаток."
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Потрібна URL-адреса."
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "Не вдалося створити додаток."
@@ -3380,11 +3780,21 @@ msgstr "Не вдалося створити додаток."
msgid "New group"
msgstr "Нова спільнота"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr "Вам не дозволено створювати нові спільноті на цьому сайті."
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "Скористайтесь цією формою для створення нової спільноти."
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr "Додаткове ім’я не може збігатися з псевдонімом."
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "Нове повідомлення"
@@ -3435,7 +3845,9 @@ msgstr "Новий допис"
msgid "Notice posted"
msgstr "Допис надіслано"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3444,16 +3856,21 @@ msgstr ""
"Пошук дописів на %%site.name%% за їх змістом. Відокремлюйте пошукові умови "
"інтервалами; вони повинні складатись з 3 знаків або більше."
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "Пошук текстів"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "Результати пошуку «%1$s» на сайті %2$s"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3462,7 +3879,9 @@ msgstr ""
"Станьте тим, хто напише перший [допис до цього топіку](%%%%action.newnotice%%"
"%%?status_textarea=%s)!"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3471,14 +3890,17 @@ msgstr ""
"Чому б не [зареєструватись](%%%%action.register%%%%) і не написати перший "
"[допис до цього топіку](%%%%action.newnotice%%%%?status_textarea=%s)!"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "Оновлення з «%s»"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "Всі оновлення за збігом з «%s» на %2$s!"
#: actions/nudge.php:85
@@ -3519,30 +3941,30 @@ msgid "You have not registered any applications yet."
msgstr "Поки що ви не зареєстрували жодних додатків."
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "Під’єднані додатки"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "Наступні з’єднання вже існують для вашого профілю."
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "Ви не є користувачем даного додатку."
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "Неможливо скасувати доступ для додатку: %s."
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3552,14 +3974,14 @@ msgstr ""
"$s."
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "Ви не дозволили жодним додаткам використовувати ваш акаунт."
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3568,6 +3990,16 @@ msgstr ""
"Ви — розробник? [Зареєструйте клієнтський додаток OAuth](%s) щоб "
"користуватися ним на даному сайті StatusNet."
+#: actions/oembed.php:64
+#, php-format
+msgid "\"%s\" not found."
+msgstr "«%s» не знайдено."
+
+#: actions/oembed.php:76
+#, php-format
+msgid "Notice %s not found."
+msgstr "Допис %s не знайдено."
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "Допис не має профілю."
@@ -3577,6 +4009,16 @@ msgstr "Допис не має профілю."
msgid "%1$s's status on %2$s"
msgstr "%1$s має статус на %2$s"
+#: actions/oembed.php:95
+#, php-format
+msgid "Attachment %s not found."
+msgstr "Вкладення %s не знайдено."
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr "«%s» не підтримується для oembed-запитів."
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3590,16 +4032,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "URL-адреса %s лише в простому HTTP, будь ласка."
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "Такий формат даних не підтримується."
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "Пошук людей"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "Пошук дописів"
@@ -3613,68 +4056,79 @@ msgid "Manage various other options."
msgstr "Керування деякими іншими опціями."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr " (вільний сервіс)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "Скорочення URL"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "Доступні сервіси."
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "Переглядати дизайн користувачів"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "Показувати або приховувати дизайни сторінок окремих користувачів."
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "Сервіс скорочення URL-адрес надто довгий (50 символів максимум)."
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "ID користувача не визначено."
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "Токен для входу не визначено."
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "Токен для входу у запиті відсутній."
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "Токен для входу визначено як неправильний."
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "Токен для входу втратив чинність."
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "Вихідні для %1$s — сторінка %2$d"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "Вихідні для %s"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Це ваші вихідні повідомлення, тут містяться повідомлення, які ви надіслали "
@@ -3688,7 +4142,8 @@ msgstr "Змінити пароль"
msgid "Change your password."
msgstr "Змінити пароль."
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "Пароль замінено"
@@ -3696,48 +4151,47 @@ msgstr "Пароль замінено"
msgid "Old password"
msgstr "Старий пароль"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "Новий пароль"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
-msgstr "6 або більше знаків"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
+msgstr "6 або більше знаків."
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Підтвердити"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
-msgstr "Такий само, як і пароль вище"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
+msgstr "Такий само, як і пароль вище."
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "Змінити"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "Пароль має складатись з 6-ти або більше знаків."
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "Паролі не співпадають."
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "Старий пароль є неточним"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "Помилка при збереженні користувача; недійсний."
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
-msgstr "Неможна зберегти новий пароль."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
+msgstr "Не вдається зберегти новий пароль."
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "Пароль збережено."
@@ -3943,7 +4397,7 @@ msgstr "Директорія, в якій знаходяться фонові з
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "Вкладення"
@@ -4011,7 +4465,9 @@ msgstr "Сервер на який направляти SSL-запити."
msgid "Save paths"
msgstr "Зберегти шляхи"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -4021,7 +4477,8 @@ msgstr ""
"Відокремлюйте пошукові умови інтервалами; вони повинні складатись з 3 знаків "
"або більше."
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "Пошук людей"
@@ -4045,51 +4502,52 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "Ліцензія допису «%1$s» є несумісною з ліцензією сайту «%2$s»."
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "Налаштування профілю"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr ""
"Ви можете заповнити свій особистий профіль і люди знатимуть про вас більше."
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "Інформація профілю"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1-64 рядкових літер і цифр, ніякої пунктуації або інтервалів."
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "Повне ім’я"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "Веб-сторінка"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "URL-адреса вашої веб-сторінки, блоґу, або профілю на іншому сайті."
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
@@ -4098,81 +4556,85 @@ msgstr[1] "Опишіть себе та свої інтереси інтерес
msgstr[2] "Опишіть себе та свої інтереси інтереси вкладаючись у %d символів"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "Опишіть себе та свої інтереси"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "Про себе"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "Розташування"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "Показувати моє місцезнаходження при надсиланні дописів"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "Теґи"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr ""
"Позначте себе теґами (літери, цифри, -, . та _), відокремлюючи кожен комою "
-"або пробілом"
+"або пробілом."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "Мова"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
-msgstr "Мова, котрій надаєте перевагу"
+#: actions/profilesettings.php:171
+msgid "Preferred language."
+msgstr "Мова, котрій надаєте перевагу."
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "Часовий пояс"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "За яким часовим поясом ви живете?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
msgstr ""
"Автоматично підписуватись до тих, хто підписався до мене. (Слава роботам!)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
@@ -4181,49 +4643,50 @@ msgstr[1] "Біографія надто довга (не більше %d сим
msgstr[2] "Біографія надто довга (не більше %d символів)."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "Часовий пояс не обрано."
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "Мова надто довга (не більше 50 символів)."
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
+#: actions/profilesettings.php:291
#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "Недійсний теґ: «%s»"
+msgid "Invalid tag: \"%s\"."
+msgstr "Неприпустимий теґ: «%s»."
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
msgstr "Не вдалося оновити користувача для автопідписки."
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
-msgstr "Не вдалося зберегти налаштування розташування."
-
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "Не вдалося зберегти профіль."
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
+msgstr "Не вдалося зберегти преференції розташування."
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "Не вдалося зберегти теґи."
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "Налаштування збережено."
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr "Відновити акаунт"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4299,6 +4762,12 @@ msgstr ""
"Мікроблогінг), який працює на вільному програмному забезпеченні [StatusNet]"
"(http://status.net/)."
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s оновлення від усіх!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4343,35 +4812,43 @@ msgstr ""
msgid "Tag cloud"
msgstr "Хмарка теґів"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "Ви вже в системі!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "Немає такого коду відновлення."
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "Це не код відновлення."
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "Код відновлення для невідомого користувача."
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "Помилка з кодом підтвердження."
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "Цей код підтвердження застарілий. Будь ласка, розпочніть спочатку."
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "Не вдалося оновити користувача з підтвердженною електронною адресою."
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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."
@@ -4379,68 +4856,97 @@ msgstr ""
"Якщо загубите або втратите свій пароль, його буде легко відновити за "
"допомогою електронної адреси, яку ви зазначили у власному профілі."
-#: actions/recoverpassword.php:158
-msgid "You have been identified. Enter a new password below. "
-msgstr "Ідентифікація успішна. Введіть новий пароль. "
+#: actions/recoverpassword.php:167
+msgid "You have been identified. Enter a new password below."
+msgstr "Ідентифікація успішна. Введіть новий пароль."
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "Відновлення паролю"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "Ім’я користувача або поштова адреса"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr ""
"Ваше ім’я користувача на цьому сервері, або зареєстрована електронна адреса."
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "Відновити"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "Відновити"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "Скинути пароль"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "Відновити пароль"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "Запит на відновлення паролю відправлено"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+msgid "Password saved"
+msgstr "Пароль збережено"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "Дія невідома"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
msgstr "6 або більше знаків, і не забудьте їх!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "Скинути"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "Введіть ім’я або електронну адресу."
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "Користувача з такою електронною адресою або ім’ям немає."
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "Для цього користувача немає зареєстрованої електронної адреси."
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "Помилка при збереженні підтвердження адреси."
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
@@ -4448,122 +4954,113 @@ msgstr ""
"Інструкції з відновлення паролю було надіслано на електронну адресу, яку ви "
"вказали у налаштуваннях вашого профілю."
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "Несподіване скидання паролю."
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "Пароль має складатись з 6-ти або більше знаків."
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "Пароль та підтвердження не співпадають."
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "Помилка в налаштуваннях користувача."
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "Новий пароль успішно збережено. Тепер ви увійшли."
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr ""
"Пробачте, але лише ті, кого було запрошено, мають змогу зареєструватись тут."
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "Даруйте, помилка у коді запрошення."
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "Реєстрація успішна"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "Реєстрація"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "Реєстрацію не дозволено."
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
-msgstr "Ви не зможете зареєструватись, якщо не погодитесь з умовами ліцензії."
+#: actions/register.php:201
+msgid "You cannot register if you don't agree to the license."
+msgstr "Ви не можете зареєструватись, якщо не погодитесь з умовами ліцензії."
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "Ця адреса вже використовується."
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "Недійсне ім’я або пароль."
-#: actions/register.php:351
+#: actions/register.php:340
msgid ""
"With this form you can create a new account. You can then post notices and "
-"link up to friends and colleagues. "
+"link up to friends and colleagues."
msgstr ""
"Ця форма дозволить вам створити новий акаунт. Ви зможете робити дописи і "
-"будете в курсі справ ваших друзів та колег. "
-
-#: actions/register.php:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr ""
-"1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. "
-"Неодмінно."
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "6 або більше знаків. Неодмінно."
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "Такий само, як і пароль вище. Неодмінно."
+"будете в курсі справ ваших друзів та колег."
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "Пошта"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
-msgstr "Використовується лише для оновлень, оголошень та відновлення паролю"
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
+msgstr "Використовується лише для оновлень, оголошень та відновлення пароля."
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
-msgstr "Повне ім’я, звісно ж ваше справжнє ім’я"
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
+msgstr "Повне ім’я, бажано ваше справжнє ім’я."
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "URL-адреса вашої веб-сторінки, блоґу, або профілю на іншому сайті"
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "Де ви живете, на кшталт «Місто, область (регіон), країна»."
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr "Я розумію, що зміст і дані %1$s є приватними і конфіденційними."
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "Авторські права на мої тексти і файли належать %1$s."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "Авторські права на мої тексти і файли залишаються за мною."
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "Всі права захищені."
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4572,7 +5069,7 @@ msgstr ""
"Мої дописи і файли доступні на умовах %s, окрім цих приватних даних: пароль, "
"електронна адреса, адреса IM, телефонний номер."
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4605,7 +5102,7 @@ msgstr ""
"Дякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш "
"сервіс."
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
@@ -4613,7 +5110,7 @@ msgstr ""
"(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться "
"інструкції щодо підтвердження вашої електронної адреси.)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4624,78 +5121,81 @@ msgstr ""
"action.register%%) новий акаунт. Якщо ви вже маєте акаунт на [сумісному "
"сайті](%%doc.openmublog%%), введіть URL-адресу вашого профілю нижче."
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "Віддалена підписка"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "Підписатись до віддаленого користувача"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "Ім’я користувача"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
msgstr "Ім’я користувача, дописи якого ви хотіли б читати."
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "URL-адреса профілю"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "URL-адреса вашого профілю на іншому сумісному сервісі"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
+msgstr "URL-адреса вашого профілю на іншому сумісному сервісі мікроблоґів."
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "Підписатись"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
-msgstr "Недійсна URL-адреса профілю (неправильний формат)"
+#: actions/remotesubscribe.php:158
+msgid "Invalid profile URL (bad format)."
+msgstr "Неприпустима URL-адреса профілю (неправильний формат)."
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Неправильна URL-адреса профілю (немає документа YADIS, або помилковий XRDS)."
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
-msgstr "Це локальний профіль! Увійдіть аби підписатись."
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
+msgstr "Це локальний профіль! Увійдіть, щоб підписатись."
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
msgstr "Не вдалося отримати токен запиту."
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "Лише користувачі, що знаходяться у системі, можуть повторювати дописи."
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "Зазначеного допису немає."
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
msgstr "Ви не можете повторювати власні дописи."
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "Ви вже повторили цей допис."
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "Повторено"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "Повторено!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "Відповіді до %s"
@@ -4747,11 +5247,105 @@ msgstr ""
"Ви можете [«розштовхати» %1$s](../%2$s) або [написати дещо варте його уваги](%"
"%%%action.newnotice%%%%?status_textarea=%3$s)."
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "Відповіді до %1$s на %2$s!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+"Лише користувачі, що знаходяться у системі, можуть відновлювати свої акаунти."
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr "Ви не можете відновити свій акаунт."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr "Немає завантажених файлів"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Завантажений файл перевищив UPLOAD_MAX_FILESIZE вказаний у php.ini."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Завантажений файл перевищив MAX_FILE_SIZE котрий було встановлено для форми "
+"HTML."
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "Файл було завантажено частково."
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "Загублено тимчасову теку."
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "Запис файлу на диск скасовано."
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "Завантаження файлу зупинено розширенням."
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Система відповіла помилкою при завантаженні цього файла."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr "Ця стрічка не у форматі Atom."
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+"Веб-стрічку було відновлено. Ваші старі дописи тепер мають з’явитися на "
+"сторінці вашого профілю, а також у результатах пошуку."
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+"Веб-стрічку невдовзі буде відновлено. Зачекайте, будь ласка, декілька хвилин."
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+"Ви можете завантажити резервну копію у форматі Activity Streams."
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "Завантажити файл"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "Ви не можете позбавляти користувачів ролей на цьому сайті."
@@ -4760,7 +5354,7 @@ msgstr "Ви не можете позбавляти користувачів р
msgid "User doesn't have this role."
msgstr "Користувач не має цієї ролі."
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4802,85 +5396,87 @@ msgstr "Виводити дані сесії наладки."
msgid "Save site settings"
msgstr "Зберегти налаштування сайту"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "Ви повинні спочатку увійти, аби переглянути додаток."
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "Профіль додатку"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "Іконка"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "Ім’я"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "Організація"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "Опис"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "Статистика"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "Можливості додатку"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "Призначити новий ключ і таємне слово"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "Видалити"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "Інфо додатку"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Ключ споживача"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Таємно слово споживача"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "URL-адреса токена запиту"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "URL-адреса токена дозволу"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "Авторизувати URL-адресу"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
@@ -4888,35 +5484,42 @@ msgstr ""
"До уваги: Всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо "
"шифрування підписів відкритим текстом."
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Ви впевнені, що бажаєте скинути ваш ключ споживача і секретний код?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "Обрані дописи %1$s, сторінка %2$d"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "Не можна відновити обрані дописи."
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "Стрічка обраних дописів %s (RSS 1.0)"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "Стрічка обраних дописів %s (RSS 2.0)"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "Стрічка обраних дописів %s (Atom)"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4925,7 +5528,9 @@ msgstr ""
"дописі який ви вподобали, аби повернутись до нього пізніше, або звернути на "
"нього увагу інших."
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
@@ -4934,7 +5539,10 @@ msgstr ""
"%s поки що не вподобав жодного допису. Може ви написали б йому щось "
"цікаве? :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4945,7 +5553,8 @@ msgstr ""
"action.register%%%%) і не написати щось цікаве, що мало б сподобатись цьому "
"користувачеві :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "Це спосіб поділитись з усіма тим, що вам подобається."
@@ -4963,81 +5572,88 @@ msgid "%1$s group, page %2$d"
msgstr "Спільнота %1$s, сторінка %2$d"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "Профіль спільноти"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "Зауваження"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "Додаткові імена"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "Дії спільноти"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Стрічка дописів спільноти %s (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Стрічка дописів спільноти %s (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "Стрічка дописів спільноти %s (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "FOAF спільноти %s"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "Учасники"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(Пусто)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "Всі учасники"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "Створено"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "Учасники"
@@ -5046,7 +5662,7 @@ msgstr "Учасники"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5065,7 +5681,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -5079,30 +5695,30 @@ msgstr ""
"спільноти роблять короткі дописи про своє життя та інтереси. "
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "Адміни"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "Немає такого повідомлення."
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "Лише відправник та отримувач мають можливість читати це повідомлення."
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "Повідомлення до %1$s на %2$s"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "Повідомлення від %1$s на %2$s"
@@ -5118,7 +5734,7 @@ msgid "%1$s tagged %2$s"
msgstr "Дописи %1$s позначені теґом %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5369,74 +5985,74 @@ msgstr ""
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
-msgstr "Зберегти повідомлення сайту"
+msgid "Save site notice."
+msgstr "Зберегти повідомлення сайту."
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "Налаштування СМС"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "Ви можете отримувати СМС через електронну пошту від %%site.name%%."
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "СМС недоступно."
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS-адреса"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "Поточний підтверджений телефонний номер."
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "Очікування підтвердження телефонного номера."
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "Код підтвердження"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "Введіть код, який ви отримали телефоном."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "Підтвердити"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "Телефонний номер"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів"
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
+msgstr "Телефонний номер та регіональний код, ніякої пунктуації чи інтервалів."
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "Преференції SMS"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
@@ -5445,32 +6061,32 @@ msgstr ""
"витрати від мого мобільного оператора."
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "Преференції SMS збережено."
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "Немає телефонного номера."
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "Оператора не обрано."
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "Це і є ваш телефонний номер."
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "Цей телефонний номер належить іншому користувачу."
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5479,39 +6095,39 @@ msgstr ""
"Перевірте вхідні повідомлення, там має бути код та подальші інструкції."
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "Це помилковий код підтвердження."
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "Підтвердження SMS скасовано."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "Це не ваш телефонний номер."
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "Телефонний номер для SMS був видалений."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "Мобільний оператор"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "Оберіть оператора"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5522,9 +6138,9 @@ msgstr ""
"на %s і ми внесемо його до списку."
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
-msgstr "Код не введено"
+#: actions/smssettings.php:535
+msgid "No code entered."
+msgstr "Код не введено."
#. TRANS: Menu item for site administration
#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
@@ -5595,15 +6211,19 @@ msgstr "Ви не підписані до цього профілю."
msgid "Could not save subscription."
msgstr "Не вдалося зберегти підписку."
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "Ця дія приймає лише запити POST."
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Цією дією ви не зможете підписатися до віддаленого профілю OMB 0.1."
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "Підписані"
@@ -5635,7 +6255,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "Тут представлені ті, хто слідкує за дописами від %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5645,7 +6265,7 @@ msgstr ""
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "%s ще не має читачів. Будете першим?"
@@ -5655,7 +6275,7 @@ msgstr "%s ще не має читачів. Будете першим?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5688,7 +6308,7 @@ msgstr "Тут представлені ті, за чиїми дописами
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5708,23 +6328,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s не відслідковує нічого"
-#: actions/subscriptions.php:178
-#, fuzzy, php-format
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
msgid "Subscription feed for %s (Atom)"
-msgstr "Стрічка дописів для %s (Atom)"
+msgstr "Стрічка підписок %s (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "СМС"
@@ -5757,12 +6378,15 @@ msgstr "Немає ID аргументу."
msgid "Tag %s"
msgstr "Позначити %s"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "Профіль користувача."
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "Фото"
@@ -5778,6 +6402,11 @@ msgstr ""
"Позначити користувача теґами (літери, цифри, -, . та _), відокремлюючи кожен "
"комою або пробілом"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "Недійсний теґ: «%s»"
+
#: actions/tagother.php:193
msgid ""
"You can only tag people you are subscribed to or who are subscribed to you."
@@ -5785,10 +6414,6 @@ 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 "Скористайтесь цією формою, щоб додати теґи своїм підпискам та читачам."
@@ -5797,6 +6422,7 @@ msgstr "Скористайтесь цією формою, щоб додати т
msgid "No such tag."
msgstr "Такого теґу немає."
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "Цього користувача блокувати неможливо."
@@ -5817,7 +6443,7 @@ msgstr "У запиті відсутній ID профілю."
msgid "Unsubscribed"
msgstr "Відписано"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5848,12 +6474,11 @@ msgstr "Помилковий текст привітання. Максималь
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "Помилкова підписка за замовчуванням: «%1$s» не є користувачем."
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "Профіль"
@@ -5910,55 +6535,65 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr "Зберегти налаштування користувача"
+msgid "Save user settings."
+msgstr "Зберегти налаштування користувача."
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "Авторизувати підписку"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
-"Будь ласка, перевірте всі деталі, щоб упевнитись, що ви дійсно бажаєте "
-"підписатись на дописи цього користувача. Якщо ви не збирались підписуватись "
-"ні до чиїх дописів, просто натисніть «Відмінити»."
+"Будь ласка, перевірте всі деталі, аби упевнитись, що ви дійсно бажаєте "
+"підписатись на дописи цього користувача. Якщо ви не збираєтесь "
+"підписуватись, то просто натисніть «Відмінити»."
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "Ліцензія"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
msgid "Accept"
msgstr "Погодитись"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
-msgstr "Підписатись до цього користувача"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
+msgstr "Підписатися до цього користувача."
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
msgid "Reject"
-msgstr "Забраковано"
+msgstr "Відхилити"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
-msgstr "Відмінити цю підписку"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
+msgstr "Відхилити підписку."
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "Немає запиту на авторизацію!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "Підписку авторизовано"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5968,11 +6603,12 @@ msgstr ""
"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як "
"авторизувати підписку. Ваш підписний токен:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "Підписку скинуто"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "
@@ -5982,48 +6618,71 @@ msgstr ""
"з інструкціями на сайті для більш конкретної інформації про те, як скинути "
"підписку."
-#: actions/userauthorization.php:303
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
#, php-format
-msgid "Listener URI ‘%s’ not found here."
-msgstr "URI слухача «%s» тут не знайдено"
+msgid "Listener URI \"%s\" not found here."
+msgstr "URI слухача «%s» тут не знайдено."
-#: actions/userauthorization.php:308
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+msgid "Listenee URI \"%s\" is too long."
msgstr "URI слухача «%s» задовге."
-#: actions/userauthorization.php:314
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
-msgstr "URI слухача «%s» це локальний користувач"
+msgid "Listenee URI \"%s\" is a local user."
+msgstr "URI слухача «%s» — це локальний користувач."
-#: actions/userauthorization.php:329
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+msgid "Profile URL \"%s\" is for a local user."
msgstr "URL-адреса профілю «%s» для локального користувача."
-#: actions/userauthorization.php:345
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
-msgstr "URL-адреса аватари «%s» помилкова."
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr "Ліцензія потоку «%1$s» є несумісною з ліцензією сайту «%2$s»."
-#: actions/userauthorization.php:350
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
#, php-format
-msgid "Can’t read avatar URL ‘%s’."
-msgstr "Не можна прочитати URL аватари «%s»."
+msgid "Avatar URL \"%s\" is not valid."
+msgstr "URL-адреса аватари «%s» не є дійсною."
-#: actions/userauthorization.php:355
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
-msgstr "Неправильний тип зображення для URL-адреси аватари «%s»."
+msgid "Cannot read avatar URL \"%s\"."
+msgstr "Не вдалося прочитати URL аватари «%s»."
+
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
+msgstr "Неправильний тип зображення для URL аватари «%s»."
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "Дизайн профілю"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
@@ -6031,7 +6690,7 @@ msgstr ""
"Налаштуйте вигляд сторінки свого профілю, використовуючи фонове зображення і "
"кольори на свій смак."
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "Поласуйте бутербродом!"
@@ -6063,7 +6722,7 @@ msgstr ""
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "Оновлення від %1$s на %2$s!"
@@ -6124,7 +6783,7 @@ msgid "Plugins"
msgstr "Додатки"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "Версія"
@@ -6133,32 +6792,32 @@ msgid "Author(s)"
msgstr "Автор(и)"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "Обрати"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s додав(ла) ваш допис %2$s до обраних."
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "Неможливо обробити URL «%s»"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "Робін вважає, що це неможливо."
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -6178,7 +6837,7 @@ msgstr[2] ""
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -6188,7 +6847,7 @@ msgstr[2] "Розміри цього файлу перевищують вашу
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
@@ -6197,7 +6856,7 @@ msgstr[1] "Розміри цього файлу перевищують вашу
msgstr[2] "Розміри цього файлу перевищують вашу місячну квоту у %d байтів."
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "Невірне ім’я файлу."
@@ -6255,7 +6914,7 @@ msgid "Could not create login token for %s"
msgstr "Не вдалося створити токен входу для %s"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "Немає імені бази даних або DSN ніде не знайдено"
@@ -6282,23 +6941,23 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Немає такого профілю (%1$d) для повідомлення (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Помилка бази даних при додаванні хеш-теґу: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "Проблема при збереженні допису. Надто довге."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "Проблема при збереженні допису. Невідомий користувач."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
@@ -6306,7 +6965,7 @@ msgstr ""
"повертайтесь за кілька хвилин."
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
@@ -6315,42 +6974,42 @@ msgstr ""
"повертайтесь за кілька хвилин."
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "Вам заборонено надсилати дописи до цього сайту."
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Проблема при збереженні допису."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr "Вказано невірний тип для saveKnownGroups."
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "Проблема при збереженні вхідних дописів спільноти."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Не вдалося зберегти відповідь для %1$d, %2$d."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6358,14 +7017,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "Не вдалося скасувати роль «%s» для користувача #%2$s; не існує."
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6436,35 +7095,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "Вітаємо на %1$s, @%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "Користувача для однокористувацького режиму не визначено."
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr "Код для однокористувацького режиму називається, коли не ввімкнуто."
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "Не вдалося створити нову спільноту."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "Не вдалося встановити URI спільноти."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "Не вдалося встановити членство."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "Не вдалося зберегти інформацію про локальну спільноту."
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr "Не вдається знайти акаунт %s."
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr "Не вдається знайти XRD для %s."
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr "Немає послуги AtomPub API для %s."
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6501,211 +7181,214 @@ msgid "Other"
msgstr "Інше"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s — %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "Сторінка без заголовку"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "Розгорнути"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "Відправна навігація по сайту"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "Персональний профіль і стрічка друзів"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
-msgstr "Особисте"
+msgstr "Стрічка"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "Змінити електронну адресу, аватару, пароль, профіль"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "Акаунт"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "З’єднання з сервісами"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "З’єднання"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "Змінити конфігурацію сайту"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "Адмін"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Запросіть друзів та колег приєднатись до вас на %s"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "Запросити"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "Вийти з сайту"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "Вийти"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "Створити новий акаунт"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "Реєстрація"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "Увійти на сайт"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "Увійти"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "Допоможіть!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "Довідка"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "Пошук людей або текстів"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "Пошук"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "Об’яви на сайті"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "Огляд"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "Зауваження сторінки"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "Другорядна навігація по сайту"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "Допомога"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "Про"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "ЧаП"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "Умови"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "Приватність"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "Джерело"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "Контакт"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "Бедж"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "Ліцензія програмного забезпечення StatusNet"
@@ -6713,7 +7396,7 @@ msgstr "Ліцензія програмного забезпечення StatusN
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6723,7 +7406,7 @@ msgstr ""
"site.broughtbyurl%%)."
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** — це сервіс мікроблоґів."
@@ -6732,7 +7415,7 @@ msgstr "**%%site.name%%** — це сервіс мікроблоґів."
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6744,51 +7427,51 @@ msgstr ""
"License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "Ліцензія змісту сайту"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "Зміст і дані %1$s є приватними і конфіденційними."
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr "Авторські права на зміст і дані належать %1$s. Всі права захищено."
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr ""
"Авторські права на зміст і дані належать розробникам. Всі права захищено."
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "Весь зміст і дані %1$s доступні на умовах ліцензії %2$s."
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "Нумерація сторінок"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "Вперед"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "Назад"
@@ -6798,10 +7481,78 @@ msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
"В очікуванні кореневого елементу веб-стрічки, отримали цілий документ XML."
-#: lib/activity.php:360
-#, fuzzy
-msgid "Post"
-msgstr "Фото"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Невідоме дієслово: «%s»."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr "Примусова підписка ненадійних користувачів є неможливою."
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr "Примусова підписка віддалених користувачів є неможливою."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr "Невідомий профіль."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr "Ця активність, здається, не пов’язана з нашим користувачем."
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr "Віддалений профіль не є спільнотою!"
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr "Користувач вже є учасником цієї спільноти."
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr "Вже відомо про допис %1$s, який належить іншому авторові %2$s."
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+"Не можу перезаписати інформацію щодо авторства для ненадійного користувача."
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr "Допис %s не має змісту."
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "Користувача %s немає."
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s %2$s %3$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6873,7 +7624,7 @@ msgid "User configuration"
msgstr "Конфігурація користувача"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "Користувач"
@@ -6919,19 +7670,23 @@ msgstr ""
msgid "No application for that consumer key."
msgstr "Немає додатків для даного споживчого ключа."
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "Токен погодження невірний."
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "Немає користувача для цього токену."
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "Не вдалося автентифікувати вас."
@@ -6952,27 +7707,30 @@ msgid ""
msgstr "Не вдалося знайти профіль і додаток, пов’язаний з токеном запиту."
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "Не вдалося видати токен доступу."
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "Помилка бази даних при додаванні користувача OAuth-додатку."
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr "Помилка бази даних при додаванні користувача OAuth-додатку."
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "Спроба скасувати невідомий токен."
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "Не вдалося видалити скасований токен."
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "Іконка для цього додатку"
@@ -7085,17 +7843,22 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Відкликати"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
-msgstr "елемент author повинен містити елемент name."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
+msgstr "Елемент author повинен містити елемент name."
+
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr "Не видаляти цей метод!"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "Автор"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "Провайдер"
@@ -7124,6 +7887,11 @@ msgstr "Змінювати пароль не дозволено."
msgid "Block"
msgstr "Блок"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "Блокувати користувача"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7237,7 +8005,7 @@ msgstr "Повне ім’я: %s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "Розташування: %s"
@@ -7245,7 +8013,7 @@ msgstr "Розташування: %s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "Веб-сторінка: %s"
@@ -7527,24 +8295,24 @@ msgstr ""
"tracking — наразі не виконується\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "Файл конфігурації не знайдено."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "Пошук файлів конфігурації проводився тут:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "Запустіть файл інсталяції, аби полагодити це."
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "Іти до файлу інсталяції."
@@ -7585,14 +8353,19 @@ msgstr "Авторизовані під’єднані додатки"
msgid "Database error"
msgstr "Помилка бази даних"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "Видалити цього користувача"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "Завантажити файл"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
@@ -7611,25 +8384,72 @@ msgctxt "RADIO"
msgid "Off"
msgstr "Вимк."
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "Скинути"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "Змінити кольори"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "За замовч."
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "Оновити налаштування за замовчуванням"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "Повернутись до початкових налаштувань"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "Зберегти дизайн"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "Не вдалося оновити дизайн."
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "Дизайн за замовчуванням відновлено."
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr "Не вдається знайти послуги для %s."
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "Видалити з обраних"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "Видалити з обраних"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "Позначити як обране"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "Обрати"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7646,6 +8466,18 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr "Не є стрічкою у форматі Atom."
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr "Немає автора в цій стрічці."
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr "Неможливо імпортувати без користувача."
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7680,20 +8512,20 @@ msgstr "Вперед"
msgid "Grant this user the \"%s\" role"
msgstr "Надати цьому користувачеві роль «%s»"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
"1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "URL-адреса веб-сторінки або тематичного блоґу спільноти"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "Опишіть спільноту або тему"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
@@ -7701,13 +8533,13 @@ msgstr[0] "Опишіть спільноту або тему, вкладаючи
msgstr[1] "Опишіть спільноту або тему, вкладаючись у %d знаків"
msgstr[2] "Опишіть спільноту або тему, вкладаючись у %d знаків"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr ""
"Розташування спільноти, на кшталт «Місто, область (або регіон), країна»."
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7819,40 +8651,41 @@ msgstr "Теґи у дописах спільноти %s"
msgid "This page is not available in a media type you accept"
msgstr "Ця сторінка не доступна для того типу медіа, з яким ви погодились"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "Формат зображення не підтримується."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "Цей файл завеликий. Максимальний розмір %s."
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "Часткове завантаження."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Система відповіла помилкою при завантаженні цього файла."
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "Це не зображення, або файл зіпсовано."
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "Файл втрачено."
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "Тип файлу не підтримується"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
@@ -7861,7 +8694,7 @@ msgstr[1] "%d Мб"
msgstr[2] "%d Мб"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
@@ -7870,7 +8703,7 @@ msgstr[1] "%d кб"
msgstr[2] "%d кб"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7892,23 +8725,25 @@ msgstr "Невідоме джерело вхідного повідомленн
msgid "Leave"
msgstr "Залишити"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "Увійти використовуючи ім’я та пароль"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "Зареєструвати новий акаунт"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "Підтвердження електронної адреси"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7939,14 +8774,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s тепер слідкує за вашими дописами на %2$s."
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7961,7 +8796,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7988,14 +8823,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "Про себе: %s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "Нова електронна адреса для надсилання повідомлень на %s"
@@ -8003,7 +8838,7 @@ msgstr "Нова електронна адреса для надсилання
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -8026,19 +8861,19 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s статус"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "Підтвердження СМС"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr ""
@@ -8047,15 +8882,15 @@ msgstr ""
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
+msgid "You have been nudged by %s"
msgstr "Вас спробував «розштовхати» %s"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -8084,7 +8919,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "Нове приватне повідомлення від %s"
@@ -8093,7 +8928,7 @@ msgstr "Нове приватне повідомлення від %s"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -8128,7 +8963,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) додав(ла) ваш допис обраних"
@@ -8138,7 +8973,7 @@ msgstr "%1$s (@%2$s) додав(ла) ваш допис обраних"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -8176,7 +9011,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -8189,7 +9024,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) пропонує до вашої уваги наступний допис"
@@ -8200,7 +9035,7 @@ msgstr "%1$s (@%2$s) пропонує до вашої уваги наступн
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -8249,12 +9084,12 @@ msgstr ""
"\n"
"P.S. Ви можете вимкнути сповіщення електронною поштою тут: %8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr ""
"Лише користувач має можливість переглядати свою власну поштову скриньку."
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8263,10 +9098,6 @@ msgstr ""
"повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите "
"лише ви."
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "з"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "Не можна розібрати повідомлення."
@@ -8294,40 +9125,6 @@ msgstr "Формат повідомлення не підтримується: %
msgid "There was a database error while saving your file. Please try again."
msgstr "Виникла помилка під час завантаження вашого файлу. Спробуйте ще."
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Завантажений файл перевищив UPLOAD_MAX_FILESIZE вказаний у php.ini."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Завантажений файл перевищив MAX_FILE_SIZE котрий було встановлено для форми "
-"HTML."
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "Файл було завантажено частково."
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "Загублено тимчасову теку."
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "Запис файлу на диск скасовано."
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "Завантаження файлу зупинено розширенням."
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8348,7 +9145,7 @@ msgstr "Не вдається визначити MIME-тип файлу."
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8359,7 +9156,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "Тип файлів «%s» тепер не підтримується на даному сервері."
@@ -8391,20 +9188,28 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "Так"
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr "Повідомлення"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "з"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"Ім’я користувача повинно складатись з літер нижнього регістру і цифр, ніяких "
"інтервалів."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "Псевдонім не може бути порожнім."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8421,11 +9226,11 @@ msgstr "Надіслати допис"
msgid "What's up, %s?"
msgstr "Що нового, %s?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "Вкласти"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "Вкласти файл"
@@ -8446,55 +9251,59 @@ msgstr ""
"ніж очікувалось; будь ласка, спробуйте пізніше"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "Півн."
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "Півд."
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "Сх."
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "Зах."
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "в"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "вебу"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "у контексті"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "Повторено"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Відповісти на цей допис"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Відповісти"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "Видалити допис"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Допис повторили"
@@ -8531,77 +9340,108 @@ msgstr "Дублікат допису."
msgid "Couldn't insert new subscription."
msgstr "Не вдалося додати нову підписку."
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "Особисте"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+msgctxt "MENU"
msgid "Replies"
msgstr "Відповіді"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+msgctxt "MENU"
+msgid "Profile"
+msgstr "Профіль"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
msgid "Favorites"
msgstr "Обрані"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr "Вхідні"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "Ваші вхідні повідомлення"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
msgid "Outbox"
msgstr "Вихідні"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "Надіслані вами повідомлення"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "Теґи у дописах %s"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "Невідомо"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "Підписки"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "Всі підписки"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "Підписані"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "Всі підписані"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "Ід. номер"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "Реєстрація"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "Спільноти"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "Щоденно"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "Всі спільноти"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "Метод не виконується."
@@ -8648,7 +9488,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Відкликати роль «%s» для цього користувача"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "Сторінку не знайдено."
@@ -8738,6 +9578,10 @@ msgstr "Запросити"
msgid "Invite friends and colleagues to join you on %s"
msgstr "Запросіть друзів та колег приєднатись до вас на %s"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "Підписатись до цього користувача"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8858,64 +9702,81 @@ msgstr "Відписатись"
msgid "User %1$s (%2$d) has no profile record."
msgstr "Користувач %1$s (%2$d) не має профілю."
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "Аватара"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "Діяльність користувача"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "Видалення користувача у процесі..."
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "Налаштування профілю"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "Правка"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "Надіслати пряме повідомлення цьому користувачеві"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "Повідомлення"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "Модерувати"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "Роль користувача"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "Адміністратор"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "Модератор"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "Не увійшли."
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "мить тому"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "хвилину тому"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@@ -8924,12 +9785,12 @@ msgstr[1] "близько %d хвилин тому"
msgstr[2] "близько %d хвилин тому"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "годину тому"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@@ -8938,12 +9799,12 @@ msgstr[1] "близько %d годин тому"
msgstr[2] "близько %d годин тому"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "день тому"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@@ -8952,12 +9813,12 @@ msgstr[1] "близько %d днів тому"
msgstr[2] "близько %d днів тому"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "місяць тому"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@@ -8966,18 +9827,13 @@ msgstr[1] "близько %d місяців тому"
msgstr[2] "близько %d місяців тому"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "близько року тому"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s є неприпустимим кольором!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s є неприпустимим кольором! Використайте 3 або 6 знаків (HEX-формат)"
@@ -9006,33 +9862,17 @@ msgstr[2] ""
"надсилаєте %2$d."
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "Непрацездатний XML."
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
msgstr "Неправильний XML, корінь XRD відсутній."
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Отримання резервної копії файлу «%s»."
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr ""
-"Користувача не зазначено; для створення резервної копії потрібно зазначити "
-"користувача."
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "У резервному файлі збережено %d допис."
-msgstr[1] "У резервному файлі збережено %d дописів."
-msgstr[2] "У резервному файлі збережено %d дописів."
diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po
index 2a50598415..87c85f17ae 100644
--- a/locale/vi/LC_MESSAGES/statusnet.po
+++ b/locale/vi/LC_MESSAGES/statusnet.po
@@ -9,17 +9,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:20+0000\n"
+"POT-Creation-Date: 2011-01-14 23:32+0000\n"
+"PO-Revision-Date: 2011-01-14 23:35:26+0000\n"
"Language-Team: Vietnamese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: vi\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -273,7 +273,7 @@ msgstr "Dòng tin nhắn cho %s"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -320,7 +320,8 @@ msgstr "Không thể cập nhật thành viên."
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
+#: actions/apiaccountupdateprofileimage.php:130
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
#: lib/profileaction.php:84
@@ -556,7 +557,7 @@ msgstr "Không thể cập nhật thành viên."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
+#: actions/newgroup.php:136 actions/profilesettings.php:277
#: actions/register.php:214
msgid "Nickname already in use. Try another one."
msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
@@ -566,7 +567,7 @@ msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
+#: actions/newgroup.php:140 actions/profilesettings.php:247
#: actions/register.php:216
msgid "Not a valid nickname."
msgstr "Biệt hiệu không hợp lệ."
@@ -578,7 +579,7 @@ msgstr "Biệt hiệu không hợp lệ."
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:181 actions/editapplication.php:233
#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
+#: actions/newgroup.php:147 actions/profilesettings.php:252
#: actions/register.php:223
msgid "Homepage is not a valid URL."
msgstr "Trang chủ không phải là URL"
@@ -588,7 +589,7 @@ msgstr "Trang chủ không phải là URL"
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
+#: actions/newgroup.php:151 actions/profilesettings.php:256
#: actions/register.php:226
msgid "Full name is too long (maximum 255 characters)."
msgstr ""
@@ -603,7 +604,7 @@ msgstr ""
#. TRANS: %d is the maximum number of allowed characters.
#: actions/apigroupcreate.php:201 actions/editapplication.php:201
#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/newgroup.php:156
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -614,7 +615,7 @@ msgstr[0] ""
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
+#: actions/newgroup.php:163 actions/profilesettings.php:269
#: actions/register.php:235
msgid "Location is too long (maximum 255 characters)."
msgstr ""
@@ -626,7 +627,7 @@ msgstr ""
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/newgroup.php:176
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -644,7 +645,7 @@ msgstr "Địa chỉ email không đúng:%s"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#: actions/newgroup.php:191
#, fuzzy, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
@@ -653,7 +654,7 @@ msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác."
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/newgroup.php:198
msgid "Alias can't be the same as nickname."
msgstr ""
@@ -956,9 +957,10 @@ msgstr "Không thể xóa tin nhắn này."
msgid "Already repeated that notice."
msgstr "Không thể xóa tin nhắn này."
+#. TRANS: Client error shown when using a non-supported HTTP method.
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr ""
@@ -1044,7 +1046,7 @@ msgstr ""
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr ""
@@ -1135,30 +1137,30 @@ msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
msgstr ""
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
+#: actions/apitimelineuser.php:378
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Tìm theo nội dung của tin nhắn"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#: actions/apitimelineuser.php:406
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr ""
-#: actions/apitimelineuser.php:435
+#: actions/apitimelineuser.php:437
#, php-format
msgid "AtomPub post with unknown attention URI %s"
msgstr ""
@@ -1169,7 +1171,7 @@ msgid "API method under construction."
msgstr "Phương thức API dưới cấu trúc có sẵn."
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "Không tìm thấy user."
@@ -1278,21 +1280,26 @@ msgstr "Kết nối"
msgid "Can't delete someone else's membership"
msgstr ""
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
msgid "No such profile id: %d"
msgstr "Không có tin nhắn nào."
-#: actions/atompubshowsubscription.php:90
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
+msgid "Profile %1$d not subscribed to profile %2$d"
msgstr "Bạn đã theo những người này:"
-#: actions/atompubshowsubscription.php:154
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
#, fuzzy
-msgid "Can't delete someone else's subscription"
+msgid "Cannot delete someone else's subscription"
msgstr "Không thể chèn thêm vào đăng nhận."
#: actions/atompubsubscriptionfeed.php:150
@@ -1387,13 +1394,15 @@ msgid "Preview"
msgstr "Xem trước"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr ""
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr ""
@@ -1436,6 +1445,37 @@ msgstr "Cập nhật hình đại diện không thành công."
msgid "Avatar deleted."
msgstr "Hình đại diện đã được cập nhật."
+#: actions/backupaccount.php:62 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr ""
+
+#: actions/backupaccount.php:80
+msgid "Only logged-in users can backup their account."
+msgstr ""
+
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr ""
+
+#: actions/backupaccount.php:232
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and "
+"provides an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+
+#: actions/backupaccount.php:255
+#, fuzzy
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "Background Theme:"
+
+#: actions/backupaccount.php:258
+msgid "Backup your account"
+msgstr ""
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
#, fuzzy
@@ -1643,6 +1683,76 @@ msgstr "Thành phố"
msgid "Notices"
msgstr "Tin nhắn"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr ""
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+#, fuzzy
+msgid "You cannot delete your account."
+msgstr "Không thể cập nhật thành viên."
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr ""
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr ""
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+#, fuzzy
+msgid "Account deleted."
+msgstr "Hình đại diện đã được cập nhật."
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:474
+#, fuzzy
+msgid "Delete account"
+msgstr "Mở tài khoản mới"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr ""
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr ""
+
+#. TRANS: Field label for delete account confirmation entry.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:239 actions/register.php:441
+msgid "Confirm"
+msgstr "Xác nhận"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, fuzzy, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "Không thể cập nhật thành viên."
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+#, fuzzy
+msgid "Permanently delete your account"
+msgstr "Không thể cập nhật thành viên."
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
#, fuzzy
@@ -1792,7 +1902,7 @@ msgid "Do not delete this notice"
msgstr "Không thể xóa tin nhắn này."
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
+#: actions/deletenotice.php:166 lib/noticelist.php:673
#, fuzzy
msgid "Delete this notice"
msgstr "Xóa tin nhắn"
@@ -2121,7 +2231,7 @@ msgstr ""
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#: actions/editgroup.php:239 actions/newgroup.php:186
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Địa chỉ email không đúng:%s"
@@ -2134,7 +2244,7 @@ msgstr "Không thể cập nhật thành viên."
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:279 classes/User_group.php:534
#, fuzzy
msgid "Could not create aliases."
msgstr "Không thể tạo favorite."
@@ -3395,8 +3505,14 @@ msgstr "Không thể tạo favorite."
msgid "New group"
msgstr "Tạo nhóm"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+#, fuzzy
+msgid "You are not allowed to create groups on this site."
+msgstr "Bạn đã theo những người này:"
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr ""
@@ -3721,11 +3837,6 @@ msgstr "Mật khẩu mới"
msgid "6 or more characters"
msgstr "Nhiều hơn 6 ký tự"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "Xác nhận"
-
#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
msgid "Same as password above"
msgstr "Cùng mật khẩu ở trên"
@@ -4251,6 +4362,12 @@ msgstr "Không thể lưu hồ sơ cá nhân."
msgid "Settings saved."
msgstr "Đã lưu các điều chỉnh."
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:481 actions/restoreaccount.php:60
+#, fuzzy
+msgid "Restore account"
+msgstr "Mở tài khoản mới"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4707,7 +4824,7 @@ msgstr "Bạn không thể đăng ký nếu không đồng ý các điều kho
msgid "You already repeated that notice."
msgstr "Bạn đã theo những người này:"
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:114 lib/noticelist.php:692
msgid "Repeated"
msgstr "Khởi tạo"
@@ -4768,6 +4885,92 @@ msgstr ""
msgid "Replies to %1$s on %2$s!"
msgstr "%s chào mừng bạn "
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr ""
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+#, fuzzy
+msgid "You may not restore your account."
+msgstr "Bạn không thể đăng ký nếu không đồng ý các điều khoản."
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+#, fuzzy
+msgid "No uploaded file."
+msgstr "Tải tập tin lên"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr ""
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr ""
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:103 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "Hệ thống xảy ra lỗi trong khi tải file."
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+#, fuzzy
+msgid "Not an Atom feed."
+msgstr "Thành viên"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr ""
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr ""
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+#, fuzzy
+msgid "Upload the file"
+msgstr "Tải tập tin lên"
+
#: actions/revokerole.php:75
#, fuzzy
msgid "You cannot revoke user roles on this site."
@@ -4877,7 +5080,7 @@ msgid "Reset key & secret"
msgstr ""
#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#: lib/deleteuserform.php:66 lib/noticelist.php:673
msgid "Delete"
msgstr "Xóa"
@@ -6133,14 +6336,14 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164 lib/favorform.php:143
#, fuzzy
msgid "Favor"
msgstr "Ưa thích"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr ""
@@ -6249,7 +6452,7 @@ msgid "Could not create login token for %s"
msgstr "Không thể tạo favorite."
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:537
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -6277,74 +6480,74 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "Lỗi xảy ra khi thêm mới hình đại diện"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
#, fuzzy
msgid "Problem saving notice. Too long."
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
#, fuzzy
msgid "Problem saving notice. Unknown user."
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr ""
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:914
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1013
#, fuzzy
msgid "Problem saving group inbox."
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1127
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1646
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6352,14 +6555,14 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:765
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:774
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@@ -6434,33 +6637,33 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "%s chào mừng bạn "
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr ""
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr ""
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:516
#, fuzzy
msgid "Could not create group."
msgstr "Không thể tạo favorite."
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:526
msgid "Could not set group URI."
msgstr "Không thể lưu hồ sơ cá nhân."
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:549
msgid "Could not set group membership."
msgstr "Không thể cập nhật thành viên."
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:564
msgid "Could not save local group info."
msgstr "Không thể lưu hồ sơ cá nhân."
@@ -6604,10 +6807,9 @@ msgstr "Thoát"
#. TRANS: Tooltip for main menu option "Register"
#: lib/action.php:577
-#, fuzzy
msgctxt "TOOLTIP"
msgid "Create an account"
-msgstr "Tạo tài khoản mới"
+msgstr "Mở tài khoản mới"
#. TRANS: Main menu option when not logged in to register a new account
#: lib/action.php:580
@@ -6816,10 +7018,57 @@ msgstr "Trước"
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
-#: lib/activity.php:360
-msgid "Post"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, fuzzy, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "Không hỗ trợ kiểu file ảnh này."
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
msgstr ""
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+#, fuzzy
+msgid "Cannot force remote user to subscribe."
+msgstr "Không thể cập nhật thành viên."
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+#, fuzzy
+msgid "Unknown profile."
+msgstr "Không hỗ trợ kiểu file ảnh này."
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+#, fuzzy
+msgid "User is already a member of this group."
+msgstr "Bạn chưa cập nhật thông tin riêng"
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, fuzzy, php-format
+msgid "No content for notice %s."
+msgstr "Tìm theo nội dung của tin nhắn"
+
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
msgid "Can't handle remote content yet."
@@ -7113,10 +7362,16 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "Khôi phục"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr ""
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+#, fuzzy
+msgid "Do not use this method!"
+msgstr "Không thể xóa tin nhắn này."
+
#. TRANS: DT element label in attachment list item.
#: lib/attachmentlist.php:294
msgid "Author"
@@ -7507,24 +7762,24 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:150
msgid "No configuration file found."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:153
msgid "I looked for configuration files in the following places:"
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:156
msgid "You may wish to run the installer to fix this."
msgstr ""
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:160
msgid "Go to the installer."
msgstr ""
@@ -7627,6 +7882,19 @@ msgstr ""
msgid "FOAF"
msgstr ""
+#: lib/feedimporter.php:75
+#, fuzzy
+msgid "Not an atom feed."
+msgstr "Thành viên"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr ""
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr ""
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7809,11 +8077,6 @@ msgstr ""
msgid "Partial upload."
msgstr "Upload từng phần."
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "Hệ thống xảy ra lỗi trong khi tải file."
-
#: lib/imagefile.php:111
msgid "Not an image or corrupt file."
msgstr "File hỏng hoặc không phải là file ảnh."
@@ -8158,7 +8421,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only."
msgstr ""
-#: lib/mailbox.php:228 lib/noticelist.php:521
+#: lib/mailbox.php:228 lib/noticelist.php:522
#, fuzzy
msgid "from"
msgstr " từ "
@@ -8190,38 +8453,6 @@ msgstr "Không hỗ trợ kiểu file ảnh này."
msgid "There was a database error while saving your file. Please try again."
msgstr ""
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr ""
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr ""
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr ""
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8243,7 +8474,7 @@ msgstr "Không thể lấy lại các tin nhắn ưa thích"
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8252,7 +8483,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr ""
@@ -8288,17 +8519,17 @@ msgid "Send"
msgstr "Gửi"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "Biệt hiệu phải là chữ viết thường hoặc số và không có khoảng trắng."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8339,58 +8570,58 @@ msgid ""
msgstr ""
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
#, fuzzy
msgid "N"
msgstr "Không"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr ""
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr ""
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr ""
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr ""
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr ""
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
#, fuzzy
msgid "in context"
msgstr "Không có nội dung!"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
#, fuzzy
msgid "Repeated by"
msgstr "Tạo"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "Không thể xóa tin nhắn này."
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "Trả lời"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "Tìm kiếm thông báo"
@@ -8553,7 +8784,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "Ban user"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr ""
@@ -8911,19 +9142,7 @@ msgid "Invalid XML, missing XRD root."
msgstr ""
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr ""
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] ""
diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po
index 30b5f63bd7..52f657227f 100644
--- a/locale/zh_CN/LC_MESSAGES/statusnet.po
+++ b/locale/zh_CN/LC_MESSAGES/statusnet.po
@@ -1,8 +1,9 @@
# Translation of StatusNet - Core to Simplified Chinese (中文(简体))
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Brion
# Author: Chenxiaoqino
+# Author: Hydra
# Author: Shizhao
# Author: Sweeite012f
# Author: Tommyang
@@ -14,18 +15,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:21+0000\n"
+"POT-Creation-Date: 2011-02-24 10:32+0000\n"
+"PO-Revision-Date: 2011-02-24 10:37:50+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-Generator: MediaWiki 1.18alpha (r82712); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
+"X-POT-Import-Date: 2011-02-17 11:39:54+0000\n"
#. TRANS: Page title for Access admin panel that allows configuring site access.
#. TRANS: Menu item for site administration
@@ -80,8 +81,9 @@ msgid "Save access settings"
msgstr "保存访问设置"
#. TRANS: Tooltip for button to save access settings in site admin panel.
+#. TRANS: Button text for saving theme settings.
#. TRANS: Button label to save e-mail preferences.
-#. TRANS: Button label to save IM preferences.
+#. TRANS: Button label to save Instant Messaging preferences.
#. TRANS: Button text for saving "Other settings" in profile.
#. TRANS: Button text to store form data in the Paths admin panel.
#. TRANS: Button to save input in profile settings.
@@ -91,13 +93,13 @@ msgstr "保存访问设置"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
-#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
-#: actions/imsettings.php:187 actions/othersettings.php:134
-#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
-#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
-#: actions/subscriptions.php:262 actions/useradminpanel.php:298
-#: lib/applicationeditform.php:355 lib/designsettings.php:270
-#: lib/groupeditform.php:207
+#: actions/accessadminpanel.php:193 actions/designadminpanel.php:732
+#: actions/emailsettings.php:250 actions/imsettings.php:183
+#: actions/othersettings.php:136 actions/pathsadminpanel.php:512
+#: actions/profilesettings.php:197 actions/sitenoticeadminpanel.php:197
+#: actions/smssettings.php:205 actions/subscriptions.php:259
+#: actions/useradminpanel.php:298 lib/applicationeditform.php:355
+#: lib/designsettings.php:270 lib/groupeditform.php:201
msgctxt "BUTTON"
msgid "Save"
msgstr "保存"
@@ -105,7 +107,7 @@ msgstr "保存"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#: actions/all.php:68 actions/public.php:98 actions/replies.php:93
-#: actions/showfavorites.php:138 actions/tag.php:52
+#: actions/showfavorites.php:140 actions/tag.php:52
msgid "No such page."
msgstr "没有这个页面。"
@@ -115,6 +117,8 @@ msgstr "没有这个页面。"
#. TRANS: Client error displayed if a user could not be found.
#. TRANS: Client error when user not found updating a profile background image.
#. TRANS: Client error displayed updating profile image without having a user object.
+#. TRANS: Client error displayed when making an Atom API request for an unknown user.
+#. TRANS: Client error displayed when trying to block a non-existing user or a user from another site.
#. TRANS: Client error when user not found for an API action to remove a block for a user.
#. TRANS: Client error given when a user was not found (404).
#. TRANS: Client error when user not found for an API direct message action.
@@ -130,13 +134,23 @@ msgstr "没有这个页面。"
#. TRANS: Client error displayed when requesting most recent mentions for a non-existing user.
#. TRANS: Client error displayed requesting most recent notices for a non-existing user.
#. TRANS: Client error displayed trying to get an avatar for a non-existing user.
+#. TRANS: Client error displayed when trying to get the RSS feed with favorites of a user that does not exist.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a user nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for an object that is not a user.
+#. TRANS: Client error displayed when trying to get a user hCard for a non-existing user.
+#. TRANS: Client error displayed trying to use "one time password login" without using an existing user.
+#. TRANS: Client error displayed when providing a non-existing nickname in a RSS 1.0 action.
+#. TRANS: Client error displayed when trying to display favourite notices for a non-existing user.
+#. TRANS: Client error displayed trying to find a user by ID for a non-existing ID.
+#. TRANS: Client error displayed providing a non-existing nickname.
#. TRANS: Error text shown when trying to send a direct message to a user that does not exist.
+#. TRANS: Client error displayed when calling a profile action without specifying a user.
#: actions/all.php:80 actions/allrss.php:69
#: actions/apiaccountupdatedeliverydevice.php:110
#: actions/apiaccountupdateprofile.php:103
#: actions/apiaccountupdateprofilebackgroundimage.php:118
-#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:60
-#: actions/apiblockcreate.php:95 actions/apiblockdestroy.php:94
+#: actions/apiaccountupdateprofileimage.php:104 actions/apiatomservice.php:59
+#: actions/apiblockcreate.php:96 actions/apiblockdestroy.php:94
#: actions/apidirectmessage.php:75 actions/apidirectmessagenew.php:72
#: actions/apigroupcreate.php:111 actions/apigroupismember.php:89
#: actions/apigroupjoin.php:98 actions/apigroupleave.php:98
@@ -144,15 +158,15 @@ msgstr "没有这个页面。"
#: actions/apisubscriptions.php:85 actions/apitimelinefavorites.php:70
#: actions/apitimelinefriends.php:173 actions/apitimelinehome.php:78
#: actions/apitimelinementions.php:77 actions/apitimelineuser.php:79
-#: actions/avatarbynickname.php:79 actions/favoritesrss.php:74
-#: actions/foaf.php:40 actions/foaf.php:58 actions/hcard.php:67
-#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:76
-#: actions/remotesubscribe.php:145 actions/remotesubscribe.php:154
-#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:116
-#: actions/showfavorites.php:105 actions/userbyid.php:74
+#: actions/avatarbynickname.php:79 actions/favoritesrss.php:72
+#: actions/foaf.php:42 actions/foaf.php:61 actions/hcard.php:67
+#: actions/microsummary.php:62 actions/newmessage.php:116 actions/otp.php:78
+#: actions/remotesubscribe.php:144 actions/remotesubscribe.php:153
+#: actions/replies.php:73 actions/repliesrss.php:38 actions/rsd.php:113
+#: actions/showfavorites.php:106 actions/userbyid.php:75
#: actions/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59
#: actions/xrds.php:71 lib/command.php:497 lib/galleryaction.php:59
-#: lib/mailbox.php:82 lib/profileaction.php:77
+#: lib/mailbox.php:80 lib/profileaction.php:77
msgid "No such user."
msgstr "没有这个用户。"
@@ -166,9 +180,10 @@ msgstr "%1$s 和好友,第%2$d页"
#. TRANS: H1 text for page. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Timeline title for user and friends. %s is a user nickname.
+#. TRANS: Tooltop for personal group navigation menu option when logged in for viewing timeline of self and friends.
#: actions/all.php:94 actions/all.php:191 actions/allrss.php:117
#: actions/apitimelinefriends.php:207 actions/apitimelinehome.php:113
-#: lib/personalgroupnav.php:103
+#: lib/personalgroupnav.php:102
#, php-format
msgid "%s and friends"
msgstr "%s 和好友们"
@@ -279,7 +294,7 @@ msgstr "%2$s上%1$s和好友们的更新!"
#: actions/apistatusesshow.php:105 actions/apistatusnetconfig.php:138
#: actions/apistatusnetversion.php:91 actions/apisubscriptions.php:109
#: actions/apitimelinefavorites.php:174 actions/apitimelinefriends.php:268
-#: actions/apitimelinegroup.php:151 actions/apitimelinehome.php:173
+#: actions/apitimelinegroup.php:147 actions/apitimelinehome.php:173
#: actions/apitimelinementions.php:174 actions/apitimelinepublic.php:239
#: actions/apitimelineretweetedtome.php:118
#: actions/apitimelineretweetsofme.php:150 actions/apitimelinetag.php:159
@@ -312,7 +327,21 @@ msgstr ""
"你必须指定一个名为'device'的参数,值可以是以下中的一个:sms, im, none。"
#. TRANS: Server error displayed when a user's delivery device cannot be updated.
+#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
+#. TRANS: Server error thrown on database error updating e-mail preferences.
+#. TRANS: Server error thrown on database error removing a registered e-mail address.
+#. TRANS: Server error thrown on database error updating Instant Messaging preferences.
+#. TRANS: Server error thrown on database error removing a registered Instant Messaging address.
+#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
+#. TRANS: Server error thrown when user profile settings could not be updated.
+#. TRANS: Server error thrown on database error updating SMS preferences.
+#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/apiaccountupdatedeliverydevice.php:130
+#: actions/confirmaddress.php:118 actions/emailsettings.php:352
+#: actions/emailsettings.php:498 actions/imsettings.php:276
+#: actions/imsettings.php:432 actions/othersettings.php:186
+#: actions/profilesettings.php:322 actions/smssettings.php:301
+#: actions/smssettings.php:454
msgid "Could not update user."
msgstr "无法更新用户。"
@@ -322,18 +351,23 @@ msgstr "无法更新用户。"
#. TRANS: Client error displayed if a user profile could not be found updating a profile image.
#. TRANS: Client error displayed when requesting user information for a user without a profile.
#. TRANS: Client error displayed trying to get an avatar for a user without a profile.
+#. TRANS: Server error displayed when requesting Friends of a Friend feed for a user for which the profile could not be found.
+#. TRANS: Server error displayed when trying to get a user hCard for a user without a profile.
+#. TRANS: Server error displayed when calling a profile action while the specified user does not have a profile.
#: actions/apiaccountupdateprofile.php:111
#: actions/apiaccountupdateprofilebackgroundimage.php:199
#: actions/apiaccountupdateprofilecolors.php:183
-#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108
-#: actions/avatarbynickname.php:85 actions/foaf.php:65 actions/hcard.php:74
+#: actions/apiaccountupdateprofileimage.php:131
+#: actions/apiuserprofileimage.php:88 actions/apiusershow.php:108
+#: actions/avatarbynickname.php:85 actions/foaf.php:69 actions/hcard.php:75
#: actions/replies.php:80 actions/usergroups.php:100 lib/galleryaction.php:66
-#: lib/profileaction.php:84
+#: lib/profileaction.php:85
msgid "User has no profile."
msgstr "用户没有个人信息。"
#. TRANS: Server error displayed if a user profile could not be saved.
-#: actions/apiaccountupdateprofile.php:147
+#. TRANS: Server error thrown when user profile settings could not be saved.
+#: actions/apiaccountupdateprofile.php:147 actions/profilesettings.php:418
msgid "Could not save profile."
msgstr "无法保存个人信息。"
@@ -343,8 +377,8 @@ msgstr "无法保存个人信息。"
#: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:95 actions/apimediaupload.php:81
#: actions/apistatusesupdate.php:210 actions/avatarsettings.php:269
-#: actions/designadminpanel.php:125 actions/editapplication.php:121
-#: actions/newapplication.php:104 actions/newnotice.php:95
+#: actions/designadminpanel.php:120 actions/editapplication.php:121
+#: actions/newapplication.php:102 actions/newnotice.php:95
#: lib/designsettings.php:298
#, php-format
msgid ""
@@ -359,13 +393,14 @@ msgstr[0] "服务器当前的设置无法处理这么多的 POST 数据(%s byt
#. TRANS: Client error displayed when saving design settings fails because of an empty result.
#. TRANS: Client error displayed when a database error occurs inserting profile colours.
#. TRANS: Client error displayed when a database error occurs updating profile colours.
+#. TRANS: Form validation error displayed when group design settings could not be saved because of an application issue.
#: actions/apiaccountupdateprofilebackgroundimage.php:138
#: actions/apiaccountupdateprofilebackgroundimage.php:149
#: actions/apiaccountupdateprofilecolors.php:160
#: actions/apiaccountupdateprofilecolors.php:171
-#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300
-#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
-#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
+#: actions/groupdesignsettings.php:285 actions/groupdesignsettings.php:296
+#: actions/userdesignsettings.php:201 actions/userdesignsettings.php:211
+#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263
msgid "Unable to save your design settings."
msgstr "无法保存你的外观设置。"
@@ -373,48 +408,59 @@ msgstr "无法保存你的外观设置。"
#. TRANS: Client error displayed when a database error occurs updating profile colours.
#: actions/apiaccountupdateprofilebackgroundimage.php:191
#: actions/apiaccountupdateprofilecolors.php:139
+#: actions/userdesignsettings.php:179
msgid "Could not update your design."
msgstr "无法更新你的外观。"
-#: actions/apiatomservice.php:86
+#. TRANS: Title for Atom feed.
+#: actions/apiatomservice.php:85
+msgctxt "ATOM"
msgid "Main"
-msgstr "首页"
+msgstr "主要"
+#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
-#: actions/apiatomservice.php:93 actions/grouprss.php:139
+#: actions/apiatomservice.php:93 actions/grouprss.php:138
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
-#: lib/atomusernoticefeed.php:68
+#: lib/atomusernoticefeed.php:88
#, php-format
msgid "%s timeline"
msgstr "%s的时间线"
+#. TRANS: Title for Atom feed with a user's subscriptions. %s is a user nickname.
+#. TRANS: Title for Atom subscription feed.
+#. TRANS: %s is a user nickname.
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
-#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
+#: actions/apiatomservice.php:104 actions/atompubsubscriptionfeed.php:148
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr "%s 关注的用户"
-#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's favorite notices. %s is a user nickname.
+#. TRANS: Title for Atom favorites feed.
+#. TRANS: %s is a user nickname.
+#: actions/apiatomservice.php:115 actions/atompubfavoritefeed.php:142
+#, php-format
msgid "%s favorites"
-msgstr "收藏夹"
+msgstr "%s 收藏夹"
-#: actions/apiatomservice.php:123
-#, fuzzy, php-format
+#. TRANS: Title for Atom feed with a user's memberships. %s is a user nickname.
+#: actions/apiatomservice.php:126
+#, php-format
msgid "%s memberships"
-msgstr "%s 的小组成员"
+msgstr "%s 的成员身份"
#. TRANS: Client error displayed when users try to block themselves.
-#: actions/apiblockcreate.php:104
+#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "你不能屏蔽自己!"
#. TRANS: Server error displayed when blocking a user has failed.
-#: actions/apiblockcreate.php:126
+#: actions/apiblockcreate.php:127
msgid "Block user failed."
msgstr "屏蔽用户失败。"
@@ -469,8 +515,8 @@ msgstr "未找到收件人。"
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
#: actions/apidirectmessagenew.php:144
-msgid "Can't send direct messages to users who aren't your friend."
-msgstr "不能给未成为好友的用户发送私信。"
+msgid "Cannot send direct messages to users who aren't your friend."
+msgstr "不能将直接邮件发送到用户的不是你的朋友。"
#. TRANS: Client error displayed trying to direct message self (403).
#: actions/apidirectmessagenew.php:154
@@ -492,8 +538,9 @@ msgid "This status is already a favorite."
msgstr "已收藏过此消息。"
#. TRANS: Client error displayed when marking a notice as favourite fails.
+#. TRANS: Server error displayed when trying to mark a notice as favorite fails in the database.
#. TRANS: Error message text shown when a favorite could not be set.
-#: actions/apifavoritecreate.php:132 actions/favor.php:84 lib/command.php:294
+#: actions/apifavoritecreate.php:132 actions/favor.php:86 lib/command.php:294
msgid "Could not create favorite."
msgstr "无法创建收藏。"
@@ -503,7 +550,8 @@ msgid "That status is not a favorite."
msgstr "此消息未被收藏。"
#. TRANS: Client error displayed when removing a favourite has failed.
-#: actions/apifavoritedestroy.php:135 actions/disfavor.php:87
+#. TRANS: Server error displayed when removing a favorite from the database fails.
+#: actions/apifavoritedestroy.php:135 actions/disfavor.php:90
msgid "Could not delete favorite."
msgstr "无法删除收藏。"
@@ -548,9 +596,9 @@ msgstr "无法找到目标用户。"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:156 actions/editgroup.php:189
-#: actions/newgroup.php:129 actions/profilesettings.php:277
-#: actions/register.php:214
+#: actions/apigroupcreate.php:156 actions/editgroup.php:191
+#: actions/newgroup.php:137 actions/profilesettings.php:273
+#: actions/register.php:206
msgid "Nickname already in use. Try another one."
msgstr "昵称已被使用,换一个吧。"
@@ -558,21 +606,22 @@ msgstr "昵称已被使用,换一个吧。"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:164 actions/editgroup.php:193
-#: actions/newgroup.php:133 actions/profilesettings.php:247
-#: actions/register.php:216
+#: actions/apigroupcreate.php:164 actions/editgroup.php:195
+#: actions/newgroup.php:141 actions/profilesettings.php:243
+#: actions/register.php:208
msgid "Not a valid nickname."
msgstr "不是有效的昵称。"
#. TRANS: Client error in form for group creation.
#. TRANS: Validation error shown when providing an invalid homepage URL in the "Edit application" form.
#. TRANS: Group edit form validation error.
+#. TRANS: Validation error shown when providing an invalid homepage URL in the "New application" form.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:181 actions/editapplication.php:233
-#: actions/editgroup.php:200 actions/newapplication.php:211
-#: actions/newgroup.php:140 actions/profilesettings.php:252
-#: actions/register.php:223
+#: actions/apigroupcreate.php:181 actions/editapplication.php:235
+#: actions/editgroup.php:202 actions/newapplication.php:221
+#: actions/newgroup.php:148 actions/profilesettings.php:248
+#: actions/register.php:215
msgid "Homepage is not a valid URL."
msgstr "主页的URL不正确。"
@@ -580,23 +629,24 @@ msgstr "主页的URL不正确。"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:191 actions/editgroup.php:204
-#: actions/newgroup.php:144 actions/profilesettings.php:256
-#: actions/register.php:226
+#: actions/apigroupcreate.php:191 actions/editgroup.php:206
+#: actions/newgroup.php:152 actions/profilesettings.php:252
+#: actions/register.php:218
msgid "Full name is too long (maximum 255 characters)."
msgstr "全名过长(不能超过 255 个字符)。"
#. TRANS: Client error shown when providing too long a description during group creation.
#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Validation error shown when providing too long a description in the "Edit application" form.
+#. TRANS: %d is the maximum number of allowed characters.
#. TRANS: Group edit form validation error.
#. TRANS: Form validation error in New application form.
#. TRANS: %d is the maximum number of characters for the description.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed characters.
-#: actions/apigroupcreate.php:201 actions/editapplication.php:201
-#: actions/editgroup.php:209 actions/newapplication.php:178
-#: actions/newgroup.php:149
+#: actions/apigroupcreate.php:201 actions/editapplication.php:202
+#: actions/editgroup.php:211 actions/newapplication.php:182
+#: actions/newgroup.php:157
#, php-format
msgid "Description is too long (maximum %d character)."
msgid_plural "Description is too long (maximum %d characters)."
@@ -606,9 +656,9 @@ msgstr[0] "D描述过长(不能超过%d 个字符)。"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
#. TRANS: Validation error in form for profile settings.
-#: actions/apigroupcreate.php:215 actions/editgroup.php:216
-#: actions/newgroup.php:156 actions/profilesettings.php:269
-#: actions/register.php:235
+#: actions/apigroupcreate.php:215 actions/editgroup.php:218
+#: actions/newgroup.php:164 actions/profilesettings.php:265
+#: actions/register.php:227
msgid "Location is too long (maximum 255 characters)."
msgstr "位置过长(不能超过255个字符)。"
@@ -618,8 +668,8 @@ msgstr "位置过长(不能超过255个字符)。"
#. TRANS: %d is the maximum number of allowed aliases.
#. TRANS: Group create form validation error.
#. TRANS: %d is the maximum number of allowed aliases.
-#: actions/apigroupcreate.php:236 actions/editgroup.php:229
-#: actions/newgroup.php:169
+#: actions/apigroupcreate.php:236 actions/editgroup.php:231
+#: actions/newgroup.php:177
#, php-format
msgid "Too many aliases! Maximum %d allowed."
msgid_plural "Too many aliases! Maximum %d allowed."
@@ -635,18 +685,16 @@ msgstr "无效的别名:“%s”。"
#. TRANS: Client error displayed when trying to use an alias during group creation that is already in use.
#. TRANS: %s is the alias that is already in use.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:264 actions/editgroup.php:244
-#: actions/newgroup.php:184
+#. TRANS: Group create form validation error. %s is the already used alias.
+#: actions/apigroupcreate.php:264 actions/editgroup.php:246
+#: actions/newgroup.php:193
#, php-format
msgid "Alias \"%s\" already in use. Try another one."
msgstr "%s这个别名已被使用,换一个吧。"
#. TRANS: Client error displayed when trying to use an alias during group creation that is the same as the group's nickname.
#. TRANS: Group edit form validation error.
-#. TRANS: Group create form validation error.
-#: actions/apigroupcreate.php:278 actions/editgroup.php:251
-#: actions/newgroup.php:191
+#: actions/apigroupcreate.php:278 actions/editgroup.php:253
msgid "Alias can't be the same as nickname."
msgstr "别名不能和昵称相同。"
@@ -657,28 +705,32 @@ msgstr "别名不能和昵称相同。"
#. TRANS: Client error displayed when trying to show a group that could not be found.
#. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group.
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
-#: actions/apigroupleave.php:104 actions/apigroupmembership.php:89
+#: actions/apigroupleave.php:104 actions/apigroupmembership.php:71
#: actions/apigroupshow.php:81 actions/apitimelinegroup.php:89
msgid "Group not found."
msgstr "小组未找到。"
#. TRANS: Server error displayed when trying to join a group the user is already a member of.
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown a user tries to join a group they already are a member of.
-#: actions/apigroupjoin.php:111 actions/joingroup.php:100 lib/command.php:333
+#: actions/apigroupjoin.php:111 actions/joingroup.php:103 lib/command.php:333
msgid "You are already a member of that group."
msgstr "你已经是该小组成员。"
#. TRANS: Server error displayed when trying to join a group the user is blocked from joining.
+#. TRANS: Client error displayed when trying to join a group while being blocked form joining it.
#. TRANS: Error text shown when a user tries to join a group they are blocked from joining.
-#: actions/apigroupjoin.php:121 actions/joingroup.php:105 lib/command.php:338
+#: actions/apigroupjoin.php:121 actions/joingroup.php:109 lib/command.php:338
msgid "You have been blocked from that group by the admin."
msgstr "你已经被管理员从该小组中屏蔽。"
#. TRANS: Server error displayed when joining a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when joining a group failed in the database.
+#. TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
#. TRANS: Message given having failed to add a user to a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupjoin.php:142 actions/joingroup.php:134 lib/command.php:350
+#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350
#, php-format
msgid "Could not join user %1$s to group %2$s."
msgstr "无法把用户%1$s添加到%2$s小组"
@@ -690,9 +742,11 @@ msgstr "你不是该小组成员。"
#. TRANS: Server error displayed when leaving a group fails.
#. TRANS: %1$s is a user nickname, $2$s is a group nickname.
+#. TRANS: Server error displayed when leaving a group failed in the database.
+#. TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
#. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
-#: actions/apigroupleave.php:127 actions/leavegroup.php:129
+#: actions/apigroupleave.php:127 actions/leavegroup.php:133
#: lib/command.php:398
#, php-format
msgid "Could not remove user %1$s from group %2$s."
@@ -729,7 +783,7 @@ msgid "Upload failed."
msgstr "上传失败"
#. TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
-#: actions/apioauthaccesstoken.php:101
+#: actions/apioauthaccesstoken.php:102
msgid "Invalid request token or verifier."
msgstr "无效的请求 token 或 verifier。"
@@ -749,20 +803,25 @@ msgid "Request token already authorized."
msgstr "请求 token 已被授权了。"
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
+#. TRANS: Client error displayed when the session token does not match or is not given.
+#. TRANS: Form validation error message.
+#. TRANS: Form validation error.
+#. TRANS: Form validation error message.
+#. TRANS: Client error displayed when the session token is not okay.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
-#: actions/deletenotice.php:177 actions/disfavor.php:74
-#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
-#: actions/groupblock.php:66 actions/grouplogo.php:312
-#: actions/groupunblock.php:65 actions/imsettings.php:230
-#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
+#: actions/deletenotice.php:177 actions/disfavor.php:75
+#: actions/emailsettings.php:291 actions/favor.php:75 actions/geocode.php:55
+#: actions/groupblock.php:65 actions/grouplogo.php:321
+#: actions/groupunblock.php:65 actions/imsettings.php:224
+#: actions/invite.php:60 actions/login.php:131 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:105 actions/nudge.php:80
-#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:138
-#: actions/othersettings.php:153 actions/passwordsettings.php:138
-#: actions/profilesettings.php:221 actions/recoverpassword.php:350
-#: actions/register.php:172 actions/remotesubscribe.php:77
-#: actions/repeat.php:83 actions/smssettings.php:256 actions/subedit.php:40
-#: actions/subscribe.php:86 actions/tagother.php:166
-#: actions/unsubscribe.php:69 actions/userauthorization.php:52
+#: actions/oauthappssettings.php:165 actions/oauthconnectionssettings.php:136
+#: actions/othersettings.php:155 actions/passwordsettings.php:137
+#: actions/profilesettings.php:217 actions/recoverpassword.php:383
+#: actions/register.php:164 actions/remotesubscribe.php:76
+#: actions/repeat.php:82 actions/smssettings.php:250 actions/subedit.php:40
+#: actions/subscribe.php:87 actions/tagother.php:166
+#: actions/unsubscribe.php:69 actions/userauthorization.php:53
#: lib/designsettings.php:310
msgid "There was a problem with your session token. Try again, please."
msgstr "你的 session 出现了一个问题,请重试。"
@@ -779,18 +838,22 @@ msgstr "插入 oauth_token_association 时数据库出错。"
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
+#. TRANS: Client error displayed when the submitted form contains unexpected data.
#. TRANS: Client error displayed submitting invalid form data for edit application.
#. TRANS: Message given submitting a form with an unknown action in e-mail settings.
-#. TRANS: Message given submitting a form with an unknown action in IM settings.
+#. TRANS: Form validation error message when an unsupported argument is used.
+#. TRANS: Message given submitting a form with an unknown action in Instant Messaging settings.
+#. TRANS: Client error displayed when encountering an unexpected action on form submission.
#. TRANS: Client error when submitting a form with unexpected information.
+#. TRANS: Client error displayed when unexpected data is posted in the password recovery form.
#. TRANS: Message given submitting a form with an unknown action in SMS settings.
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
-#: actions/designadminpanel.php:104 actions/editapplication.php:144
-#: actions/emailsettings.php:316 actions/grouplogo.php:322
-#: actions/imsettings.php:245 actions/newapplication.php:125
-#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
-#: actions/smssettings.php:277 lib/designsettings.php:321
+#: actions/designadminpanel.php:100 actions/editapplication.php:144
+#: actions/emailsettings.php:310 actions/grouplogo.php:332
+#: actions/imsettings.php:239 actions/newapplication.php:124
+#: actions/oauthconnectionssettings.php:145 actions/recoverpassword.php:46
+#: actions/smssettings.php:271 lib/designsettings.php:321
msgid "Unexpected form submission."
msgstr "未预料的表单提交。"
@@ -838,29 +901,31 @@ msgstr "帐号"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group nickname (dt). Text hidden by default.
-#: actions/apioauthauthorize.php:459 actions/login.php:252
-#: actions/profilesettings.php:110 actions/register.php:432
-#: actions/showgroup.php:240 actions/tagother.php:94
-#: actions/userauthorization.php:145 lib/groupeditform.php:152
-#: lib/userprofile.php:134
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for nick name in a profile.
+#: actions/apioauthauthorize.php:459 actions/login.php:242
+#: actions/profilesettings.php:106 actions/register.php:418
+#: actions/showgroup.php:243 actions/tagother.php:94
+#: actions/userauthorization.php:152 lib/groupeditform.php:145
+#: lib/userprofile.php:137
msgid "Nickname"
msgstr "昵称"
#. TRANS: Field label on OAuth API authorisation form.
#. TRANS: Link description in user account settings menu.
-#: actions/apioauthauthorize.php:463 actions/login.php:255
-#: actions/register.php:437 lib/accountsettingsaction.php:120
+#: actions/apioauthauthorize.php:463 actions/login.php:245
+#: actions/register.php:422 lib/accountsettingsaction.php:120
msgid "Password"
msgstr "密码"
#. TRANS: Button text that when clicked will cancel the process of allowing access to an account
#. TRANS: by an external application.
#. TRANS: Button label to cancel an e-mail address confirmation procedure.
-#. TRANS: Button label to cancel an IM address confirmation procedure.
+#. TRANS: Button label to cancel an Instant Messaging address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
-#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
-#: actions/imsettings.php:131 actions/smssettings.php:137
+#: actions/apioauthauthorize.php:478 actions/emailsettings.php:124
+#: actions/imsettings.php:127 actions/smssettings.php:133
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
msgid "Cancel"
@@ -930,6 +995,7 @@ msgstr "你不能删除其他用户的消息。"
#. TRANS: Client error displayed trying to repeat a non-existing notice through the API.
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
+#. TRANS: Client exception thrown when referencing a non-existing notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
@@ -949,38 +1015,50 @@ msgstr "不能转发你自己的消息。"
msgid "Already repeated that notice."
msgstr "已转发了该消息。"
-#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
-#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
-#: actions/atompubshowsubscription.php:118
+#. TRANS: Client error displayed calling an unsupported HTTP error in API status show.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client exception thrown using an unsupported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#. TRANS: Client error shown when using a non-supported HTTP method.
+#. TRANS: Client exception thrown when using an unsupported HTTP method.
+#: actions/apistatusesshow.php:118 actions/atompubfavoritefeed.php:103
+#: actions/atompubmembershipfeed.php:105 actions/atompubshowfavorite.php:117
+#: actions/atompubshowmembership.php:116
+#: actions/atompubshowsubscription.php:122
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr "HTTP 方法不支持。"
-#: actions/apistatusesshow.php:141
+#. TRANS: Exception thrown requesting an unsupported notice output format.
+#. TRANS: %s is the requested output format.
+#: actions/apistatusesshow.php:144
#, php-format
-msgid "Unsupported format: %s"
-msgstr "不支持的格式:%s"
+msgid "Unsupported format: %s."
+msgstr "不支持的格式: %s。"
#. TRANS: Client error displayed requesting a deleted status.
-#: actions/apistatusesshow.php:152
+#: actions/apistatusesshow.php:155
msgid "Status deleted."
msgstr "消息已删除。"
#. TRANS: Client error displayed requesting a status with an invalid ID.
-#: actions/apistatusesshow.php:159
+#: actions/apistatusesshow.php:162
msgid "No status with that ID found."
msgstr "没有找到此 ID 的消息。"
-#: actions/apistatusesshow.php:223
+#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
+#: actions/apistatusesshow.php:227
msgid "Can only delete using the Atom format."
msgstr "只能使用 Atom 格式删除。"
+#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
-msgid "Can't delete this notice."
-msgstr "无法删除这条消息。"
+#: actions/apistatusesshow.php:235 actions/deletenotice.php:78
+msgid "Cannot delete this notice."
+msgstr "不能删除此通知。"
-#: actions/apistatusesshow.php:243
+#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
+#: actions/apistatusesshow.php:249
#, php-format
msgid "Deleted notice %d"
msgstr "删除消息 %d"
@@ -1035,7 +1113,7 @@ msgstr "%1$s上被%2$s(%3$s)收藏的消息。"
#. TRANS: Server error displayed when generating an Atom feed fails.
#. TRANS: %s is the error.
-#: actions/apitimelinegroup.php:138
+#: actions/apitimelinegroup.php:134
#, php-format
msgid "Could not generate feed for group - %s"
msgstr "无法生成小组的 feed - %s"
@@ -1056,13 +1134,14 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr " %1$s 条消息回复给来自 %2$s 的消息 / %3$s。"
#. TRANS: Title for site timeline. %s is the StatusNet sitename.
+#. TRANS: Public RSS feed title. %s is the StatusNet site name.
#: actions/apitimelinepublic.php:193 actions/publicrss.php:103
#, php-format
msgid "%s public timeline"
msgstr "%s 公共时间线"
#. TRANS: Subtitle for site timeline. %s is the StatusNet sitename.
-#: actions/apitimelinepublic.php:199 actions/publicrss.php:105
+#: actions/apitimelinepublic.php:199
#, php-format
msgid "%s updates from everyone!"
msgstr "%s条来自所有人的消息!"
@@ -1106,205 +1185,257 @@ msgstr "只有该用户才能添加到他们的时间线。"
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
-#, fuzzy
msgid "Only accept AtomPub for Atom feeds."
-msgstr "Atom feeds 只接受 AtomPub。"
+msgstr "只接受 AtomPub 原子饲料。"
-#: actions/apitimelineuser.php:310
+#. TRANS: Client error displayed attempting to post an empty API notice.
+#: actions/apitimelineuser.php:311
msgid "Atom post must not be empty."
-msgstr ""
+msgstr "原子开机自检不能为空。"
-#: actions/apitimelineuser.php:315
+#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
+#: actions/apitimelineuser.php:317
msgid "Atom post must be well-formed XML."
-msgstr ""
+msgstr "原子后必须是格式良好 XML。"
#. TRANS: Client error displayed when not using an Atom entry.
-#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
-#: actions/atompubmembershipfeed.php:228
-#: actions/atompubsubscriptionfeed.php:233
+#: actions/apitimelineuser.php:323 actions/atompubfavoritefeed.php:228
+#: actions/atompubmembershipfeed.php:230
+#: actions/atompubsubscriptionfeed.php:236
msgid "Atom post must be an Atom entry."
-msgstr ""
+msgstr "原子后必须是一个原子的条目。"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/apitimelineuser.php:332
+#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
+#: actions/apitimelineuser.php:334
msgid "Can only handle POST activities."
-msgstr ""
+msgstr "只能处理开机自检活动。"
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
-#: actions/apitimelineuser.php:343
+#: actions/apitimelineuser.php:345
#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr ""
+msgstr "无法处理活动对象类型 %s。"
#. TRANS: Client error displayed when posting a notice without content through the API.
-#: actions/apitimelineuser.php:376
-#, fuzzy, php-format
+#. TRANS: %d is the notice ID (number).
+#: actions/apitimelineuser.php:379
+#, php-format
msgid "No content for notice %d."
-msgstr "搜索消息内容"
+msgstr "没有通知 %d 的内容。"
#. TRANS: Client error displayed when using another format than AtomPub.
-#: actions/apitimelineuser.php:404
+#. TRANS: %s is the notice URI.
+#: actions/apitimelineuser.php:408
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr "已存在使用 URI \"%s\" 的消息了。"
-#: actions/apitimelineuser.php:435
-#, php-format
-msgid "AtomPub post with unknown attention URI %s"
-msgstr ""
-
#. TRANS: Server error for unfinished API method showTrends.
#: actions/apitrends.php:85
msgid "API method under construction."
msgstr "API 方法尚未实现。"
#. TRANS: Client error displayed when requesting user information for a non-existing user.
-#: actions/apiusershow.php:94
+#: actions/apiuserprofileimage.php:80 actions/apiusershow.php:94
msgid "User not found."
msgstr "API方法没有找到。"
-#: actions/atompubfavoritefeed.php:70
-#, fuzzy
-msgid "No such profile"
-msgstr "没有这个文件。"
-
-#: actions/atompubfavoritefeed.php:145
-#, php-format
-msgid "Notices %s has favorited to on %s"
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
-#, fuzzy
-msgid "Can't add someone else's subscription"
-msgstr "无法添加新的关注。"
-
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubfavoritefeed.php:239
-msgid "Can only handle Favorite activities."
-msgstr ""
-
-#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
-#, fuzzy
-msgid "Can only fave notices."
-msgstr "搜索消息内容"
-
-#: actions/atompubfavoritefeed.php:256
-#, fuzzy
-msgid "Unknown note."
-msgstr "未知的"
-
-#: actions/atompubfavoritefeed.php:263
-#, fuzzy
-msgid "Already a favorite."
-msgstr "加入收藏"
-
-#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
-#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
+#. TRANS: Client exception thrown when requesting a favorite feed for a non-existing profile.
+#. TRANS: Client exception.
+#. TRANS: Client error displayed trying to subscribe to a non-existing profile.
+#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71
+#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72
+#: actions/subscribe.php:110
msgid "No such profile."
msgstr "没有这个文件。"
+#. TRANS: Subtitle for Atom favorites feed.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename.
+#: actions/atompubfavoritefeed.php:147
+#, php-format
+msgid "Notices %1$s has favorited on %2$s"
+msgstr "%1$s在%2$s上收藏的消息"
+
+#. TRANS: Client exception thrown when trying to set a favorite for another user.
+#. TRANS: Client exception thrown when trying to subscribe another user.
+#: actions/atompubfavoritefeed.php:217 actions/atompubsubscriptionfeed.php:225
+msgid "Cannot add someone else's subscription."
+msgstr "无法添加其他人的订阅。"
+
+#. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method.
+#: actions/atompubfavoritefeed.php:240
+msgid "Can only handle favorite activities."
+msgstr "只能处理最喜欢的活动。"
+
+#. TRANS: Client exception thrown when trying favorite an object that is not a notice.
+#: actions/atompubfavoritefeed.php:250 actions/atompubmembershipfeed.php:250
+msgid "Can only fave notices."
+msgstr "可以只为心目中的绝对通知书。"
+
+#. TRANS: Client exception thrown when trying favorite a notice without content.
+#: actions/atompubfavoritefeed.php:259
+msgid "Unknown note."
+msgstr "未知的注意。"
+
+#. TRANS: Client exception thrown when trying favorite an already favorited notice.
+#: actions/atompubfavoritefeed.php:267
+msgid "Already a favorite."
+msgstr "已经是一种收藏。"
+
+#. TRANS: Title for group membership feed.
+#. TRANS: %s is a username.
#: actions/atompubmembershipfeed.php:144
-#, fuzzy, php-format
+#, php-format
msgid "%s group memberships"
-msgstr "%s 的小组成员"
+msgstr "%s 组成员身份"
-#: actions/atompubmembershipfeed.php:147
-#, fuzzy, php-format
-msgid "Groups %s is a member of on %s"
-msgstr "%s 组是成员组成了"
+#. TRANS: Subtitle for group membership feed.
+#. TRANS: %1$s is a username, %2$s is the StatusNet sitename.
+#: actions/atompubmembershipfeed.php:149
+#, php-format
+msgid "Groups %1$s is a member of on %2$s"
+msgstr "组 %1$s 是在 %2$s 上的成员"
-#: actions/atompubmembershipfeed.php:217
-msgid "Can't add someone else's membership"
-msgstr ""
+#. TRANS: Client exception thrown when trying subscribe someone else to a group.
+#: actions/atompubmembershipfeed.php:219
+msgid "Cannot add someone else's membership."
+msgstr "无法添加其他人的成员资格。"
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
-#: actions/atompubmembershipfeed.php:241
-msgid "Can only handle Join activities."
-msgstr ""
+#: actions/atompubmembershipfeed.php:242
+msgid "Can only handle join activities."
+msgstr "只能处理加入活动。"
-#: actions/atompubmembershipfeed.php:256
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to a non-existing group.
+#: actions/atompubmembershipfeed.php:259
msgid "Unknown group."
-msgstr "未知的"
+msgstr "未知的组。"
-#: actions/atompubmembershipfeed.php:263
-#, fuzzy
+#. TRANS: Client exception thrown when trying to subscribe to an already subscribed group.
+#: actions/atompubmembershipfeed.php:267
msgid "Already a member."
-msgstr "所有成员"
+msgstr "已经是会员。"
-#: actions/atompubmembershipfeed.php:270
+#. TRANS: Client exception thrown when trying to subscribe to group while blocked from that group.
+#: actions/atompubmembershipfeed.php:275
msgid "Blocked by admin."
-msgstr ""
+msgstr "阻止的管理员。"
-#: actions/atompubshowfavorite.php:89
-#, fuzzy
+#. TRANS: Client exception thrown when referencing a non-existing favorite.
+#: actions/atompubshowfavorite.php:90
msgid "No such favorite."
-msgstr "没有这个文件。"
+msgstr "没有这种喜欢。"
+#. TRANS: Client exception thrown when trying to remove a favorite notice of another user.
#: actions/atompubshowfavorite.php:151
-#, fuzzy
-msgid "Can't delete someone else's favorite"
-msgstr "无法删除收藏。"
+msgid "Cannot delete someone else's favorite."
+msgstr "不能删除其他人的最爱。"
-#: actions/atompubshowmembership.php:81
-#, fuzzy
-msgid "No such group"
+#. TRANS: Client exception thrown when referencing a non-existing group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
+#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
+#. TRANS: Client error when trying to delete a non-local group.
+#. TRANS: Client error when trying to delete a non-existing group.
+#. TRANS: Client error displayed trying to edit a non-existing group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed without providing a group nickname.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a non-local group.
+#. TRANS: Client error displayed when requesting Friends of a Friend feed for a nickname that is not a group.
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing group.
+#. TRANS: Client error displayed referring to a group's permalink for a non-existing group ID.
+#. TRANS: Client error displayed trying to change group design settings while providing a nickname for a non-existing group.
+#. TRANS: Client error displayed when trying to update logo settings for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for a non-existing group.
+#. TRANS: Client error displayed when trying to view group members for an object that is not a group.
+#. TRANS: Client error displayed when requesting a group RSS feed for group that does not exist.
+#. TRANS: Client error displayed when requesting a group RSS feed for an object that is not a group.
+#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
+#. TRANS: Client error displayed when trying to join a non-local group.
+#. TRANS: Client error displayed when trying to join a non-existing group.
+#. TRANS: Client error displayed when trying to leave a non-local group.
+#. TRANS: Client error displayed when trying to leave a non-existing group.
+#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
+#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
+#. TRANS: Command exception text shown when a group is requested that does not exist.
+#. TRANS: Error text shown when trying to leave a group that does not exist.
+#: actions/atompubshowmembership.php:81 actions/blockedfromgroup.php:81
+#: actions/blockedfromgroup.php:89 actions/deletegroup.php:87
+#: actions/deletegroup.php:100 actions/editgroup.php:102
+#: actions/foafgroup.php:46 actions/foafgroup.php:65 actions/foafgroup.php:73
+#: actions/groupblock.php:89 actions/groupbyid.php:83
+#: actions/groupdesignsettings.php:101 actions/grouplogo.php:103
+#: actions/groupmembers.php:84 actions/groupmembers.php:92
+#: actions/grouprss.php:97 actions/grouprss.php:105
+#: actions/groupunblock.php:89 actions/joingroup.php:82
+#: actions/joingroup.php:95 actions/leavegroup.php:82
+#: actions/leavegroup.php:95 actions/makeadmin.php:86
+#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: lib/command.php:380
+msgid "No such group."
msgstr "没有这个组。"
-#: actions/atompubshowmembership.php:90
-#, fuzzy
-msgid "Not a member"
-msgstr "所有成员"
-
-#: actions/atompubshowmembership.php:115
-#, fuzzy
-msgid "Method not supported"
-msgstr "HTTP 方法不支持。"
+#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group
+#: actions/atompubshowmembership.php:91
+msgid "Not a member."
+msgstr "不是会员。"
+#. TRANS: Client exception thrown when deleting someone else's membership.
#: actions/atompubshowmembership.php:150
-msgid "Can't delete someone else's membership"
-msgstr ""
+msgid "Cannot delete someone else's membership."
+msgstr "不能删除其他人的成员资格。"
+#. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID.
+#. TRANS: %d is the non-existing profile ID number.
#: actions/atompubshowsubscription.php:72
-#: actions/atompubshowsubscription.php:81
+#: actions/atompubshowsubscription.php:83
#: actions/atompubsubscriptionfeed.php:74
-#, fuzzy, php-format
-msgid "No such profile id: %d"
-msgstr "没有这个文件。"
+#, php-format
+msgid "No such profile id: %d."
+msgstr "没有这种配置文件 id: %d。"
-#: actions/atompubshowsubscription.php:90
-#, fuzzy, php-format
-msgid "Profile %d not subscribed to profile %d"
-msgstr "你没有关注这个用户"
+#. TRANS: Client exception thrown when trying to display a subscription for a non-subscribed profile ID.
+#. TRANS: %1$d is the non-existing subscriber ID number, $2$d is the ID of the profile that was not subscribed to.
+#: actions/atompubshowsubscription.php:94
+#, php-format
+msgid "Profile %1$d not subscribed to profile %2$d."
+msgstr "配置文件 %1$d 不订阅配置文件 %2$d。"
-#: actions/atompubshowsubscription.php:154
-#, fuzzy
-msgid "Can't delete someone else's subscription"
-msgstr "无法删除自我关注。"
+#. TRANS: Client exception thrown when trying to delete a subscription of another user.
+#: actions/atompubshowsubscription.php:157
+msgid "Cannot delete someone else's subscription."
+msgstr "不能删除别人的订阅。"
-#: actions/atompubsubscriptionfeed.php:150
-#, fuzzy, php-format
-msgid "People %s has subscribed to on %s"
-msgstr "关注了%s的用户"
+#. TRANS: Subtitle for Atom subscription feed.
+#. TRANS: %1$s is a user nickname, %s$s is the StatusNet sitename.
+#: actions/atompubsubscriptionfeed.php:153
+#, php-format
+msgid "People %1$s has subscribed to on %2$s"
+msgstr "人 %1$s 已经订阅的 %2$s"
-#. TRANS: Client error displayed when not using the POST verb.
-#. TRANS: Do not translate POST.
-#: actions/atompubsubscriptionfeed.php:246
+#. TRANS: Client error displayed when not using the follow verb.
+#: actions/atompubsubscriptionfeed.php:248
msgid "Can only handle Follow activities."
-msgstr ""
+msgstr "只能处理后续活动。"
-#: actions/atompubsubscriptionfeed.php:253
+#. TRANS: Client exception thrown when subscribing to an object that is not a person.
+#: actions/atompubsubscriptionfeed.php:256
msgid "Can only follow people."
-msgstr ""
+msgstr "只能跟人。"
-#: actions/atompubsubscriptionfeed.php:262
-#, fuzzy, php-format
-msgid "Unknown profile %s"
-msgstr "未知文件类型"
+#. TRANS: Client exception thrown when subscribing to a non-existing profile.
+#. TRANS: %s is the unknown profile ID.
+#: actions/atompubsubscriptionfeed.php:267
+#, php-format
+msgid "Unknown profile %s."
+msgstr "未知的配置文件 %s。"
+
+#. TRANS: Client error displayed trying to subscribe to an already subscribed profile.
+#. TRANS: %s is the profile the user already has a subscription on.
+#: actions/atompubsubscriptionfeed.php:275
+#, php-format
+msgid "Already subscribed to %s."
+msgstr "已经订阅了%s。"
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
@@ -1314,11 +1445,15 @@ msgstr "没有这个附件。"
#. TRANS: Client error displayed trying to get an avatar without providing a nickname.
#. TRANS: Client error displayed when requesting a list of blocked users for a group without providing a group nickname.
#. TRANS: Client error displayed trying to edit a group while not proving a nickname for the group to edit.
+#. TRANS: Client error displayed trying to change group design settings without providing a group nickname.
+#. TRANS: Client error displayed when trying to change group logo settings without providing a nickname.
+#. TRANS: Client error displayed when trying to view group members without providing a group nickname.
+#. TRANS: Client error displayed when requesting a group RSS feed without providing a group nickname.
#. TRANS: Client error displayed if no nickname argument was given requesting a group page.
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/grouprss.php:91 actions/showgroup.php:116
+#: actions/grouprss.php:89 actions/showgroup.php:116
msgid "No nickname."
msgstr "没有昵称。"
@@ -1335,7 +1470,7 @@ msgstr "大小不正确。"
#. TRANS: Title for avatar upload page.
#. TRANS: Label for group avatar (dt). Text hidden by default.
#. TRANS: Link description in user account settings menu.
-#: actions/avatarsettings.php:66 actions/showgroup.php:224
+#: actions/avatarsettings.php:66 actions/showgroup.php:227
#: lib/accountsettingsaction.php:113
msgid "Avatar"
msgstr "头像"
@@ -1348,41 +1483,51 @@ msgid "You can upload your personal avatar. The maximum file size is %s."
msgstr "你可以上传你的个人头像。文件大小限制在%s以下。"
#. TRANS: Server error displayed in avatar upload page when no matching profile can be found for a user.
+#. TRANS: Server error displayed coming across a request from a user without a profile.
+#. TRANS: Server error displayed when trying to authorise a remote subscription request
+#. TRANS: while the user has no profile.
#: actions/avatarsettings.php:108 actions/avatarsettings.php:192
-#: actions/grouplogo.php:181 actions/remotesubscribe.php:191
-#: actions/userauthorization.php:72 actions/userrss.php:108
+#: actions/grouplogo.php:184 actions/remotesubscribe.php:190
+#: actions/userauthorization.php:75 actions/userrss.php:108
msgid "User without matching profile."
msgstr "用户没有相应个人信息。"
#. TRANS: Avatar upload page form legend.
#. TRANS: Avatar upload page crop form legend.
+#. TRANS: Legend for group logo settings fieldset.
#: actions/avatarsettings.php:122 actions/avatarsettings.php:205
-#: actions/grouplogo.php:254
+#: actions/grouplogo.php:261
msgid "Avatar settings"
msgstr "头像设置"
#. TRANS: Header on avatar upload page for thumbnail of originally uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of originally uploaded avatar (h2).
+#. TRANS: Uploaded original file in group logo form.
+#. TRANS: Header for originally uploaded file before a crop on the group logo page.
#: actions/avatarsettings.php:131 actions/avatarsettings.php:214
-#: actions/grouplogo.php:202 actions/grouplogo.php:262
+#: actions/grouplogo.php:207 actions/grouplogo.php:270
msgid "Original"
msgstr "原始"
#. TRANS: Header on avatar upload page for thumbnail of to be used rendition of uploaded avatar (h2).
#. TRANS: Header on avatar upload crop form for thumbnail of to be used rendition of uploaded avatar (h2).
+#. TRANS: Header for preview of to be displayed group logo.
+#. TRANS: Header for the cropped group logo on the group logo page.
#: actions/avatarsettings.php:147 actions/avatarsettings.php:227
-#: actions/grouplogo.php:213 actions/grouplogo.php:274
+#: actions/grouplogo.php:219 actions/grouplogo.php:283
msgid "Preview"
msgstr "预览"
#. TRANS: Button on avatar upload page to delete current avatar.
-#: actions/avatarsettings.php:155
+#. TRANS: Button text for user account deletion.
+#: actions/avatarsettings.php:155 actions/deleteaccount.php:319
msgctxt "BUTTON"
msgid "Delete"
msgstr "删除"
#. TRANS: Button on avatar upload page to upload an avatar.
-#: actions/avatarsettings.php:173
+#. TRANS: Submit button to confirm upload of a user backup file for account restore.
+#: actions/avatarsettings.php:173 actions/restoreaccount.php:369
msgctxt "BUTTON"
msgid "Upload"
msgstr "上传"
@@ -1398,31 +1543,72 @@ msgstr "剪裁"
msgid "No file uploaded."
msgstr "没有文件被上传。"
-#. TRANS: Avatar upload form unstruction after uploading a file.
-#: actions/avatarsettings.php:346
-msgid "Pick a square area of the image to be your avatar"
-msgstr "请选择一块方形区域作为你的头像"
+#. TRANS: Avatar upload form instruction after uploading a file.
+#: actions/avatarsettings.php:345
+msgid "Pick a square area of the image to be your avatar."
+msgstr "选择一个方形的区域的图像为您的虚拟形象。"
#. TRANS: Server error displayed if an avatar upload went wrong somehow server side.
-#: actions/avatarsettings.php:361 actions/grouplogo.php:380
+#. TRANS: Server error displayed trying to crop an uploaded group logo that is no longer present.
+#: actions/avatarsettings.php:360 actions/grouplogo.php:391
msgid "Lost our file data."
msgstr "文件数据丢失"
#. TRANS: Success message for having updated a user avatar.
-#: actions/avatarsettings.php:385
+#: actions/avatarsettings.php:384
msgid "Avatar updated."
msgstr "头像已更新。"
#. TRANS: Error displayed on the avatar upload page if the avatar could not be updated for an unknown reason.
-#: actions/avatarsettings.php:389
+#: actions/avatarsettings.php:388
msgid "Failed updating avatar."
msgstr "更新头像失败。"
#. TRANS: Success message for deleting a user avatar.
-#: actions/avatarsettings.php:413
+#: actions/avatarsettings.php:412
msgid "Avatar deleted."
msgstr "头像已删除。"
+#. TRANS: Title for backup account page.
+#. TRANS: Option in profile settings to create a backup of the account of the currently logged in user.
+#: actions/backupaccount.php:61 actions/profilesettings.php:467
+msgid "Backup account"
+msgstr "备份的帐户"
+
+#. TRANS: Client exception thrown when trying to backup an account while not logged in.
+#: actions/backupaccount.php:79
+msgid "Only logged-in users can backup their account."
+msgstr "只有已登录的用户可以备份他们的帐户。"
+
+#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
+#: actions/backupaccount.php:84
+msgid "You may not backup your account."
+msgstr "您可能不会备份您的帐户。"
+
+#. TRANS: Information displayed on the backup account page.
+#: actions/backupaccount.php:225
+msgid ""
+"You can backup your account data in Activity Streams format. This is an experimental feature and provides "
+"an incomplete backup; private account information like email and IM "
+"addresses is not backed up. Additionally, uploaded files and direct messages "
+"are not backed up."
+msgstr ""
+"您可以备份您的帐户数据 活动流 格式。"
+"这是一项试验功能,并提供了不完整的备份 ;私人帐户信息如电子邮件和即时消息地址"
+"不备份。此外上,传的文件和直接的消息不备份。"
+
+#. TRANS: Submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:248
+msgctxt "BUTTON"
+msgid "Backup"
+msgstr "备份"
+
+#. TRANS: Title for submit button to backup an account on the backup account page.
+#: actions/backupaccount.php:252
+msgid "Backup your account."
+msgstr "备份您的帐户。"
+
#. TRANS: Client error displayed when blocking a user that has already been blocked.
#: actions/block.php:68
msgid "You already blocked that user."
@@ -1430,7 +1616,8 @@ msgstr "你已经屏蔽该用户。"
#. TRANS: Title for block user page.
#. TRANS: Legend for block user form.
-#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:158
+#. TRANS: Fieldset legend for block user from group form.
+#: actions/block.php:106 actions/block.php:136 actions/groupblock.php:165
msgid "Block user"
msgstr "屏蔽用户。"
@@ -1452,15 +1639,14 @@ msgstr ""
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:154 actions/deleteapplication.php:157
#: actions/deletegroup.php:220 actions/deletenotice.php:155
-#: actions/deleteuser.php:152 actions/groupblock.php:178
+#: actions/deleteuser.php:154 actions/groupblock.php:187
msgctxt "BUTTON"
msgid "No"
msgstr "否"
#. TRANS: Submit button title for 'No' when blocking a user.
-#. TRANS: Submit button title for 'No' when deleting a user.
-#: actions/block.php:158 actions/deleteuser.php:156
-msgid "Do not block this user"
+#: actions/block.php:158
+msgid "Do not block this user."
msgstr "不要屏蔽这个用户"
#. TRANS: Button label on the user block form.
@@ -1471,15 +1657,14 @@ msgstr "不要屏蔽这个用户"
#. TRANS: Button label on the form to block a user from a group.
#: actions/block.php:161 actions/deleteapplication.php:164
#: actions/deletegroup.php:227 actions/deletenotice.php:162
-#: actions/deleteuser.php:159 actions/groupblock.php:185
+#: actions/deleteuser.php:161 actions/groupblock.php:194
msgctxt "BUTTON"
msgid "Yes"
msgstr "是"
#. TRANS: Submit button title for 'Yes' when blocking a user.
-#. TRANS: Description of the form to block a user.
-#: actions/block.php:165 lib/blockform.php:79
-msgid "Block this user"
+#: actions/block.php:165
+msgid "Block this user."
msgstr "屏蔽这个用户"
#. TRANS: Server error displayed when blocking a user fails.
@@ -1487,31 +1672,6 @@ msgstr "屏蔽这个用户"
msgid "Failed to save block information."
msgstr "保存屏蔽信息失败。"
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-local group.
-#. TRANS: Client error displayed when requesting a list of blocked users for a non-existing group.
-#. TRANS: Client error when trying to delete a non-local group.
-#. TRANS: Client error when trying to delete a non-existing group.
-#. TRANS: Client error displayed trying to edit a non-existing group.
-#. TRANS: Client error displayed when trying to unblock a user from a non-existing group.
-#. TRANS: Client error displayed if no remote group with a given name was found requesting group page.
-#. TRANS: Client error displayed if no local group with a given name was found requesting group page.
-#. TRANS: Command exception text shown when a group is requested that does not exist.
-#. TRANS: Error text shown when trying to leave a group that does not exist.
-#: actions/blockedfromgroup.php:81 actions/blockedfromgroup.php:89
-#: actions/deletegroup.php:87 actions/deletegroup.php:100
-#: actions/editgroup.php:102 actions/foafgroup.php:44 actions/foafgroup.php:62
-#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83
-#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102
-#: actions/groupmembers.php:83 actions/groupmembers.php:90
-#: actions/grouprss.php:98 actions/grouprss.php:105
-#: actions/groupunblock.php:88 actions/joingroup.php:82
-#: actions/joingroup.php:93 actions/leavegroup.php:82
-#: actions/leavegroup.php:93 actions/makeadmin.php:86
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
-#: lib/command.php:380
-msgid "No such group."
-msgstr "没有这个组。"
-
#. TRANS: Title for first page with list of users blocked from a group.
#. TRANS: %s is a group nickname.
#: actions/blockedfromgroup.php:101
@@ -1581,23 +1741,6 @@ msgstr "不可识别的地址类型%s。"
msgid "That address has already been confirmed."
msgstr "此地址已被确认过了。"
-#. TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action.
-#. TRANS: Server error thrown on database error updating e-mail preferences.
-#. TRANS: Server error thrown on database error removing a registered e-mail address.
-#. TRANS: Server error thrown on database error updating IM preferences.
-#. TRANS: Server error thrown on database error removing a registered IM address.
-#. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server.
-#. TRANS: Server error thrown when user profile settings could not be updated.
-#. TRANS: Server error thrown on database error updating SMS preferences.
-#. TRANS: Server error thrown on database error removing a registered SMS phone number.
-#: actions/confirmaddress.php:118 actions/emailsettings.php:359
-#: actions/emailsettings.php:508 actions/imsettings.php:283
-#: actions/imsettings.php:442 actions/othersettings.php:184
-#: actions/profilesettings.php:326 actions/smssettings.php:308
-#: actions/smssettings.php:464
-msgid "Couldn't update user."
-msgstr "无法更新用户。"
-
#. TRANS: Server error displayed when an address confirmation code deletion from the
#. TRANS: database fails in the contact address confirmation action.
#: actions/confirmaddress.php:132
@@ -1622,11 +1765,80 @@ msgid "Conversation"
msgstr "对话"
#. TRANS: Header on conversation page. Hidden by default (h2).
-#: actions/conversation.php:149 lib/mailbox.php:116 lib/noticelist.php:87
-#: lib/profileaction.php:229 lib/searchgroupnav.php:82
+#. TRANS: Label for user statistics.
+#: actions/conversation.php:149 lib/noticelist.php:87
+#: lib/profileaction.php:246 lib/searchgroupnav.php:82
msgid "Notices"
msgstr "消息"
+#. TRANS: Client exception displayed trying to delete a user account while not logged in.
+#: actions/deleteaccount.php:71
+msgid "Only logged-in users can delete their account."
+msgstr "只有已登录的用户可以删除他们的帐户。"
+
+#. TRANS: Client exception displayed trying to delete a user account without have the rights to do that.
+#: actions/deleteaccount.php:77
+msgid "You cannot delete your account."
+msgstr "您不能删除您的帐户。"
+
+#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#: actions/deleteaccount.php:160 actions/deleteaccount.php:297
+msgid "I am sure."
+msgstr "我敢肯定。"
+
+#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:164
+#, php-format
+msgid "You must write \"%s\" exactly in the box."
+msgstr "你必须在框中输入“%s”。"
+
+#. TRANS: Confirmation that a user account has been deleted.
+#: actions/deleteaccount.php:206
+msgid "Account deleted."
+msgstr "删除的帐户。"
+
+#. TRANS: Page title for page on which a user account can be deleted.
+#. TRANS: Option in profile settings to delete the account of the currently logged in user.
+#: actions/deleteaccount.php:228 actions/profilesettings.php:475
+msgid "Delete account"
+msgstr "删除帐户"
+
+#. TRANS: Form text for user deletion form.
+#: actions/deleteaccount.php:279
+msgid ""
+"This will permanently delete your account data from this "
+"server."
+msgstr "这将 永久删除 您的帐户数据从该服务器。"
+
+#. TRANS: Additional form text for user deletion form shown if a user has account backup rights.
+#. TRANS: %s is a URL to the backup page.
+#: actions/deleteaccount.php:285
+#, php-format
+msgid ""
+"You are strongly advised to back up your data before "
+"deletion."
+msgstr "强烈建议您在删除前 备份您的数据。"
+
+#. TRANS: Field label for delete account confirmation entry.
+#. TRANS: Field label for password reset form where the password has to be typed again.
+#: actions/deleteaccount.php:300 actions/passwordsettings.php:112
+#: actions/recoverpassword.php:262 actions/register.php:426
+msgid "Confirm"
+msgstr "密码确认"
+
+#. TRANS: Input title for the delete account field.
+#. TRANS: %s is the text that needs to be input.
+#: actions/deleteaccount.php:304
+#, php-format
+msgid "Enter \"%s\" to confirm that you want to delete your account."
+msgstr "输入\"%s\",以确认您要删除您的帐户。"
+
+#. TRANS: Button title for user account deletion.
+#: actions/deleteaccount.php:323
+msgid "Permanently delete your account"
+msgstr "永久删除您的帐户"
+
#. TRANS: Client error displayed trying to delete an application while not logged in.
#: actions/deleteapplication.php:62
msgid "You must be logged in to delete an application."
@@ -1640,14 +1852,14 @@ msgstr "未找到应用。"
#. TRANS: Client error displayed trying to delete an application the current user does not own.
#. TRANS: Client error displayed trying to edit an application while not being its owner.
#: actions/deleteapplication.php:79 actions/editapplication.php:78
-#: actions/showapplication.php:94
+#: actions/showapplication.php:90
msgid "You are not the owner of this application."
msgstr "你不是该应用的拥有者。"
#. TRANS: Client error text when there is a problem with the session token.
#: actions/deleteapplication.php:102 actions/editapplication.php:131
-#: actions/newapplication.php:114 actions/showapplication.php:118
-#: lib/action.php:1409
+#: actions/newapplication.php:112 actions/showapplication.php:113
+#: lib/action.php:1422
msgid "There was a problem with your session token."
msgstr "你的 session token 出现了问题。"
@@ -1669,13 +1881,13 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting an application.
#: actions/deleteapplication.php:161
-msgid "Do not delete this application"
-msgstr "不删除该应用"
+msgid "Do not delete this application."
+msgstr "不要删除此应用程序。"
#. TRANS: Submit button title for 'Yes' when deleting an application.
#: actions/deleteapplication.php:167
-msgid "Delete this application"
-msgstr "删除这个应用"
+msgid "Delete this application."
+msgstr "删除此应用程序。"
#. TRANS: Client error when trying to delete group while not logged in.
#: actions/deletegroup.php:64
@@ -1683,8 +1895,10 @@ msgid "You must be logged in to delete a group."
msgstr "你必须登录才能删除小组。"
#. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group.
-#: actions/deletegroup.php:94 actions/joingroup.php:88
-#: actions/leavegroup.php:88
+#. TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
+#. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
+#: actions/deletegroup.php:94 actions/joingroup.php:89
+#: actions/leavegroup.php:89
msgid "No nickname or ID."
msgstr "没有昵称或 ID。"
@@ -1725,24 +1939,30 @@ msgstr ""
#. TRANS: Submit button title for 'No' when deleting a group.
#: actions/deletegroup.php:224
-msgid "Do not delete this group"
-msgstr "不要删除这个小组"
+msgid "Do not delete this group."
+msgstr "不要删除此组。"
#. TRANS: Submit button title for 'Yes' when deleting a group.
#: actions/deletegroup.php:231
-msgid "Delete this group"
-msgstr "删除这个小组"
+msgid "Delete this group."
+msgstr "删除此组。"
#. TRANS: Error message displayed trying to delete a notice while not logged in.
+#. TRANS: Client error displayed when trying to remove a favorite while not logged in.
+#. TRANS: Client error displayed when trying to mark a notice as favorite without being logged in.
+#. TRANS: Client error displayed trying to block a user from a group while not logged in.
#. TRANS: Client error displayed when trying to unblock a user from a group while not logged in.
+#. TRANS: Client error displayed trying to log out when not logged in.
#. TRANS: Client error displayed trying a change a subscription while not logged in.
+#. TRANS: Client error displayed trying to subscribe when not logged in.
#. TRANS: Client error message thrown when trying to access the admin panel while not logged in.
+#. TRANS: Client error displayed when trying to change user options while not logged in.
#: actions/deletenotice.php:52 actions/disfavor.php:61 actions/favor.php:62
-#: actions/groupblock.php:61 actions/groupunblock.php:60 actions/logout.php:69
+#: actions/groupblock.php:60 actions/groupunblock.php:60 actions/logout.php:70
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:88
-#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:96
+#: actions/nudge.php:63 actions/subedit.php:33 actions/subscribe.php:98
#: actions/tagother.php:33 actions/unsubscribe.php:52
-#: lib/adminpanelaction.php:71 lib/profileformaction.php:64
+#: lib/adminpanelaction.php:71 lib/profileformaction.php:63
#: lib/settingsaction.php:72
msgid "Not logged in."
msgstr "未登录。"
@@ -1767,105 +1987,137 @@ msgstr "你确定要删除这条消息吗?"
#. TRANS: Submit button title for 'No' when deleting a notice.
#: actions/deletenotice.php:159
-msgid "Do not delete this notice"
-msgstr "不要删除这个消息"
+msgid "Do not delete this notice."
+msgstr "不要删除此通知。"
#. TRANS: Submit button title for 'Yes' when deleting a notice.
-#: actions/deletenotice.php:166 lib/noticelist.php:672
-msgid "Delete this notice"
-msgstr "删除"
+#: actions/deletenotice.php:166
+msgid "Delete this notice."
+msgstr "删除此通知。"
-#: actions/deleteuser.php:67
+#. TRANS: Client error displayed when trying to delete a user without having the right to delete users.
+#: actions/deleteuser.php:66
msgid "You cannot delete users."
msgstr "你不能删除用户。"
+#. TRANS: Client error displayed when trying to delete a non-local user.
#: actions/deleteuser.php:74
msgid "You can only delete local users."
msgstr "你只能删除本地用户。"
-#: actions/deleteuser.php:110 actions/deleteuser.php:133
+#. TRANS: Title of delete user page.
+#: actions/deleteuser.php:110
+msgctxt "TITLE"
msgid "Delete user"
msgstr "删除用户"
-#: actions/deleteuser.php:136
+#. TRANS: Fieldset legend on delete user page.
+#: actions/deleteuser.php:134
+msgid "Delete user"
+msgstr "删除用户"
+
+#. TRANS: Information text to request if a user is certain that the described action has to be performed.
+#: actions/deleteuser.php:138
msgid ""
"Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup."
msgstr ""
"你确定要删除这个用户吗?这将从数据库中清除有关这个用户的所有数据,没有备份。"
+#. TRANS: Submit button title for 'No' when deleting a user.
+#: actions/deleteuser.php:158
+msgid "Do not delete this user."
+msgstr "请不要删除该用户。"
+
#. TRANS: Submit button title for 'Yes' when deleting a user.
-#: actions/deleteuser.php:163 lib/deleteuserform.php:77
-msgid "Delete this user"
-msgstr "删除这个用户"
+#: actions/deleteuser.php:165
+msgid "Delete this user."
+msgstr "删除此用户。"
#. TRANS: Message used as title for design settings for the site.
#. TRANS: Link description in user account settings menu.
-#: actions/designadminpanel.php:63 lib/accountsettingsaction.php:134
+#: actions/designadminpanel.php:60 lib/accountsettingsaction.php:134
msgid "Design"
msgstr "外观"
-#: actions/designadminpanel.php:74
+#. TRANS: Instructions for design adminsitration panel.
+#: actions/designadminpanel.php:71
msgid "Design settings for this StatusNet site"
msgstr "这个 StatusNet 网站的外观设置"
-#: actions/designadminpanel.php:335
+#. TRANS: Client error displayed when a logo URL does is not valid.
+#: actions/designadminpanel.php:327
msgid "Invalid logo URL."
msgstr "无效的 logo URL。"
-#: actions/designadminpanel.php:340
+#. TRANS: Client error displayed when an SSL logo URL is invalid.
+#: actions/designadminpanel.php:333
msgid "Invalid SSL logo URL."
msgstr "无效的 SSL logo URL。"
-#: actions/designadminpanel.php:344
+#. TRANS: Client error displayed when a theme is submitted through the form that is not in the theme list.
+#. TRANS: %s is the chosen unavailable theme.
+#: actions/designadminpanel.php:339
#, php-format
msgid "Theme not available: %s."
msgstr "主题不可用:%s。"
-#: actions/designadminpanel.php:448
+#. TRANS: Fieldset legend for form to change logo.
+#: actions/designadminpanel.php:437
msgid "Change logo"
msgstr "更换 logo"
-#: actions/designadminpanel.php:453
+#. TRANS: Field label for StatusNet site logo.
+#: actions/designadminpanel.php:444
msgid "Site logo"
msgstr "网站 logo"
-#: actions/designadminpanel.php:457
+#. TRANS: Field label for SSL StatusNet site logo.
+#: actions/designadminpanel.php:452
msgid "SSL logo"
msgstr "网站 SSL logo"
-#: actions/designadminpanel.php:469
+#. TRANS: Fieldset legend for form change StatusNet site's theme.
+#: actions/designadminpanel.php:467
msgid "Change theme"
msgstr "更换主题"
-#: actions/designadminpanel.php:486
+#. TRANS: Field label for dropdown to choose site theme.
+#: actions/designadminpanel.php:485
msgid "Site theme"
msgstr "网站主题"
+#. TRANS: Title for field label for dropdown to choose site theme.
#: actions/designadminpanel.php:487
msgid "Theme for the site."
msgstr "这个网站的主题。"
-#: actions/designadminpanel.php:493
+#. TRANS: Field label for uploading a cutom theme.
+#: actions/designadminpanel.php:494
msgid "Custom theme"
msgstr "自定义主题"
-#: actions/designadminpanel.php:497
+#. TRANS: Form instructions for uploading a cutom StatusNet theme.
+#: actions/designadminpanel.php:499
msgid "You can upload a custom StatusNet theme as a .ZIP archive."
msgstr "你可以上传一个 .ZIP 压缩文件作为一个自定义的 StatusNet 主题"
+#. TRANS: Fieldset legend for theme background image.
#. TRANS: Fieldset legend on profile design page.
-#: actions/designadminpanel.php:512 lib/designsettings.php:98
+#: actions/designadminpanel.php:515 lib/designsettings.php:98
msgid "Change background image"
msgstr "更换背景图像"
+#. TRANS: Field label for background image on theme designer page.
+#. TRANS: Field label for background color selector.
#. TRANS: Label on profile design page for setting a profile page background colour.
-#: actions/designadminpanel.php:517 actions/designadminpanel.php:600
+#: actions/designadminpanel.php:525 actions/designadminpanel.php:609
#: lib/designsettings.php:183
msgid "Background"
msgstr "背景"
-#: actions/designadminpanel.php:522
+#. TRANS: Form guide for background image upload form on theme designer page.
+#: actions/designadminpanel.php:531
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@@ -1873,99 +2125,104 @@ msgid ""
msgstr "你可以为网站上传一个背景图像。文件大小限制在%1$s以下。"
#. TRANS: Used as radio button label to add a background image.
-#: actions/designadminpanel.php:553
+#: actions/designadminpanel.php:558
msgid "On"
msgstr "打开"
#. TRANS: Used as radio button label to not add a background image.
-#: actions/designadminpanel.php:570
+#: actions/designadminpanel.php:575
msgid "Off"
msgstr "关闭"
+#. TRANS: Form guide for turning background image on or off on theme designer page.
#. TRANS: Form guide for a set of radio buttons on the profile design page that will enable or disable
#. TRANS: use of the uploaded profile image.
-#: actions/designadminpanel.php:571 lib/designsettings.php:159
+#: actions/designadminpanel.php:577 lib/designsettings.php:159
msgid "Turn background image on or off."
msgstr "打开或关闭背景图片"
+#. TRANS: Checkbox label to title background image on theme designer page.
#. TRANS: Checkbox label on profile design page that will cause the profile image to be tiled.
-#: actions/designadminpanel.php:576 lib/designsettings.php:165
+#: actions/designadminpanel.php:583 lib/designsettings.php:165
msgid "Tile background image"
msgstr "平铺背景图片"
-#. TRANS: Fieldset legend on profile design page to change profile page colours.
-#: actions/designadminpanel.php:590 lib/designsettings.php:175
-msgid "Change colours"
-msgstr "改变颜色"
+#. TRANS: Fieldset legend for theme colors.
+#: actions/designadminpanel.php:598
+msgid "Change colors"
+msgstr "更改颜色"
+#. TRANS: Field label for content color selector.
#. TRANS: Label on profile design page for setting a profile page content colour.
-#: actions/designadminpanel.php:613 lib/designsettings.php:197
+#: actions/designadminpanel.php:623 lib/designsettings.php:197
msgid "Content"
msgstr "内容"
+#. TRANS: Field label for sidebar color selector.
#. TRANS: Label on profile design page for setting a profile page sidebar colour.
-#: actions/designadminpanel.php:626 lib/designsettings.php:211
+#: actions/designadminpanel.php:637 lib/designsettings.php:211
msgid "Sidebar"
msgstr "边栏"
+#. TRANS: Field label for text color selector.
#. TRANS: Label on profile design page for setting a profile page text colour.
-#: actions/designadminpanel.php:639 lib/designsettings.php:225
+#: actions/designadminpanel.php:651 lib/designsettings.php:225
msgid "Text"
msgstr "文字"
+#. TRANS: Field label for link color selector.
#. TRANS: Label on profile design page for setting a profile page links colour.
-#: actions/designadminpanel.php:652 lib/designsettings.php:239
+#: actions/designadminpanel.php:665 lib/designsettings.php:239
msgid "Links"
msgstr "链接"
-#: actions/designadminpanel.php:677
+#. TRANS: Fieldset legend for advanced theme design settings.
+#: actions/designadminpanel.php:691
msgid "Advanced"
msgstr "高级"
-#: actions/designadminpanel.php:681
+#. TRANS: Field label for custom CSS.
+#: actions/designadminpanel.php:696
msgid "Custom CSS"
msgstr "自定义CSS"
-#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
-#: actions/designadminpanel.php:702 lib/designsettings.php:257
+#. TRANS: Button text for resetting theme settings.
+#: actions/designadminpanel.php:718
+msgctxt "BUTTON"
msgid "Use defaults"
msgstr "使用默认值"
-#. TRANS: Title for button on profile design page to reset all colour settings to default.
-#: actions/designadminpanel.php:703 lib/designsettings.php:259
-msgid "Restore default designs"
-msgstr "恢复默认外观"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:720
+msgid "Restore default designs."
+msgstr "还原默认设计。"
-#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
-#: actions/designadminpanel.php:709 lib/designsettings.php:267
-msgid "Reset back to default"
-msgstr "重置到默认"
+#. TRANS: Title for button for resetting theme settings.
+#: actions/designadminpanel.php:728
+msgid "Reset back to default."
+msgstr "重置回默认值。"
-#. TRANS: Submit button title.
-#: actions/designadminpanel.php:711 actions/licenseadminpanel.php:319
-#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292
-#: actions/snapshotadminpanel.php:245 actions/tagother.php:154
-#: lib/applicationeditform.php:357
-msgid "Save"
-msgstr "保存"
+#. TRANS: Title for button for saving theme settings.
+#: actions/designadminpanel.php:736
+msgid "Save design."
+msgstr "保存设计。"
-#. TRANS: Title for button on profile design page to save settings.
-#: actions/designadminpanel.php:712 lib/designsettings.php:272
-msgid "Save design"
-msgstr "保存外观"
-
-#: actions/disfavor.php:81
+#. TRANS: Client error displayed when trying to remove favorite status for a notice that is not a favorite.
+#: actions/disfavor.php:83
msgid "This notice is not a favorite!"
msgstr "此消息未被收藏!"
-#: actions/disfavor.php:94
+#. TRANS: Title for page on which favorites can be added.
+#: actions/disfavor.php:98
msgid "Add to favorites"
msgstr "加入收藏"
-#: actions/doc.php:158
+#. TRANS: Client exception thrown when requesting a document from the documentation that does not exist.
+#. TRANS: %s is the non-existing document.
+#: actions/doc.php:155
#, php-format
-msgid "No such document \"%s\""
-msgstr "没有这个文件“%s”。"
+msgid "No such document \"%s\"."
+msgstr "没有这样的文档\"%s\"。"
#. TRANS: Title for "Edit application" form.
#. TRANS: Form legend.
@@ -1979,7 +2236,7 @@ msgid "You must be logged in to edit an application."
msgstr "你必须登录后才能编辑应用。"
#. TRANS: Client error displayed trying to edit an application that does not exist.
-#: actions/editapplication.php:83 actions/showapplication.php:87
+#: actions/editapplication.php:83 actions/showapplication.php:83
msgid "No such application."
msgstr "没有这个应用。"
@@ -1989,61 +2246,71 @@ msgid "Use this form to edit your application."
msgstr "通过此表单来编辑你的应用。"
#. TRANS: Validation error shown when not providing a name in the "Edit application" form.
-#: actions/editapplication.php:184 actions/newapplication.php:163
+#. TRANS: Validation error shown when not providing a name in the "New application" form.
+#: actions/editapplication.php:184 actions/newapplication.php:164
msgid "Name is required."
msgstr "名字为必填项。"
#. TRANS: Validation error shown when providing too long a name in the "Edit application" form.
-#: actions/editapplication.php:188 actions/newapplication.php:169
+#. TRANS: Validation error shown when providing too long a name in the "New application" form.
+#: actions/editapplication.php:188 actions/newapplication.php:172
msgid "Name is too long (maximum 255 characters)."
msgstr "名称过长(不能超过255个字符)。"
#. TRANS: Validation error shown when providing a name for an application that already exists in the "Edit application" form.
-#: actions/editapplication.php:192 actions/newapplication.php:166
+#. TRANS: Validation error shown when providing a name for an application that already exists in the "New application" form.
+#: actions/editapplication.php:192 actions/newapplication.php:168
msgid "Name already in use. Try another one."
msgstr "名字已被使用,换一个吧。"
#. TRANS: Validation error shown when not providing a description in the "Edit application" form.
-#: actions/editapplication.php:196 actions/newapplication.php:172
+#. TRANS: Validation error shown when not providing a description in the "New application" form.
+#: actions/editapplication.php:196 actions/newapplication.php:176
msgid "Description is required."
msgstr "必须填写描述。"
#. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form.
-#: actions/editapplication.php:208
+#: actions/editapplication.php:209
msgid "Source URL is too long."
msgstr "来源 URL 太长。"
#. TRANS: Validation error shown when providing an invalid source URL in the "Edit application" form.
-#: actions/editapplication.php:215 actions/newapplication.php:193
+#. TRANS: Validation error shown when providing an invalid source URL in the "New application" form.
+#: actions/editapplication.php:216 actions/newapplication.php:199
msgid "Source URL is not valid."
msgstr "来源 URL 无效。"
#. TRANS: Validation error shown when not providing an organisation in the "Edit application" form.
-#: actions/editapplication.php:219 actions/newapplication.php:196
+#. TRANS: Validation error shown when not providing an organisation in the "New application" form.
+#: actions/editapplication.php:220 actions/newapplication.php:203
msgid "Organization is required."
msgstr "组织名称必填。"
#. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form.
-#: actions/editapplication.php:223 actions/newapplication.php:199
+#: actions/editapplication.php:224 actions/newapplication.php:207
msgid "Organization is too long (maximum 255 characters)."
msgstr "组织名称过长(不能超过255个字符)。"
-#: actions/editapplication.php:226 actions/newapplication.php:202
+#. TRANS: Form validation error show when an organisation name has not been provided in the edit application form.
+#. TRANS: Form validation error show when an organisation name has not been provided in the new application form.
+#: actions/editapplication.php:228 actions/newapplication.php:211
msgid "Organization homepage is required."
msgstr "组织首页必填。"
#. TRANS: Validation error shown when providing too long a callback URL in the "Edit application" form.
-#: actions/editapplication.php:237 actions/newapplication.php:214
+#. TRANS: Validation error shown when providing too long a callback URL in the "New application" form.
+#: actions/editapplication.php:239 actions/newapplication.php:225
msgid "Callback is too long."
msgstr "调回地址(callback)过长。"
#. TRANS: Validation error shown when providing an invalid callback URL in the "Edit application" form.
-#: actions/editapplication.php:245 actions/newapplication.php:223
+#. TRANS: Validation error shown when providing an invalid callback URL in the "New application" form.
+#: actions/editapplication.php:247 actions/newapplication.php:235
msgid "Callback URL is not valid."
msgstr "调回地址(Callback URL)无效。"
#. TRANS: Server error occuring when an application could not be updated from the "Edit application" form.
-#: actions/editapplication.php:282
+#: actions/editapplication.php:284
msgid "Could not update application."
msgstr "无法更新应用。"
@@ -2054,14 +2321,17 @@ msgid "Edit %s group"
msgstr "编辑 %s 小组"
#. TRANS: Client error displayed trying to edit a group while not logged in.
+#. TRANS: Client error displayed when trying to create a group while not logged in.
#. TRANS: Client error displayed trying to create a group while not logged in.
-#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
+#: actions/editgroup.php:68 actions/grouplogo.php:69 actions/newgroup.php:65
msgid "You must be logged in to create a group."
msgstr "你必须登录才能创建小组。"
#. TRANS: Client error displayed trying to edit a group while not being a group admin.
+#. TRANS: Client error displayed trying to change group design settings without being a (group) admin.
+#. TRANS: Client error displayed when trying to change group logo settings while not being a group admin.
#: actions/editgroup.php:110 actions/editgroup.php:176
-#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109
+#: actions/groupdesignsettings.php:109 actions/grouplogo.php:111
msgid "You must be an admin to edit the group."
msgstr "管理员才可以编辑小组。"
@@ -2072,63 +2342,65 @@ msgstr "通过这个表单来编辑小组"
#. TRANS: Group edit form validation error.
#. TRANS: Group create form validation error.
-#: actions/editgroup.php:239 actions/newgroup.php:179
+#. TRANS: %s is the invalid alias.
+#: actions/editgroup.php:241 actions/newgroup.php:188
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "无效的别名:“%s”。"
#. TRANS: Server error displayed when editing a group fails.
-#: actions/editgroup.php:272
+#: actions/editgroup.php:274
msgid "Could not update group."
msgstr "无法更新小组"
#. TRANS: Server error displayed when group aliases could not be added.
#. TRANS: Server exception thrown when creating group aliases failed.
-#: actions/editgroup.php:279 classes/User_group.php:529
+#: actions/editgroup.php:281 classes/User_group.php:540
msgid "Could not create aliases."
msgstr "无法创建别名。"
#. TRANS: Group edit form success message.
-#: actions/editgroup.php:296
+#: actions/editgroup.php:301
msgid "Options saved."
msgstr "选项已保存。"
#. TRANS: Title for e-mail settings.
-#: actions/emailsettings.php:61
+#: actions/emailsettings.php:59
msgid "Email settings"
msgstr "Email 设置"
#. TRANS: E-mail settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/emailsettings.php:76
+#: actions/emailsettings.php:73
#, php-format
msgid "Manage how you get email from %%site.name%%."
msgstr "设置你如何接受来自 %%site.name%% 的邮件。"
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
-#: actions/emailsettings.php:107 actions/emailsettings.php:133
+#: actions/emailsettings.php:103 actions/emailsettings.php:129
msgid "Email address"
msgstr "电邮地址"
#. TRANS: Form note in e-mail settings form.
-#: actions/emailsettings.php:113
+#: actions/emailsettings.php:109
msgid "Current confirmed email address."
msgstr "当前确认的电子邮件。"
#. TRANS: Button label to remove a confirmed e-mail address.
#. TRANS: Button label for removing a set sender e-mail address to post notices from.
-#. TRANS: Button label to remove a confirmed IM address.
+#. TRANS: Button label to remove a confirmed Instant Messaging address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
-#: actions/emailsettings.php:116 actions/emailsettings.php:183
-#: actions/imsettings.php:116 actions/smssettings.php:124
-#: actions/smssettings.php:180
+#: actions/emailsettings.php:112 actions/emailsettings.php:179
+#: actions/imsettings.php:112 actions/smssettings.php:120
+#: actions/smssettings.php:176
msgctxt "BUTTON"
msgid "Remove"
msgstr "移除"
-#: actions/emailsettings.php:123
+#. TRANS: Form note in e-mail settings form.
+#: actions/emailsettings.php:119
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@@ -2141,132 +2413,133 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
-#: actions/emailsettings.php:140
+#: actions/emailsettings.php:136
msgid "Email address, like \"UserName@example.org\""
msgstr "电子邮件,类似 \"UserName@example.org\""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
-#. TRANS: Button label for adding an IM address in IM settings form.
+#. TRANS: Button label for adding an Instant Messaging address in Instant Messaging settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
-#: actions/emailsettings.php:144 actions/imsettings.php:151
-#: actions/smssettings.php:162
+#: actions/emailsettings.php:140 actions/imsettings.php:147
+#: actions/smssettings.php:158
msgctxt "BUTTON"
msgid "Add"
msgstr "添加"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
-#: actions/emailsettings.php:152 actions/smssettings.php:171
+#: actions/emailsettings.php:148 actions/smssettings.php:167
msgid "Incoming email"
msgstr "接收用 email"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:158
+#: actions/emailsettings.php:154
msgid "I want to post notices by email."
msgstr "我希望通过邮件发布信息。"
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
-#: actions/emailsettings.php:180 actions/smssettings.php:178
+#: actions/emailsettings.php:176 actions/smssettings.php:174
msgid "Send email to this address to post new notices."
msgstr "通过发送电子邮件到这个地址来发布新的消息。"
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
-#: actions/emailsettings.php:189 actions/smssettings.php:186
+#: actions/emailsettings.php:185 actions/smssettings.php:182
msgid "Make a new email address for posting to; cancels the old one."
msgstr "生成新的电子邮件地址用于发布消息;取消旧的。"
#. TRANS: Instructions for incoming e-mail address input form.
-#: actions/emailsettings.php:193
+#: actions/emailsettings.php:189
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
+"要发送电子邮件通知,我们需要在此服务器上为您创建一个唯一的电子邮件地址:"
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
-#: actions/emailsettings.php:199 actions/smssettings.php:189
+#: actions/emailsettings.php:195 actions/smssettings.php:185
msgctxt "BUTTON"
msgid "New"
msgstr "新增"
#. TRANS: Form legend for e-mail preferences form.
-#: actions/emailsettings.php:208
+#: actions/emailsettings.php:204
msgid "Email preferences"
msgstr "Email 偏好"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:216
+#: actions/emailsettings.php:212
msgid "Send me notices of new subscriptions through email."
msgstr "将新的关注通过电子邮件发送给我。"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:222
+#: actions/emailsettings.php:218
msgid "Send me email when someone adds my notice as a favorite."
msgstr "有人收藏我的消息时,发邮件通知我。"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:229
+#: actions/emailsettings.php:225
msgid "Send me email when someone sends me a private message."
msgstr "有人给我发送私信时,发邮件通知我。"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:235
+#: actions/emailsettings.php:231
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "有人给我发送 @ 消息时,发邮件通知我。"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:241
+#: actions/emailsettings.php:237
msgid "Allow friends to nudge me and send me an email."
msgstr "允许朋友们呼叫我并给我发送邮件。"
#. TRANS: Checkbox label in e-mail preferences form.
-#: actions/emailsettings.php:247
+#: actions/emailsettings.php:243
msgid "Publish a MicroID for my email address."
msgstr "公开电子邮件的 MicroID。"
#. TRANS: Confirmation message for successful e-mail preferences save.
-#: actions/emailsettings.php:368
+#: actions/emailsettings.php:361
msgid "Email preferences saved."
msgstr "Email 偏好已保存。"
#. TRANS: Message given saving e-mail address without having provided one.
-#: actions/emailsettings.php:388
+#: actions/emailsettings.php:380
msgid "No email address."
msgstr "没有电子邮件地址。"
#. TRANS: Message given saving e-mail address that cannot be normalised.
-#: actions/emailsettings.php:396
-msgid "Cannot normalize that email address"
-msgstr "无法识别此电子邮件"
+#: actions/emailsettings.php:388
+msgid "Cannot normalize that email address."
+msgstr "无法识别此电子邮件。"
#. TRANS: Message given saving e-mail address that not valid.
-#: actions/emailsettings.php:401 actions/register.php:212
+#: actions/emailsettings.php:393 actions/register.php:204
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "不是有效的电子邮件。"
#. TRANS: Message given saving e-mail address that is already set.
-#: actions/emailsettings.php:405
+#: actions/emailsettings.php:397
msgid "That is already your email address."
msgstr "你已登记此电子邮件。"
#. TRANS: Message given saving e-mail address that is already set for another user.
-#: actions/emailsettings.php:409
+#: actions/emailsettings.php:401
msgid "That email address already belongs to another user."
msgstr "此电子邮件属于其他用户。"
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
-#. TRANS: Server error thrown on database error adding IM confirmation code.
+#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:426 actions/imsettings.php:351
-#: actions/smssettings.php:373
-msgid "Couldn't insert confirmation code."
+#: actions/emailsettings.php:418 actions/imsettings.php:343
+#: actions/smssettings.php:365
+msgid "Could not insert confirmation code."
msgstr "无法插入确认码。"
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:433
+#: actions/emailsettings.php:425
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."
@@ -2275,236 +2548,295 @@ msgstr ""
"用说明。"
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
-#. TRANS: Message given canceling IM address confirmation that is not pending.
+#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:454 actions/imsettings.php:386
-#: actions/smssettings.php:408
+#: actions/emailsettings.php:445 actions/imsettings.php:377
+#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr "没有可以取消的确认。"
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:459
+#: actions/emailsettings.php:450
msgid "That is the wrong email address."
msgstr "这是错误的电子邮件地址。"
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
-#: actions/emailsettings.php:468 actions/smssettings.php:422
-msgid "Couldn't delete email confirmation."
+#: actions/emailsettings.php:459 actions/smssettings.php:413
+msgid "Could not delete email confirmation."
msgstr "无法删除电子邮件确认。"
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:473
+#: actions/emailsettings.php:464
msgid "Email confirmation cancelled."
msgstr "Email 确认已取消。"
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:493
+#: actions/emailsettings.php:483
msgid "That is not your email address."
msgstr "这个不是你的电子邮件地址。"
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:514
+#: actions/emailsettings.php:504
msgid "The email address was removed."
msgstr "电子邮件地址已被删除。"
-#: actions/emailsettings.php:528 actions/smssettings.php:568
+#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
+#: actions/emailsettings.php:518 actions/smssettings.php:555
msgid "No incoming email address."
msgstr "没有发布用的电子邮件地址。"
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
-#: actions/emailsettings.php:540 actions/emailsettings.php:565
-#: actions/smssettings.php:578 actions/smssettings.php:602
-msgid "Couldn't update user record."
+#. TRANS: Server error displayed when the user could not be updated in SMS settings.
+#: actions/emailsettings.php:530 actions/emailsettings.php:554
+#: actions/smssettings.php:566 actions/smssettings.php:591
+msgid "Could not update user record."
msgstr "无法更新用户记录。"
#. TRANS: Message given after successfully removing an incoming e-mail address.
-#: actions/emailsettings.php:544 actions/smssettings.php:581
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:534 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr "发布用的电子邮件被删除。"
#. TRANS: Message given after successfully adding an incoming e-mail address.
-#: actions/emailsettings.php:569 actions/smssettings.php:605
+#. TRANS: Confirmation text after updating SMS settings.
+#: actions/emailsettings.php:558 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr "已添加新的发布用的电子邮件地址。"
-#: actions/favor.php:79
+#. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite.
+#: actions/favor.php:80
msgid "This notice is already a favorite!"
msgstr "已收藏过此消息!"
-#: actions/favor.php:92 lib/disfavorform.php:144
-msgid "Disfavor favorite"
-msgstr "取消收藏"
+#. TRANS: Page title for page on which favorite notices can be unfavourited.
+#: actions/favor.php:95
+msgid "Disfavor favorite."
+msgstr "不是赞成的最爱。"
+#. TRANS: Page title for first page of favorited notices.
+#. TRANS: Title for favourited notices section.
#: actions/favorited.php:65 lib/popularnoticesection.php:62
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr "最新被收藏的消息"
-#: actions/favorited.php:67
+#. TRANS: Page title for all but first page of favorited notices.
+#. TRANS: %d is the page number being displayed.
+#: actions/favorited.php:69
#, php-format
msgid "Popular notices, page %d"
msgstr "最新被收藏的消息,第%d页"
-#: actions/favorited.php:79
+#. TRANS: Description on page displaying favorited notices.
+#: actions/favorited.php:81
msgid "The most popular notices on the site right now."
msgstr "目前网站上最新被收藏的消息。"
-#: actions/favorited.php:150
+#. TRANS: Text displayed instead of a list when a site does not yet have any favourited notices.
+#: actions/favorited.php:149
msgid "Favorite notices appear on this page but no one has favorited one yet."
msgstr "此页面展示收藏的消息,但还没有人收藏任何消息。"
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for logged in users.
#: 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
+#. TRANS: Additional text displayed instead of a list when a site does not yet have any favourited notices for not logged in users.
+#. TRANS: %%action.register%% is a registration link. "[link text](link)" is Mark Down. Do not change the formatting.
+#: actions/favorited.php:158
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to add a "
"notice to your favorites!"
msgstr "现在就[注册一个账户](%%action.register%%)并成为第一个添加收藏的人!"
-#: actions/favoritesrss.php:111 actions/showfavorites.php:77
-#: lib/personalgroupnav.php:118
+#. TRANS: Title of RSS feed with favourite notices of a user.
+#. TRANS: %s is a user's nickname.
+#. TRANS: Title for first page of favourite notices of a user.
+#. TRANS: %s is the user for whom the favourite notices are displayed.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing own favourited notices.
+#: actions/favoritesrss.php:111 actions/showfavorites.php:76
+#: lib/personalgroupnav.php:122
#, php-format
msgid "%s's favorite notices"
msgstr "%s收藏的消息"
-#: actions/favoritesrss.php:115
+#. TRANS: Desciption of RSS feed with favourite notices of a user.
+#. TRANS: %1$s is a user's nickname, %2$s is the name of the StatusNet site.
+#: actions/favoritesrss.php:117
#, php-format
msgid "Updates favored by %1$s on %2$s!"
msgstr "%2$s 上被 %1$s 收藏的消息!"
+#. TRANS: Page title for first page of featured users.
+#. TRANS: Title for featured users section.
#: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89
msgid "Featured users"
msgstr "推荐用户"
-#: actions/featured.php:71
+#. TRANS: Page title for all but first page of featured users.
+#. TRANS: %d is the page number being displayed.
+#: actions/featured.php:73
#, php-format
msgid "Featured users, page %d"
msgstr "推荐用户,第 %d 页"
-#: actions/featured.php:99
+#. TRANS: Description on page displaying featured users.
+#: actions/featured.php:102
#, php-format
-msgid "A selection of some great users on %s"
-msgstr "%s上的优秀用户摘选"
+msgid "A selection of some great users on %s."
+msgstr "%s上的一些优秀的用户摘选。"
-#: actions/file.php:34
+#. TRANS: Client error displayed when no notice ID was given trying do display a file.
+#: actions/file.php:36
msgid "No notice ID."
msgstr "没有消息 ID。"
-#: actions/file.php:38
+#. TRANS: Client error displayed when an invalid notice ID was given trying do display a file.
+#: actions/file.php:41
msgid "No notice."
msgstr "没有消息。"
-#: actions/file.php:42
+#. TRANS: Client error displayed when trying do display a file for a notice without a file attachement.
+#: actions/file.php:46
msgid "No attachments."
msgstr "没有附件。"
-#: actions/file.php:51
+#. TRANS: Client error displayed when trying do display a file for a notice with file attachements
+#. TRANS: that could not be found.
+#: actions/file.php:58
msgid "No uploaded attachments."
msgstr "没有已上传的附件。"
+#. TRANS: Client error displayed when subscribing to a remote profile and an unexpected response is received.
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
msgstr "未预料的响应!"
-#: actions/finishremotesubscribe.php:80
+#. TRANS: Client error displayed when subscribing to a remote profile that does not exist.
+#: actions/finishremotesubscribe.php:81
msgid "User being listened to does not exist."
msgstr "要查看的用户不存在。"
-#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59
+#. TRANS: Client error displayed when subscribing to a remote profile that is a local profile.
+#: actions/finishremotesubscribe.php:89 actions/remotesubscribe.php:58
msgid "You can use the local subscription!"
msgstr "你可以使用本地关注!"
-#: actions/finishremotesubscribe.php:99
+#. TRANS: Client error displayed when subscribing to a remote profile that is blocked form subscribing to.
+#: actions/finishremotesubscribe.php:102
msgid "That user has blocked you from subscribing."
msgstr "该用户屏蔽了你,无法关注。"
-#: actions/finishremotesubscribe.php:110
+#. TRANS: Client error displayed when subscribing to a remote profile without providing an authorised token.
+#: actions/finishremotesubscribe.php:114
msgid "You are not authorized."
msgstr "你没有被授权。"
-#: actions/finishremotesubscribe.php:113
+#. TRANS: Client error displayed when subscribing to a remote profile and conversion of the request token to access token fails.
+#: actions/finishremotesubscribe.php:118
msgid "Could not convert request token to access token."
msgstr "无法将 request token 转换为 access token。"
-#: actions/finishremotesubscribe.php:118
+#. TRANS: Client error displayed when subscribing to a remote profile fails because of an unsupported version of the OMB protocol.
+#: actions/finishremotesubscribe.php:124
msgid "Remote service uses unknown version of OMB protocol."
msgstr "远程服务使用了未知版本的 OMB 协议。"
-#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:317
+#. TRANS: Server error displayed when subscribing to a remote profile fails because the remote profile could not be updated.
+#: actions/finishremotesubscribe.php:145 lib/oauthstore.php:317
msgid "Error updating remote profile."
msgstr "更新远程的个人信息时出错。"
-#: actions/getfile.php:79
+#. TRANS: Client error displayed when requesting a non-existent file.
+#: actions/getfile.php:77
msgid "No such file."
msgstr "没有这个文件。"
-#: actions/getfile.php:83
+#. TRANS: Client error displayed when requesting a file without having read access to it.
+#: actions/getfile.php:82
msgid "Cannot read file."
msgstr "无法读取文件。"
-#: actions/grantrole.php:62 actions/revokerole.php:62
+#. TRANS: Client error displayed when trying to assign an invalid role to a user.
+#: actions/grantrole.php:61 actions/revokerole.php:62
msgid "Invalid role."
msgstr "无效的权限。"
+#. TRANS: Client error displayed when trying to assign an reserved role to a user.
#: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set."
msgstr "此权限是保留的且不能被设置。"
-#: actions/grantrole.php:75
+#. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles.
+#: actions/grantrole.php:76
msgid "You cannot grant user roles on this site."
msgstr "你不能在这个网站授予用户权限。"
-#: actions/grantrole.php:82
+#. TRANS: Client error displayed when trying to assign a role to a user that already has that role.
+#: actions/grantrole.php:84
msgid "User already has this role."
msgstr "用户已有此权限。"
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile.
#. TRANS: Client error displayed trying a change a subscription without providing a profile.
+#. TRANS: Client error displayed when trying to change user options without specifying a user to work on.
#: actions/groupblock.php:71 actions/groupunblock.php:71
#: actions/makeadmin.php:71 actions/subedit.php:49
#: lib/profileformaction.php:79
msgid "No profile specified."
msgstr "没有指定的用户。"
+#. TRANS: Client error displayed trying to block a user from a group while specifying a non-existing profile.
#. TRANS: Client error displayed when trying to unblock a user from a group without providing an existing profile.
#. TRANS: Client error displayed trying a change a subscription for a non-existant profile ID.
-#: actions/groupblock.php:76 actions/groupunblock.php:77
+#. TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
+#: actions/groupblock.php:77 actions/groupunblock.php:77
#: actions/makeadmin.php:76 actions/subedit.php:57 actions/tagother.php:46
-#: actions/unsubscribe.php:84 lib/profileformaction.php:86
+#: actions/unsubscribe.php:84 lib/profileformaction.php:87
msgid "No profile with that ID."
msgstr "此 ID 没有用户。"
-#: actions/groupblock.php:81 actions/groupunblock.php:82
+#. TRANS: Client error displayed trying to block a user from a group while not specifying a group to block a profile from.
+#. TRANS: Client error displayed when trying to unblock a user from a group without providing a group.
+#: actions/groupblock.php:83 actions/groupunblock.php:83
#: actions/makeadmin.php:81
msgid "No group specified."
msgstr "没有指定小组。"
-#: actions/groupblock.php:91
+#. TRANS: Client error displayed trying to block a user from a group while not being an admin user.
+#: actions/groupblock.php:95
msgid "Only an admin can block group members."
msgstr "只有管理员可以屏蔽小组成员。"
-#: actions/groupblock.php:95
+#. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group.
+#: actions/groupblock.php:100
msgid "User is already blocked from group."
msgstr "用户已经被小组屏蔽。"
-#: actions/groupblock.php:100
+#. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group.
+#: actions/groupblock.php:106
msgid "User is not a member of group."
msgstr "用户不是小组成员。"
-#: actions/groupblock.php:134 actions/groupmembers.php:364
+#. TRANS: Title for block user from group page.
+#. TRANS: Form legend for form to block user from a group.
+#: actions/groupblock.php:141 actions/groupmembers.php:364
msgid "Block user from group"
msgstr "从小组中屏蔽用户"
-#: actions/groupblock.php:160
+#. TRANS: Explanatory text for block user from group form before setting the block.
+#. TRANS: %1$s is that to be blocked user, %2$s is the group the user will be blocked from.
+#: actions/groupblock.php:169
#, php-format
msgid ""
"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They "
@@ -2515,163 +2847,189 @@ msgstr ""
"内发布消息或关注该小组。"
#. TRANS: Submit button title for 'No' when blocking a user from a group.
-#: actions/groupblock.php:182
-msgid "Do not block this user from this group"
+#: actions/groupblock.php:191
+msgid "Do not block this user from this group."
msgstr "不要在此小组屏蔽此用户。"
#. TRANS: Submit button title for 'Yes' when blocking a user from a group.
-#: actions/groupblock.php:189
-msgid "Block this user from this group"
-msgstr "在小组中屏蔽此用户。"
+#: actions/groupblock.php:198
+msgid "Block this user from this group."
+msgstr "阻止此此组中的用户。"
-#: actions/groupblock.php:206
+#. TRANS: Server error displayed when trying to block a user from a group fails because of an application error.
+#: actions/groupblock.php:215
msgid "Database error blocking user from group."
msgstr "在小组中屏蔽用户时数据库发生错误。"
-#: actions/groupbyid.php:74 actions/userbyid.php:70
+#. TRANS: Client error displayed referring to a group's permalink without providing a group ID.
+#. TRANS: Client error displayed trying to find a user by ID without providing an ID.
+#: actions/groupbyid.php:73 actions/userbyid.php:70
msgid "No ID."
msgstr "没有 ID。"
-#: actions/groupdesignsettings.php:68
+#. TRANS: Client error displayed trying to change group design settings while not logged in.
+#: actions/groupdesignsettings.php:67
msgid "You must be logged in to edit a group."
msgstr "你必须登录才能创建小组。"
-#: actions/groupdesignsettings.php:144
+#. TRANS: Title group design settings page.
+#: actions/groupdesignsettings.php:146
msgid "Group design"
msgstr "小组页面外观。"
-#: actions/groupdesignsettings.php:155
+#. TRANS: Instructions for group design settings page.
+#: actions/groupdesignsettings.php:157
msgid ""
"Customize the way your group looks with a background image and a colour "
"palette of your choice."
msgstr "通过背景图片和颜色板来自定义你的小组的外观。"
-#. TRANS: Error message displayed if design settings could not be saved.
-#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
-#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186
-#: lib/designsettings.php:405 lib/designsettings.php:427
-msgid "Couldn't update your design."
-msgstr "无法更新你的外观。"
+#. TRANS: Form validation error displayed when group design settings could not be updated because of an application issue.
+#: actions/groupdesignsettings.php:262
+msgid "Unable to update your design settings."
+msgstr "无法更新你的外观设置。"
-#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231
+#. TRANS: Form text to confirm saved group design settings.
+#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:222
msgid "Design preferences saved."
msgstr "外观偏好已保存。"
-#: actions/grouplogo.php:142 actions/grouplogo.php:195
+#. TRANS: Title for group logo settings page.
+#. TRANS: Group logo form legend.
+#: actions/grouplogo.php:144 actions/grouplogo.php:199
msgid "Group logo"
msgstr "小组logo"
-#: actions/grouplogo.php:153
+#. TRANS: Instructions for group logo page.
+#. TRANS: %s is the maximum file size for that site.
+#: actions/grouplogo.php:156
#, php-format
msgid ""
"You can upload a logo image for your group. The maximum file size is %s."
msgstr "你可以给你的小组上传一个 logo。文件最大限制为%s。"
-#: actions/grouplogo.php:236
+#. TRANS: Submit button for uploading a group logo.
+#: actions/grouplogo.php:243
msgid "Upload"
msgstr "上传"
-#: actions/grouplogo.php:289
+#. TRANS: Button text for cropping an uploaded group logo.
+#: actions/grouplogo.php:299
msgid "Crop"
msgstr "剪裁"
-#: actions/grouplogo.php:365
+#. TRANS: Form instructions on the group logo page.
+#: actions/grouplogo.php:376
msgid "Pick a square area of the image to be the logo."
msgstr "请选择一块方形区域作为 logo。"
-#: actions/grouplogo.php:399
+#. TRANS: Form success message after updating a group logo.
+#: actions/grouplogo.php:411
msgid "Logo updated."
msgstr "logo已更新。"
-#: actions/grouplogo.php:401
+#. TRANS: Form failure message after failing to update a group logo.
+#: actions/grouplogo.php:414
msgid "Failed updating logo."
msgstr "更新 logo 失败。"
#. TRANS: Title of the page showing group members.
#. TRANS: %s is the name of the group.
-#: actions/groupmembers.php:102
+#: actions/groupmembers.php:104
#, php-format
msgid "%s group members"
msgstr "%s 的小组成员"
#. TRANS: Title of the page showing group members.
#. TRANS: %1$s is the name of the group, %2$d is the page number of the members list.
-#: actions/groupmembers.php:107
+#: actions/groupmembers.php:109
#, php-format
msgid "%1$s group members, page %2$d"
msgstr "%s 的小组成员,第%2$d页"
-#: actions/groupmembers.php:122
+#. TRANS: Page notice for group members page.
+#: actions/groupmembers.php:125
msgid "A list of the users in this group."
msgstr "该小组的成员列表。"
-#: actions/groupmembers.php:186
+#. TRANS: Indicator in group members list that this user is a group administrator.
+#: actions/groupmembers.php:190
msgid "Admin"
msgstr "管理"
#. TRANS: Button text for the form that will block a user from a group.
-#: actions/groupmembers.php:399
+#: actions/groupmembers.php:397
msgctxt "BUTTON"
msgid "Block"
msgstr "屏蔽"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:403
+#: actions/groupmembers.php:401
msgctxt "TOOLTIP"
msgid "Block this user"
msgstr "屏蔽这个用户"
-#: actions/groupmembers.php:498
+#. TRANS: Form legend for form to make a user a group admin.
+#: actions/groupmembers.php:488
msgid "Make user an admin of the group"
msgstr "使用户成为小组的管理员"
#. TRANS: Button text for the form that will make a user administrator.
-#: actions/groupmembers.php:533
+#: actions/groupmembers.php:521
msgctxt "BUTTON"
msgid "Make Admin"
msgstr "设置管理员"
#. TRANS: Submit button title.
-#: actions/groupmembers.php:537
+#: actions/groupmembers.php:525
msgctxt "TOOLTIP"
msgid "Make this user an admin"
msgstr "将这个用户设为管理员"
#. TRANS: Message is used as link description. %1$s is a username, %2$s is a site name.
-#: actions/grouprss.php:142
+#: actions/grouprss.php:141
#, php-format
msgid "Updates from members of %1$s on %2$s!"
msgstr "在%2$s上%1$s小组组员的更新!"
-#: actions/groups.php:62 lib/profileaction.php:223 lib/profileaction.php:249
-#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+#. TRANS: Title for first page of the groups list.
+#: actions/groups.php:62
+msgctxt "TITLE"
msgid "Groups"
msgstr "小组"
-#: actions/groups.php:64
+#. TRANS: Title for all but the first page of the groups list.
+#. TRANS: %d is the page number.
+#: actions/groups.php:66
#, php-format
+msgctxt "TITLE"
msgid "Groups, page %d"
-msgstr "小组,第 %d 页"
+msgstr "小组列表,第 %d 页"
-#: actions/groups.php:90
+#. TRANS: Page notice of group list. %%%%site.name%%%% is the StatusNet site name,
+#. TRANS: %%%%action.groupsearch%%%% and %%%%action.newgroup%%%% are URLs. Do not change them.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groups.php:95
#, 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"
-"%%%%)"
+"for one](%%%%action.groupsearch%%%%) or [start your own](%%%%action.newgroup%"
+"%%%)!"
msgstr ""
"%%%%site.name%%%%的小组可以让你找到有相同兴趣的朋友一起交流。当你加入到一个小"
"组后可以可以通过使用“!小组名称”发布消息给所有其他的小组成员。找不到感兴趣的小"
"组?试一下[搜索小组](%%%%action.groupsearch%%%%)或[建立自己的小组](%%%%"
"action.newgroup%%%%)!"
-#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122
+#. TRANS: Link to create a new group on the group list page.
+#: actions/groups.php:113 actions/usergroups.php:126 lib/groupeditform.php:115
msgid "Create a new group"
msgstr "新建一个小组"
-#: actions/groupsearch.php:52
+#. TRANS: Instructions for page where groups can be searched. %%site.name%% is the name of the StatusNet site.
+#: actions/groupsearch.php:53
#, php-format
msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
@@ -2680,23 +3038,31 @@ msgstr ""
"在%%site.name%%通过名称、地点或者描述搜索小组。请用空格将关键词分开,每个关键"
"词至少3个字符。"
-#: actions/groupsearch.php:58
+#. TRANS: Title for page where groups can be searched.
+#: actions/groupsearch.php:60
msgid "Group search"
msgstr "小组搜索"
-#: actions/groupsearch.php:79 actions/noticesearch.php:117
-#: actions/peoplesearch.php:83
+#. TRANS: Text on page where groups can be searched if no results were found for a query.
+#. TRANS: Text for notice search results is the query had no results.
+#. TRANS: Message on the "People search" page where a query has no results.
+#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/peoplesearch.php:87
msgid "No results."
msgstr "没有查询结果。"
-#: actions/groupsearch.php:82
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:87
#, php-format
msgid ""
-"If you can't find the group you're looking for, you can [create it](%%action."
-"newgroup%%) yourself."
-msgstr "如果你找不到你想要的小组,你可以自己 [创建它](%%action.newgroup%%) 。"
+"If you cannot find the group you're looking for, you can [create it](%%"
+"action.newgroup%%) yourself."
+msgstr "如果你找不到想要的小组,你可以自己 [创建它](%%action.newgroup%%) 。"
-#: actions/groupsearch.php:85
+#. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user.
+#. TRANS: This message contains Markdown links in the form [link text](link).
+#: actions/groupsearch.php:92
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and [create the group](%%"
@@ -2706,207 +3072,221 @@ msgstr ""
"%) !"
#. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group.
-#: actions/groupunblock.php:94
+#: actions/groupunblock.php:95
msgid "Only an admin can unblock group members."
msgstr "只有管理员可以取消屏蔽小组成员。"
#. TRANS: Client error displayed when trying to unblock a non-blocked user from a group.
-#: actions/groupunblock.php:99
+#: actions/groupunblock.php:100
msgid "User is not blocked from group."
msgstr "用户未被小组屏蔽。"
#. TRANS: Server error displayed when unblocking a user from a group fails because of an unknown error.
-#: actions/groupunblock.php:131 actions/unblock.php:86
+#. TRANS: Server error displayed when removing a user block.
+#: actions/groupunblock.php:132 actions/unblock.php:86
msgid "Error removing the block."
msgstr "取消屏蔽时出错。"
-#. TRANS: Title for instance messaging settings.
-#: actions/imsettings.php:60
+#. TRANS: Title for Instant Messaging settings.
+#: actions/imsettings.php:58
msgid "IM settings"
msgstr "IM 设置"
#. TRANS: Instant messaging settings page instructions.
#. TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link.
#. TRANS: the order and formatting of link text and link should remain unchanged.
-#: actions/imsettings.php:74
+#: actions/imsettings.php:71
#, php-format
msgid ""
-"You can send and receive notices through Jabber/GTalk [instant messages](%%"
-"doc.im%%). Configure your address and settings below."
+"You can send and receive notices through Jabber/Google Talk [instant "
+"messages](%%doc.im%%). Configure your address and settings below."
msgstr ""
"你可以通过Jabber/GTalk [即时通讯工具](%%doc.im%%)发送和接收消息。在这里配置它"
"们。"
-#. TRANS: Message given in the IM settings if XMPP is not enabled on the site.
-#: actions/imsettings.php:94
+#. TRANS: Message given in the Instant Messaging settings if XMPP is not enabled on the site.
+#: actions/imsettings.php:90
msgid "IM is not available."
msgstr "IM 不可用。"
-#. TRANS: Form legend for IM settings form.
-#. TRANS: Field label for IM address input in IM settings form.
-#: actions/imsettings.php:106 actions/imsettings.php:136
+#. TRANS: Form legend for Instant Messaging settings form.
+#. TRANS: Field label for Instant Messaging address input in Instant Messaging settings form.
+#: actions/imsettings.php:102 actions/imsettings.php:132
msgid "IM address"
msgstr "IM 地址"
-#: actions/imsettings.php:113
-msgid "Current confirmed Jabber/GTalk address."
-msgstr "已确认的Jabber/GTalk帐号。"
+#: actions/imsettings.php:109
+msgid "Current confirmed Jabber/Google Talk address."
+msgstr "当前已确认的Jabber/GTalk账号。"
-#. TRANS: Form note in IM settings form.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:124
-#, php-format
+#. TRANS: Form note in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:120
+#, 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?)"
+"Awaiting confirmation on this address. Check your Jabber/Google Talk account "
+"for a message with further instructions. (Did you add %s to your buddy list?)"
msgstr ""
"正在等待验证这个地址。请查阅你的 Jabber/GTalk 帐户看有没有收到下一步的指示。"
"(你添加 %s 为到你的好友了吗?)"
-#. TRANS: IM address input field instructions in IM settings form.
-#. TRANS: %s is the IM address set for the site.
+#. TRANS: IM address input field instructions in Instant Messaging settings form.
+#. TRANS: %s is the Instant Messaging address set for the site.
#. TRANS: Do not translate "example.org". It is one of the domain names reserved for use in examples by
#. TRANS: http://www.rfc-editor.org/rfc/rfc2606.txt. Any other domain may be owned by a legitimate
#. TRANS: person or organization.
-#: actions/imsettings.php:143
-#, php-format
+#: actions/imsettings.php:139
+#, fuzzy, 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."
+"Jabber or Google Talk address, like \"UserName@example.org\". First, make "
+"sure to add %s to your buddy list in your IM client or on Google Talk."
msgstr ""
"Jabber 或 GTalk 帐号,类似\"UserName@example.org\"。首先,必须在即时聊天工具"
"或 GTalk 中将 %s 加为好友。"
-#. TRANS: Form legend for IM preferences form.
-#: actions/imsettings.php:158
+#. TRANS: Form legend for Instant Messaging preferences form.
+#: actions/imsettings.php:154
msgid "IM preferences"
msgstr "IM 首选项已保存。"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:163
-msgid "Send me notices through Jabber/GTalk."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:159
+#, fuzzy
+msgid "Send me notices through Jabber/Google Talk."
msgstr "通过 Jabber/GTalk 发送通告。"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:169
-msgid "Post a notice when my Jabber/GTalk status changes."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:165
+#, fuzzy
+msgid "Post a notice when my Jabber/Google Talk status changes."
msgstr "当我的 Jabber/GTalk 状态改变时自动发布消息。"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:175
-msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:171
+#, fuzzy
+msgid ""
+"Send me replies through Jabber/Google Talk from people I'm not subscribed to."
msgstr "将我没有关注的用户给我的回复通过 Jabber/GTalk 发送给我。"
-#. TRANS: Checkbox label in IM preferences form.
-#: actions/imsettings.php:182
-msgid "Publish a MicroID for my Jabber/GTalk address."
+#. TRANS: Checkbox label in Instant Messaging preferences form.
+#: actions/imsettings.php:178
+#, fuzzy
+msgid "Publish a MicroID for my Jabber/Google Talk address."
msgstr "公开 Jabber/GTalk 帐号的 MicroID。"
-#. TRANS: Confirmation message for successful IM preferences save.
-#: actions/imsettings.php:290 actions/othersettings.php:190
+#. TRANS: Confirmation message for successful Instant Messaging preferences save.
+#. TRANS: Confirmation message after saving preferences.
+#: actions/imsettings.php:283 actions/othersettings.php:193
msgid "Preferences saved."
msgstr "首选项已保存。"
-#. TRANS: Message given saving IM address without having provided one.
-#: actions/imsettings.php:312
+#. TRANS: Message given saving Instant Messaging address without having provided one.
+#: actions/imsettings.php:304
msgid "No Jabber ID."
msgstr "没有 Jabber ID。"
-#. TRANS: Message given saving IM address that cannot be normalised.
-#: actions/imsettings.php:320
-msgid "Cannot normalize that Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that cannot be normalised.
+#: actions/imsettings.php:312
+#, fuzzy
+msgid "Cannot normalize that Jabber ID."
msgstr "无法识别此 Jabber ID"
-#. TRANS: Message given saving IM address that not valid.
-#: actions/imsettings.php:325
-msgid "Not a valid Jabber ID"
+#. TRANS: Message given saving Instant Messaging address that not valid.
+#: actions/imsettings.php:317
+#, fuzzy
+msgid "Not a valid Jabber ID."
msgstr "不是有效的 Jabber ID"
-#. TRANS: Message given saving IM address that is already set.
-#: actions/imsettings.php:329
+#. TRANS: Message given saving Instant Messaging address that is already set.
+#: actions/imsettings.php:321
msgid "That is already your Jabber ID."
msgstr "这个已经是你的 Jabber 帐号了。"
-#. TRANS: Message given saving IM address that is already set for another user.
-#: actions/imsettings.php:333
+#. TRANS: Message given saving Instant Messaging address that is already set for another user.
+#: actions/imsettings.php:325
msgid "Jabber ID already belongs to another user."
msgstr "Jabber ID 属于另一用户。"
-#. TRANS: Message given saving valid IM address that is to be confirmed.
-#. TRANS: %s is the IM address set for the site.
-#: actions/imsettings.php:361
+#. TRANS: Message given saving valid Instant Messaging address that is to be confirmed.
+#. TRANS: %s is the Instant Messaging address set for the site.
+#: actions/imsettings.php:353
#, 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 向你发送信息。"
-#. TRANS: Message given canceling IM address confirmation for the wrong IM address.
-#: actions/imsettings.php:391
+#. TRANS: Message given canceling Instant Messaging address confirmation for the wrong IM address.
+#: actions/imsettings.php:382
msgid "That is the wrong IM address."
msgstr "IM 地址错误。"
-#. TRANS: Server error thrown on database error canceling IM address confirmation.
-#: actions/imsettings.php:400
-msgid "Couldn't delete IM confirmation."
+#. TRANS: Server error thrown on database error canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:391
+msgid "Could not delete IM confirmation."
msgstr "无法删除 IM 确认。"
-#. TRANS: Message given after successfully canceling IM address confirmation.
-#: actions/imsettings.php:405
+#. TRANS: Message given after successfully canceling Instant Messaging address confirmation.
+#: actions/imsettings.php:396
msgid "IM confirmation cancelled."
msgstr "IM 确认已取消。"
-#. TRANS: Message given trying to remove an IM address that is not
+#. TRANS: Message given trying to remove an Instant Messaging address that is not
#. TRANS: registered for the active user.
-#: actions/imsettings.php:427
+#: actions/imsettings.php:417
msgid "That is not your Jabber ID."
msgstr "这不是你的 Jabber ID。"
-#. TRANS: Message given after successfully removing a registered IM address.
-#: actions/imsettings.php:450
+#. TRANS: Message given after successfully removing a registered Instant Messaging address.
+#: actions/imsettings.php:440
msgid "The IM address was removed."
msgstr "IM 地址已删除。"
+#. TRANS: Title for all but the first page of the inbox page.
+#. TRANS: %1$s is the user's nickname, %2$s is the page number.
#: actions/inbox.php:59
#, php-format
msgid "Inbox for %1$s - page %2$d"
msgstr "%1$s的收件箱 - 第%2$d页"
-#: actions/inbox.php:62
+#. TRANS: Title for the first page of the inbox page.
+#. TRANS: %s is the user's nickname.
+#: actions/inbox.php:64
#, php-format
msgid "Inbox for %s"
msgstr "%s 的收件箱"
-#: actions/inbox.php:115
+#. TRANS: Instructions for user inbox page.
+#: actions/inbox.php:106
msgid "This is your inbox, which lists your incoming private messages."
msgstr "这是你的收件箱,包含发给你的私信。"
#. TRANS: Client error displayed when trying to sent invites while they have been disabled.
-#: actions/invite.php:40
+#: actions/invite.php:41
msgid "Invites have been disabled."
msgstr "邀请已被禁用。"
#. TRANS: Client error displayed when trying to sent invites while not logged in.
#. TRANS: %s is the StatusNet site name.
-#: actions/invite.php:44
+#: actions/invite.php:45
#, php-format
msgid "You must be logged in to invite other users to use %s."
msgstr "你必须登录才能邀请他人使用%s。"
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:77
+#: actions/invite.php:78
#, php-format
msgid "Invalid email address: %s."
msgstr "无效的电子邮件地址:%s"
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:116
+#: actions/invite.php:117
msgid "Invitations sent"
msgstr "邀请已发送"
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:119
+#: actions/invite.php:120
msgid "Invite new users"
msgstr "邀请新用户"
@@ -2914,14 +3294,14 @@ msgstr "邀请新用户"
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:139
+#: actions/invite.php:140
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] "你已经关注了这些用户:"
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:145 actions/invite.php:159
+#: actions/invite.php:146 actions/invite.php:160
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -2930,7 +3310,7 @@ msgstr "%1$s (%2$s)"
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:153
+#: actions/invite.php:154
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -2939,47 +3319,47 @@ msgstr[0] "这些人已经注册了用户,你已自动关注了他们:"
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:167
+#: actions/invite.php:168
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] "邀请已发送给了这些人:"
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:177
+#: actions/invite.php:178
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
msgstr "如果其他人接受邀请并注册,你将得到通知。谢谢你推动了社区发展壮大!"
#. TRANS: Form instructions.
-#: actions/invite.php:190
+#: actions/invite.php:191
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr "使用这个表单来邀请好友和同事加入。"
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:217
+#: actions/invite.php:218
msgid "Email addresses"
msgstr "电邮地址"
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:220
-msgid "Addresses of friends to invite (one per line)"
-msgstr "要邀请的好友地址(每行一个)"
+#: actions/invite.php:221
+msgid "Addresses of friends to invite (one per line)."
+msgstr "朋友邀请的地址(每行一个)。"
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:224
+#: actions/invite.php:225
msgid "Personal message"
msgstr "个人消息"
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:227
+#: actions/invite.php:228
msgid "Optionally add a personal message to the invitation."
msgstr "在邀请中加几句话(可选)。"
#. TRANS: Send button for inviting friends
-#: actions/invite.php:231
+#: actions/invite.php:232
msgctxt "BUTTON"
msgid "Send"
msgstr "发布"
@@ -2987,7 +3367,7 @@ msgstr "发布"
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:263
+#: actions/invite.php:264
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr "%1$s 邀请你加入 %2$s"
@@ -2997,7 +3377,7 @@ msgstr "%1$s 邀请你加入 %2$s"
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:270
+#: actions/invite.php:271
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -3050,176 +3430,192 @@ msgstr ""
"\n"
"诚挚的感谢, %2$s\n"
-#: actions/joingroup.php:60
+#. TRANS: Client error displayed when trying to join a group while not logged in.
+#: actions/joingroup.php:59
msgid "You must be logged in to join a group."
msgstr "你必须登录才能加入小组。"
-#: actions/joingroup.php:141
+#. TRANS: Title for join group page after joining.
+#: actions/joingroup.php:147
#, php-format
+msgctxt "TITLE"
msgid "%1$s joined group %2$s"
-msgstr "%1$s加入了%2$s小组"
+msgstr "%1$s 加入 %2$s 组"
-#: actions/leavegroup.php:60
+#. TRANS: Client error displayed when trying to leave a group while not logged in.
+#: actions/leavegroup.php:59
msgid "You must be logged in to leave a group."
msgstr "你必须登录才能离开小组。"
+#. TRANS: Client error displayed when trying to join a group while already a member.
#. TRANS: Error text shown when trying to leave an existing group the user is not a member of.
-#: actions/leavegroup.php:100 lib/command.php:386
+#: actions/leavegroup.php:103 lib/command.php:386
msgid "You are not a member of that group."
msgstr "你不是该群小组成员。"
-#: actions/leavegroup.php:137
+#. TRANS: Title for leave group page after leaving.
+#: actions/leavegroup.php:142
#, php-format
+msgctxt "TITLE"
msgid "%1$s left group %2$s"
-msgstr "%1$s离开了%2$s小组。"
+msgstr "离开 %2$s 组的 %1$s"
#. TRANS: User admin panel title
-#: actions/licenseadminpanel.php:56
+#: actions/licenseadminpanel.php:55
msgctxt "TITLE"
msgid "License"
msgstr "许可协议"
-#: actions/licenseadminpanel.php:67
+#: actions/licenseadminpanel.php:65
msgid "License for this StatusNet site"
msgstr "这个 StatusNet 网站的许可协议"
-#: actions/licenseadminpanel.php:139
+#: actions/licenseadminpanel.php:134
msgid "Invalid license selection."
msgstr "无效的许可协议选择。"
-#: actions/licenseadminpanel.php:149
+#: actions/licenseadminpanel.php:144
msgid ""
"You must specify the owner of the content when using the All Rights Reserved "
"license."
msgstr "当使用版权所有的许可协议时,你必须指定内容的所有者。"
-#: actions/licenseadminpanel.php:156
+#: actions/licenseadminpanel.php:151
msgid "Invalid license title. Maximum length is 255 characters."
msgstr "无效的许可标题。最大长度255个字符。"
-#: actions/licenseadminpanel.php:168
+#: actions/licenseadminpanel.php:163
msgid "Invalid license URL."
msgstr "无效的许可协议 URL。"
-#: actions/licenseadminpanel.php:171
+#: actions/licenseadminpanel.php:166
msgid "Invalid license image URL."
msgstr "无效的许可协议图片 URL。"
-#: actions/licenseadminpanel.php:179
+#: actions/licenseadminpanel.php:174
msgid "License URL must be blank or a valid URL."
msgstr "许可协议 URL 必须是个有效的 URL 或者为空。"
-#: actions/licenseadminpanel.php:187
+#: actions/licenseadminpanel.php:182
msgid "License image must be blank or valid URL."
msgstr "许可协议图片 URL 必须是个有效的 URL 或者为空。"
-#: actions/licenseadminpanel.php:239
+#: actions/licenseadminpanel.php:232
msgid "License selection"
msgstr "许可协议选择"
-#: actions/licenseadminpanel.php:245
+#: actions/licenseadminpanel.php:238
msgid "Private"
msgstr "私有"
-#: actions/licenseadminpanel.php:246
+#: actions/licenseadminpanel.php:239
msgid "All Rights Reserved"
msgstr "版权所有"
-#: actions/licenseadminpanel.php:247
+#: actions/licenseadminpanel.php:240
msgid "Creative Commons"
msgstr "创作共用"
-#: actions/licenseadminpanel.php:252
+#: actions/licenseadminpanel.php:245
msgid "Type"
msgstr "类型"
-#: actions/licenseadminpanel.php:254
+#: actions/licenseadminpanel.php:247
msgid "Select license"
msgstr "选择许可协议"
-#: actions/licenseadminpanel.php:268
+#: actions/licenseadminpanel.php:261
msgid "License details"
msgstr "许可协议细节"
-#: actions/licenseadminpanel.php:274
+#: actions/licenseadminpanel.php:267
msgid "Owner"
msgstr "所有者"
-#: actions/licenseadminpanel.php:275
+#: actions/licenseadminpanel.php:268
msgid "Name of the owner of the site's content (if applicable)."
msgstr "这个网站内容的所有者姓名(如果适用)。"
-#: actions/licenseadminpanel.php:283
+#: actions/licenseadminpanel.php:276
msgid "License Title"
msgstr "许可协议标题"
-#: actions/licenseadminpanel.php:284
+#: actions/licenseadminpanel.php:277
msgid "The title of the license."
msgstr "许可协议的标题。"
-#: actions/licenseadminpanel.php:292
+#: actions/licenseadminpanel.php:285
msgid "License URL"
msgstr "许可协议 URL"
-#: actions/licenseadminpanel.php:293
+#: actions/licenseadminpanel.php:286
msgid "URL for more information about the license."
msgstr "更多许可协议信息的 URL。"
-#: actions/licenseadminpanel.php:300
+#: actions/licenseadminpanel.php:293
msgid "License Image URL"
msgstr "许可协议图片 URL。"
-#: actions/licenseadminpanel.php:301
+#: actions/licenseadminpanel.php:294
msgid "URL for an image to display with the license."
msgstr "与许可协议一起出现的图片 URL。"
-#: actions/licenseadminpanel.php:319
+#. TRANS: Submit button title.
+#: actions/licenseadminpanel.php:311 actions/sessionsadminpanel.php:199
+#: actions/siteadminpanel.php:292 actions/snapshotadminpanel.php:245
+#: actions/tagother.php:154 lib/applicationeditform.php:357
+msgid "Save"
+msgstr "保存"
+
+#: actions/licenseadminpanel.php:311
msgid "Save license settings"
msgstr "保存许可协议设置"
-#: actions/login.php:102 actions/otp.php:62 actions/register.php:144
+#. TRANS: Client error displayed trying to use "one time password login" when already logged in.
+#: actions/login.php:97 actions/otp.php:62 actions/register.php:137
msgid "Already logged in."
msgstr "已登录。"
-#: actions/login.php:148
+#: actions/login.php:142
msgid "Incorrect username or password."
msgstr "用户名或密码不正确。"
-#: actions/login.php:154 actions/otp.php:120
+#. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login".
+#: actions/login.php:148 actions/otp.php:127
msgid "Error setting user. You are probably not authorized."
msgstr "设置用户时出错。你可能没有被认证。"
-#: actions/login.php:210 actions/login.php:263 lib/logingroupnav.php:79
+#: actions/login.php:202 actions/login.php:253
msgid "Login"
msgstr "登录"
-#: actions/login.php:249
+#: actions/login.php:239
msgid "Login to site"
msgstr "登录"
-#: actions/login.php:258 actions/register.php:491
+#: actions/login.php:248 actions/register.php:476
msgid "Remember me"
msgstr "记住登录状态"
-#: actions/login.php:259 actions/register.php:493
+#: actions/login.php:249 actions/register.php:478
msgid "Automatically login in the future; not for shared computers!"
msgstr "下次自动登录,请不要在公共电脑上使用此选项!"
-#: actions/login.php:269
+#: actions/login.php:259
msgid "Lost or forgotten password?"
msgstr "忘记了密码?"
-#: actions/login.php:288
+#: actions/login.php:277
msgid ""
"For security reasons, please re-enter your user name and password before "
"changing your settings."
msgstr "由于安全原因,修改设置前需要输入用户名和密码。"
-#: actions/login.php:292
+#: actions/login.php:281
msgid "Login with your username and password."
msgstr "使用用户名和密码登录。"
-#: actions/login.php:295
+#: actions/login.php:284
#, php-format
msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account."
@@ -3254,19 +3650,22 @@ msgid "New application"
msgstr "新应用"
#. TRANS: Client error displayed trying to add a new application while not logged in.
-#: actions/newapplication.php:65
+#: actions/newapplication.php:64
msgid "You must be logged in to register an application."
msgstr "你必须登录才能登记你的应用。"
+#. TRANS: Form instructions for registering a new application.
#: actions/newapplication.php:147
msgid "Use this form to register a new application."
msgstr "通过此表单登记一个新的应用。"
-#: actions/newapplication.php:184
+#. TRANS: Validation error shown when not providing a source URL in the "New application" form.
+#: actions/newapplication.php:189
msgid "Source URL is required."
msgstr "Source URL 必填。"
-#: actions/newapplication.php:266 actions/newapplication.php:275
+#. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form.
+#: actions/newapplication.php:279 actions/newapplication.php:289
msgid "Could not create application."
msgstr "无法创建应用。"
@@ -3275,11 +3674,21 @@ msgstr "无法创建应用。"
msgid "New group"
msgstr "新小组"
+#. TRANS: Client exception thrown when a user tries to create a group while banned.
+#: actions/newgroup.php:73 classes/User_group.php:485
+msgid "You are not allowed to create groups on this site."
+msgstr "您不被允许创建此站点上的小组。"
+
#. TRANS: Form instructions for group create form.
-#: actions/newgroup.php:110
+#: actions/newgroup.php:117
msgid "Use this form to create a new group."
msgstr "通过此表单创建小组。"
+#. TRANS: Group create form validation error.
+#: actions/newgroup.php:200
+msgid "Alias cannot be the same as nickname."
+msgstr "别名不能昵称相同。"
+
#: actions/newmessage.php:71 actions/newmessage.php:234
msgid "New message"
msgstr "新消息"
@@ -3329,7 +3738,9 @@ msgstr "新消息"
msgid "Notice posted"
msgstr "消息已发布。"
-#: actions/noticesearch.php:68
+#. TRANS: Instructions for Notice search page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/noticesearch.php:69
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -3338,16 +3749,21 @@ msgstr ""
"在%%site.name%%的消息内容中搜索。搜索条件至少包含 3 个字符,多个搜索条件用空"
"格分隔。"
-#: actions/noticesearch.php:78
+#. TRANS: Title of the page where users can search for notices.
+#: actions/noticesearch.php:80
msgid "Text search"
msgstr "搜索消息"
-#: actions/noticesearch.php:91
+#. TRANS: Test in RSS notice search.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearch.php:95
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr "在%2$s上搜索\"%1$s\"的结果"
-#: actions/noticesearch.php:121
+#. TRANS: Text for logged in users making a query for notices without results.
+#. TRANS: This message contains a Markdown link.
+#: actions/noticesearch.php:128
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -3356,7 +3772,9 @@ msgstr ""
"成为第一个[对该主题发布消息]的人(%%%%action.newnotice%%%%?status_textarea=%"
"s) !"
-#: actions/noticesearch.php:124
+#. TRANS: Text for not logged in users making a query for notices without results.
+#. TRANS: This message contains Markdown links.
+#: actions/noticesearch.php:133
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -3365,14 +3783,17 @@ msgstr ""
"现在就 [注册账户](%%%%action.register%%%%) 并成为第一个 [对该主题发布消息的"
"人](%%%%action.newnotice%%%%?status_textarea=%s) !"
-#: actions/noticesearchrss.php:96
+#. TRANS: RSS notice search feed title. %s is the query.
+#: actions/noticesearchrss.php:95
#, php-format
msgid "Updates with \"%s\""
msgstr "\"%s\"的更新"
-#: actions/noticesearchrss.php:98
-#, php-format
-msgid "Updates matching search term \"%1$s\" on %2$s!"
+#. TRANS: RSS notice search feed description.
+#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
+#: actions/noticesearchrss.php:99
+#, fuzzy, php-format
+msgid "Updates matching search term \"%1$s\" on %2$s."
msgstr "%2$s上符合搜索关键字\"%1$s\"的更新!"
#: actions/nudge.php:85
@@ -3411,30 +3832,30 @@ msgid "You have not registered any applications yet."
msgstr "你还没登记任何程序。"
#. TRANS: Title for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:71
+#: actions/oauthconnectionssettings.php:70
msgid "Connected applications"
msgstr "关联的应用"
#. TRANS: Instructions for OAuth connection settings.
-#: actions/oauthconnectionssettings.php:83
+#: actions/oauthconnectionssettings.php:81
msgid "The following connections exist for your account."
msgstr "你的账号的关联。"
#. TRANS: Client error when trying to revoke access for an application while not being a user of it.
-#: actions/oauthconnectionssettings.php:168
+#: actions/oauthconnectionssettings.php:166
msgid "You are not a user of that application."
msgstr "你不是那个应用的用户。"
#. TRANS: Client error when revoking access has failed for some reason.
#. TRANS: %s is the application ID revoking access failed for.
-#: actions/oauthconnectionssettings.php:183
+#: actions/oauthconnectionssettings.php:181
#, php-format
msgid "Unable to revoke access for application: %s."
msgstr "不能取消%s应用的访问。"
#. TRANS: Success message after revoking access for an application.
#. TRANS: %1$s is the application name, %2$s is the first part of the user token.
-#: actions/oauthconnectionssettings.php:202
+#: actions/oauthconnectionssettings.php:200
#, php-format
msgid ""
"You have successfully revoked access for %1$s and the access token starting "
@@ -3442,14 +3863,14 @@ msgid ""
msgstr "你已成功取消了%1$s的访问,access token 中前面的部分是 %2$s。"
#. TRANS: Empty list message when no applications have been authorised yet.
-#: actions/oauthconnectionssettings.php:213
+#: actions/oauthconnectionssettings.php:211
msgid "You have not authorized any applications to use your account."
msgstr "你还没允许任何程序使用你的账户。"
#. TRANS: Note for developers in the OAuth connection settings form.
#. TRANS: This message contains a Markdown link. Do not separate "](".
#. TRANS: %s is the URL to the OAuth settings.
-#: actions/oauthconnectionssettings.php:233
+#: actions/oauthconnectionssettings.php:231
#, php-format
msgid ""
"Are you a developer? [Register an OAuth client application](%s) to use with "
@@ -3457,6 +3878,16 @@ msgid ""
msgstr ""
"你是开发者么?[注册一个 OAuth 客户端应用](%s) 来使用这个 StatusNet 网站。"
+#: actions/oembed.php:64
+#, php-format
+msgid "\"%s\" not found."
+msgstr "找不到\"%s\"。"
+
+#: actions/oembed.php:76
+#, php-format
+msgid "Notice %s not found."
+msgstr "找不到 %s 的通知。"
+
#: actions/oembed.php:80 actions/shownotice.php:100
msgid "Notice has no profile."
msgstr "消息没有对应用户。"
@@ -3466,6 +3897,16 @@ msgstr "消息没有对应用户。"
msgid "%1$s's status on %2$s"
msgstr "%1$s在%2$s时发的消息"
+#: actions/oembed.php:95
+#, php-format
+msgid "Attachment %s not found."
+msgstr "找不到 %s 的附件。"
+
+#: actions/oembed.php:136
+#, php-format
+msgid "\"%s\" not supported for oembed requests."
+msgstr "\"%s\"不支持 oembed 的请求。"
+
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:168
#, php-format
@@ -3479,16 +3920,17 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "请只用HTTP明文的%sURLs的地址。"
#. TRANS: Client error on an API request with an unsupported data format.
-#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1206
-#: lib/apiaction.php:1233 lib/apiaction.php:1362
+#: actions/oembed.php:193 actions/oembed.php:212 lib/apiaction.php:1205
+#: lib/apiaction.php:1232 lib/apiaction.php:1367
msgid "Not a supported data format."
msgstr "不支持的数据格式。"
+#. TRANS: ShortName in the OpenSearch interface when trying to find users.
#: actions/opensearch.php:64
msgid "People Search"
msgstr "搜索用户"
-#: actions/opensearch.php:67
+#: actions/opensearch.php:68
msgid "Notice Search"
msgstr "搜索消息"
@@ -3502,68 +3944,79 @@ msgid "Manage various other options."
msgstr "管理其他选项。"
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
-#. TRANS: user's profile settings. This message has one space at the beginning. Use your
-#. TRANS: language's word separator here if it has one (most likely a single space).
-#: actions/othersettings.php:111
+#. TRANS: user's profile settings. Use of "free" is as in "open", indicating that the
+#. TRANS: information on the shortener site is freely distributable.
+#. TRANS: This message has one space at the beginning. Use your language's word separator
+#. TRANS: here if it has one (most likely a single space).
+#: actions/othersettings.php:113
msgid " (free service)"
msgstr "(免费服务)"
#. TRANS: Label for dropdown with URL shortener services.
-#: actions/othersettings.php:120
+#: actions/othersettings.php:122
msgid "Shorten URLs with"
msgstr "缩短 URL 使用"
#. TRANS: Tooltip for for dropdown with URL shortener services.
-#: actions/othersettings.php:122
+#: actions/othersettings.php:124
msgid "Automatic shortening service to use."
msgstr "要使用的自动短网址服务。"
#. TRANS: Label for checkbox.
-#: actions/othersettings.php:128
+#: actions/othersettings.php:130
msgid "View profile designs"
msgstr "查看个人页面外观"
#. TRANS: Tooltip for checkbox.
-#: actions/othersettings.php:130
+#: actions/othersettings.php:132
msgid "Show or hide profile designs."
msgstr "显示或隐藏个人页面外观。"
#. TRANS: Form validation error for form "Other settings" in user profile.
-#: actions/othersettings.php:162
+#: actions/othersettings.php:164
msgid "URL shortening service is too long (maximum 50 characters)."
msgstr "短网址服务过长(不能超过50个字符)。"
-#: actions/otp.php:69
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a user.
+#: actions/otp.php:70
msgid "No user ID specified."
msgstr "没用指定用户 ID。"
-#: actions/otp.php:83
+#. TRANS: Client error displayed trying to use "one time password login" without specifying a login token.
+#: actions/otp.php:86
msgid "No login token specified."
msgstr "没有指定登录 token。"
-#: actions/otp.php:90
+#. TRANS: Client error displayed trying to use "one time password login" without requesting a login token.
+#: actions/otp.php:94
msgid "No login token requested."
msgstr "没有请求的登录 token。"
-#: actions/otp.php:95
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token.
+#: actions/otp.php:100
msgid "Invalid login token specified."
msgstr "指定的登录 token 无效。"
-#: actions/otp.php:104
+#. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token.
+#: actions/otp.php:110
msgid "Login token expired."
msgstr "登录 token 已过期。"
-#: actions/outbox.php:58
+#. TRANS: Title for outbox for any but the fist page.
+#. TRANS: %1$s is the user nickname, %2$d is the page number.
+#: actions/outbox.php:57
#, php-format
msgid "Outbox for %1$s - page %2$d"
msgstr "%1$s的发件箱 - 第%2$d页"
+#. TRANS: Title for first page of outbox.
#: actions/outbox.php:61
#, php-format
msgid "Outbox for %s"
msgstr "%s 的发件箱"
-#: actions/outbox.php:116
+#. TRANS: Instructions for outbox.
+#: actions/outbox.php:103
msgid "This is your outbox, which lists private messages you have sent."
msgstr "这是你的发件箱,包含你发送的私信。"
@@ -3575,7 +4028,8 @@ msgstr "修改密码"
msgid "Change your password."
msgstr "修改你的密码"
-#: actions/passwordsettings.php:96 actions/recoverpassword.php:231
+#. TRANS: Fieldset legend for password reset form.
+#: actions/passwordsettings.php:96 actions/recoverpassword.php:251
msgid "Password change"
msgstr "修改密码"
@@ -3583,48 +4037,47 @@ msgstr "修改密码"
msgid "Old password"
msgstr "旧密码"
-#: actions/passwordsettings.php:108 actions/recoverpassword.php:235
+#. TRANS: Field label for password reset form.
+#: actions/passwordsettings.php:108 actions/recoverpassword.php:256
msgid "New password"
msgstr "新密码"
-#: actions/passwordsettings.php:109
-msgid "6 or more characters"
+#: actions/passwordsettings.php:109 actions/register.php:423
+msgid "6 or more characters."
msgstr "6 个或更多字符"
-#: actions/passwordsettings.php:112 actions/recoverpassword.php:239
-#: actions/register.php:441
-msgid "Confirm"
-msgstr "密码确认"
-
-#: actions/passwordsettings.php:113 actions/recoverpassword.php:240
-msgid "Same as password above"
+#. TRANS: Ttile for field label for password reset form where the password has to be typed again.
+#: actions/passwordsettings.php:113 actions/recoverpassword.php:264
+#: actions/register.php:427
+msgid "Same as password above."
msgstr "与上面相同的密码"
#: actions/passwordsettings.php:117
msgid "Change"
msgstr "修改"
-#: actions/passwordsettings.php:154 actions/register.php:238
+#: actions/passwordsettings.php:153 actions/register.php:230
msgid "Password must be 6 or more characters."
msgstr "密码必须包含 6 个或更多字符。"
-#: actions/passwordsettings.php:157 actions/register.php:241
+#: actions/passwordsettings.php:156 actions/register.php:233
msgid "Passwords don't match."
msgstr "密码不匹配。"
-#: actions/passwordsettings.php:165
+#: actions/passwordsettings.php:164
msgid "Incorrect old password"
msgstr "旧密码不正确"
-#: actions/passwordsettings.php:181
+#: actions/passwordsettings.php:180
msgid "Error saving user; invalid."
msgstr "保存用户时出错;无效。"
-#: actions/passwordsettings.php:186 actions/recoverpassword.php:381
-msgid "Can't save new password."
+#. TRANS: Reset password form validation error message.
+#: actions/passwordsettings.php:185 actions/recoverpassword.php:418
+msgid "Cannot save new password."
msgstr "无法保存新密码。"
-#: actions/passwordsettings.php:192 actions/recoverpassword.php:211
+#: actions/passwordsettings.php:191
msgid "Password saved."
msgstr "密码已保存。"
@@ -3830,7 +4283,7 @@ msgstr "背景文件的目录。"
#. TRANS: Fieldset legens in Paths admin panel.
#. TRANS: DT element label in attachment list.
-#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:99
+#: actions/pathsadminpanel.php:419 lib/attachmentlist.php:98
msgid "Attachments"
msgstr "附件"
@@ -3898,7 +4351,9 @@ msgstr "直接SSL请求的服务器"
msgid "Save paths"
msgstr "保存路径"
-#: actions/peoplesearch.php:52
+#. TRANS: Instructions for the "People search" page.
+#. TRANS: %%site.name%% is the name of the StatusNet site.
+#: actions/peoplesearch.php:54
#, php-format
msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
@@ -3907,7 +4362,8 @@ msgstr ""
"通过姓名、位置和爱好搜索在%%site.name%%的用户。搜索条件至少包含 3 个字符,多"
"个搜索条件用空格分隔。"
-#: actions/peoplesearch.php:58
+#. TRANS: Title of a page where users can search for other users.
+#: actions/peoplesearch.php:61
msgid "People search"
msgstr "搜索用户"
@@ -3931,177 +4387,184 @@ msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’.
msgstr "消息许可证“%1$s”与这个网站的许可证“%2$s”不兼容。"
#. TRANS: Page title for profile settings.
-#: actions/profilesettings.php:61
+#: actions/profilesettings.php:59
msgid "Profile settings"
msgstr "个人设置"
#. TRANS: Usage instructions for profile settings.
-#: actions/profilesettings.php:73
+#: actions/profilesettings.php:70
msgid ""
"You can update your personal profile info here so people know more about you."
msgstr "在这里更新个人信息,让大家对你了解得更多。"
#. TRANS: Profile settings form legend.
-#: actions/profilesettings.php:102
+#: actions/profilesettings.php:98
msgid "Profile information"
msgstr "个人信息"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:113
+#: actions/profilesettings.php:109 actions/register.php:419
msgid "1-64 lowercase letters or numbers, no punctuation or spaces."
msgstr "1 到 64 个小写字母或数字,不包含标点或空格。"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for full group name (dt). Text hidden by default.
-#: actions/profilesettings.php:117 actions/register.php:456
-#: actions/showgroup.php:252 actions/tagother.php:104
-#: lib/groupeditform.php:157 lib/userprofile.php:152
+#. TRANS: DT for full name in a profile.
+#: actions/profilesettings.php:113 actions/register.php:441
+#: actions/showgroup.php:255 actions/tagother.php:104
+#: lib/groupeditform.php:150 lib/userprofile.php:156
msgid "Full name"
msgstr "全名"
#. TRANS: Field label in form for profile settings.
#. TRANS: Form input field label.
-#: actions/profilesettings.php:122 actions/register.php:461
-#: lib/applicationeditform.php:236 lib/groupeditform.php:161
+#: actions/profilesettings.php:118 actions/register.php:446
+#: lib/applicationeditform.php:236 lib/groupeditform.php:154
msgid "Homepage"
msgstr "主页"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:125
+#: actions/profilesettings.php:121 actions/register.php:448
msgid "URL of your homepage, blog, or profile on another site."
msgstr "你的主页、博客或在其他网站的URL。"
#. TRANS: Tooltip for field label in form for profile settings. Plural
#. TRANS: is decided by the number of characters available for the
#. TRANS: biography (%d).
-#: actions/profilesettings.php:133 actions/register.php:472
+#: actions/profilesettings.php:129 actions/register.php:457
#, php-format
msgid "Describe yourself and your interests in %d character"
msgid_plural "Describe yourself and your interests in %d characters"
msgstr[0] "用不超过%d个字符描述你自己和你的兴趣"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:139 actions/register.php:477
+#: actions/profilesettings.php:135 actions/register.php:462
msgid "Describe yourself and your interests"
msgstr "描述你自己和你的兴趣"
#. TRANS: Text area label in form for profile settings where users can provide.
#. TRANS: their biography.
-#: actions/profilesettings.php:143 actions/register.php:479
+#: actions/profilesettings.php:139 actions/register.php:464
msgid "Bio"
msgstr "自述"
#. TRANS: Field label in form for profile settings.
#. TRANS: Label for group location (dt). Text hidden by default.
-#: actions/profilesettings.php:149 actions/register.php:484
-#: actions/showgroup.php:262 actions/tagother.php:112
-#: actions/userauthorization.php:166 lib/groupeditform.php:180
-#: lib/userprofile.php:167
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for location in a profile.
+#: actions/profilesettings.php:145 actions/register.php:469
+#: actions/showgroup.php:265 actions/tagother.php:112
+#: actions/userauthorization.php:174 lib/groupeditform.php:173
+#: lib/userprofile.php:172
msgid "Location"
msgstr "位置"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:152 actions/register.php:486
+#: actions/profilesettings.php:148
msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "你的地理位置,格式类似\"城市,省份,国家\""
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:157
+#: actions/profilesettings.php:153
msgid "Share my current location when posting notices"
msgstr "当发布消息时分享我的地理位置"
#. TRANS: Field label in form for profile settings.
-#: actions/profilesettings.php:165 actions/tagother.php:149
+#. TRANS: DT for tags in a profile.
+#: actions/profilesettings.php:161 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106
-#: lib/subscriptionlist.php:108 lib/userprofile.php:212
+#: lib/subscriptionlist.php:108 lib/userprofile.php:220
msgid "Tags"
msgstr "标签"
#. TRANS: Tooltip for field label in form for profile settings.
-#: actions/profilesettings.php:168
+#: actions/profilesettings.php:164
+#, fuzzy
msgid ""
-"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
+"Tags for yourself (letters, numbers, -, ., and _), comma- or space- "
+"separated."
msgstr "你的标签 (字母、数字、“-”、“. ”和“ _”), 以逗号或空格分隔"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:173
+#: actions/profilesettings.php:169
msgid "Language"
msgstr "语言"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:175
-msgid "Preferred language"
-msgstr "首选语言"
+#: actions/profilesettings.php:171
+msgid "Preferred language."
+msgstr "首选的语言。"
#. TRANS: Dropdownlist label in form for profile settings.
-#: actions/profilesettings.php:185
+#: actions/profilesettings.php:181
msgid "Timezone"
msgstr "时区"
#. TRANS: Tooltip for dropdown list label in form for profile settings.
-#: actions/profilesettings.php:187
+#: actions/profilesettings.php:183
msgid "What timezone are you normally in?"
msgstr "你一般处于哪个时区?"
#. TRANS: Checkbox label in form for profile settings.
-#: actions/profilesettings.php:193
+#: actions/profilesettings.php:189
msgid ""
-"Automatically subscribe to whoever subscribes to me (best for non-humans)"
-msgstr "自动关注任何关注我的人 (这个选项适合机器人)"
+"Automatically subscribe to whoever subscribes to me (best for non-humans)."
+msgstr "自动关注任何关注我的人(这个选项适合机器人)"
#. TRANS: Validation error in form for profile settings.
#. TRANS: Plural form is used based on the maximum number of allowed
#. TRANS: characters for the biography (%d).
-#: actions/profilesettings.php:262 actions/register.php:229
+#: actions/profilesettings.php:258 actions/register.php:221
#, php-format
msgid "Bio is too long (maximum %d character)."
msgid_plural "Bio is too long (maximum %d characters)."
msgstr[0] "自述过长(不能超过%d个字符)。"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:273 actions/siteadminpanel.php:151
+#: actions/profilesettings.php:269 actions/siteadminpanel.php:151
msgid "Timezone not selected."
msgstr "未选择时区。"
#. TRANS: Validation error in form for profile settings.
-#: actions/profilesettings.php:281
+#: actions/profilesettings.php:277
msgid "Language is too long (maximum 50 characters)."
msgstr "语言过长(不能超过50个字符)。"
#. TRANS: Validation error in form for profile settings.
#. TRANS: %s is an invalid tag.
-#: actions/profilesettings.php:295 actions/tagother.php:178
+#: actions/profilesettings.php:291
#, php-format
-msgid "Invalid tag: \"%s\""
-msgstr "无效的标签:\"%s\"。"
+msgid "Invalid tag: \"%s\"."
+msgstr "无效的标记: %s。"
#. TRANS: Server error thrown when user profile settings could not be updated to
#. TRANS: automatically subscribe to any subscriber.
-#: actions/profilesettings.php:351
-msgid "Couldn't update user for autosubscribe."
+#: actions/profilesettings.php:347
+msgid "Could not update user for autosubscribe."
msgstr "无法更新用户的自动关注。"
#. TRANS: Server error thrown when user profile location preference settings could not be updated.
-#: actions/profilesettings.php:409
-msgid "Couldn't save location prefs."
-msgstr "无法保存标签。"
-
-#. TRANS: Server error thrown when user profile settings could not be saved.
-#: actions/profilesettings.php:422
-msgid "Couldn't save profile."
-msgstr "无法保存个人信息。"
+#: actions/profilesettings.php:405
+msgid "Could not save location prefs."
+msgstr "无法保存位置设置。"
#. TRANS: Server error thrown when user profile settings tags could not be saved.
-#: actions/profilesettings.php:431
-msgid "Couldn't save tags."
+#: actions/profilesettings.php:427 actions/tagother.php:200
+msgid "Could not save tags."
msgstr "无法保存标签。"
#. TRANS: Confirmation shown when user profile settings are saved.
#. TRANS: Message after successful saving of administrative settings.
-#: actions/profilesettings.php:440 lib/adminpanelaction.php:138
+#: actions/profilesettings.php:436 lib/adminpanelaction.php:138
msgid "Settings saved."
msgstr "设置已保存。"
+#. TRANS: Option in profile settings to restore the account of the currently logged in user from a backup.
+#. TRANS: Page title for page where a user account can be restored from backup.
+#: actions/profilesettings.php:483 actions/restoreaccount.php:60
+msgid "Restore account"
+msgstr "还原账户"
+
#: actions/public.php:83
#, php-format
msgid "Beyond the page limit (%s)."
@@ -4172,6 +4635,12 @@ msgstr ""
"这里是%%site.name%%,一个基于自由软件[StatusNet](http://status.net/)的[微博"
"客](http://zh.wikipedia.org/zh-hans/%E5%BE%AE%E5%8D%9A%E5%AE%A2) 。"
+#. TRANS: Public RSS feed description. %s is the StatusNet site name.
+#: actions/publicrss.php:106
+#, fuzzy, php-format
+msgid "%s updates from everyone."
+msgstr "%s条来自所有人的消息!"
+
#. TRANS: Title for public tag cloud.
#: actions/publictagcloud.php:57
msgid "Public tag cloud"
@@ -4214,219 +4683,247 @@ msgstr "现在就[注册](%%action.register%%)并发布第一个!"
msgid "Tag cloud"
msgstr "标签云"
-#: actions/recoverpassword.php:36
+#. TRANS: Client error displayed trying to recover password while already logged in.
+#: actions/recoverpassword.php:37
msgid "You are already logged in!"
msgstr "你已经登录了!"
-#: actions/recoverpassword.php:62
+#. TRANS: Client error displayed when password recovery code is not correct.
+#: actions/recoverpassword.php:64
msgid "No such recovery code."
msgstr "没有这个恢复码。"
-#: actions/recoverpassword.php:66
+#. TRANS: Client error displayed when no proper password recovery code was submitted.
+#: actions/recoverpassword.php:69
msgid "Not a recovery code."
msgstr "不是恢复码。"
-#: actions/recoverpassword.php:73
+#. TRANS: Server error displayed trying to recover password without providing a user.
+#: actions/recoverpassword.php:77
msgid "Recovery code for unknown user."
msgstr "未知用户的恢复码"
-#: actions/recoverpassword.php:86
+#. TRANS: Server error displayed removing a password recovery code from the database.
+#: actions/recoverpassword.php:91
msgid "Error with confirmation code."
msgstr "验证码出错。"
-#: actions/recoverpassword.php:97
+#. TRANS: Client error displayed trying to recover password with too old a recovery code.
+#: actions/recoverpassword.php:103
msgid "This confirmation code is too old. Please start again."
msgstr "验证码已过期,请重来。"
-#: actions/recoverpassword.php:111
+#. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password.
+#: actions/recoverpassword.php:118
msgid "Could not update user with confirmed email address."
msgstr "无法更新已确认的电子邮件。"
-#: actions/recoverpassword.php:152
+#. TRANS: Page notice for password recovery page.
+#: actions/recoverpassword.php:160
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:167
+msgid "You have been identified. Enter a new password below."
+msgstr "你的身份已被验证,请在下面输入新的密码。"
-#: actions/recoverpassword.php:188
+#. TRANS: Fieldset legend for password recovery page.
+#: actions/recoverpassword.php:198
msgid "Password recovery"
msgstr "恢复密码"
-#: actions/recoverpassword.php:191
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:202
msgid "Nickname or email address"
msgstr "昵称或电子邮件"
-#: actions/recoverpassword.php:193
+#. TRANS: Title for field label on password recovery page.
+#: actions/recoverpassword.php:205
msgid "Your nickname on this server, or your registered email address."
msgstr "你在此服务器的昵称,或登记的邮箱。"
-#: actions/recoverpassword.php:199 actions/recoverpassword.php:200
+#. TRANS: Field label on password recovery page.
+#: actions/recoverpassword.php:212
msgid "Recover"
msgstr "恢复"
-#: actions/recoverpassword.php:208
+#. TRANS: Button text on password recovery page.
+#: actions/recoverpassword.php:214
+msgctxt "BUTTON"
+msgid "Recover"
+msgstr "恢复"
+
+#. TRANS: Title for password recovery page in password reset mode.
+#: actions/recoverpassword.php:223
msgid "Reset password"
msgstr "重置密码"
-#: actions/recoverpassword.php:209
+#. TRANS: Title for password recovery page in password recover mode.
+#: actions/recoverpassword.php:225
msgid "Recover password"
msgstr "恢复密码"
-#: actions/recoverpassword.php:210 actions/recoverpassword.php:335
+#. TRANS: Title for password recovery page in email sent mode.
+#. TRANS: Subject for password recovery e-mail.
+#: actions/recoverpassword.php:227 actions/recoverpassword.php:366
msgid "Password recovery requested"
msgstr "已请求密码恢复"
-#: actions/recoverpassword.php:213
+#. TRANS: Title for password recovery page in password saved mode.
+#: actions/recoverpassword.php:229
+msgid "Password saved"
+msgstr "密码已保存。"
+
+#. TRANS: Title for password recovery page when an unknown action has been specified.
+#: actions/recoverpassword.php:232
msgid "Unknown action"
msgstr "未知动作"
-#: actions/recoverpassword.php:236
-msgid "6 or more characters, and don't forget it!"
+#. TRANS: Title for field label for password reset form.
+#: actions/recoverpassword.php:258
+msgid "6 or more characters, and do not forget it!"
msgstr "至少6个字符,还有,别忘记它!"
-#: actions/recoverpassword.php:243
+#. TRANS: Button text for password reset form.
+#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
+#: actions/recoverpassword.php:268 lib/designsettings.php:264
+msgctxt "BUTTON"
msgid "Reset"
msgstr "重置"
-#: actions/recoverpassword.php:252
+#. TRANS: Form instructions for password recovery form.
+#: actions/recoverpassword.php:278
msgid "Enter a nickname or email address."
msgstr "输入昵称或电子邮件。"
-#: actions/recoverpassword.php:282
+#. TRANS: Information on password recovery form if no known username or e-mail address was specified.
+#: actions/recoverpassword.php:309
msgid "No user with that email address or username."
msgstr "没有拥有这个用户名或电子邮件的用户。"
-#: actions/recoverpassword.php:299
+#. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
+#: actions/recoverpassword.php:327
msgid "No registered email address for that user."
msgstr "该用户没有登记电子邮件。"
-#: actions/recoverpassword.php:313
+#. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
+#: actions/recoverpassword.php:342
msgid "Error saving address confirmation."
msgstr "保存地址确认时出错。"
-#: actions/recoverpassword.php:338
+#. TRANS: User notification after an e-mail with instructions was sent from the password recovery form.
+#: actions/recoverpassword.php:370
msgid ""
"Instructions for recovering your password have been sent to the email "
"address registered to your account."
msgstr "恢复密码的说明已被发送到你登记的电子邮箱中。"
-#: actions/recoverpassword.php:357
+#. TRANS: Client error displayed when trying to reset as password without providing a user.
+#: actions/recoverpassword.php:391
msgid "Unexpected password reset."
msgstr "未预料的密码重置。"
-#: actions/recoverpassword.php:365
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:400
msgid "Password must be 6 characters or more."
msgstr "密码必须是 6 位或更多字符。"
-#: actions/recoverpassword.php:369
+#. TRANS: Reset password form validation error message.
+#: actions/recoverpassword.php:405
msgid "Password and confirmation do not match."
msgstr "密码和确认密码不匹配。"
-#: actions/recoverpassword.php:388 actions/register.php:256
+#. TRANS: Server error displayed when something does wrong with the user object during password reset.
+#: actions/recoverpassword.php:426 actions/register.php:248
msgid "Error setting user."
msgstr "保存用户设置时出错。"
-#: actions/recoverpassword.php:395
+#. TRANS: Success message for user after password reset.
+#: actions/recoverpassword.php:434
msgid "New password successfully saved. You are now logged in."
msgstr "新密码已保存,你现在已登录。"
-#: actions/register.php:92 actions/register.php:196 actions/register.php:413
+#: actions/register.php:87 actions/register.php:188 actions/register.php:399
msgid "Sorry, only invited people can register."
msgstr "对不起,只有被邀请的用户才能注册。"
-#: actions/register.php:99
+#: actions/register.php:94
msgid "Sorry, invalid invitation code."
msgstr "对不起,无效的邀请码。"
-#: actions/register.php:119
+#: actions/register.php:113
msgid "Registration successful"
msgstr "注册成功"
-#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85
+#: actions/register.php:115 actions/register.php:497
msgid "Register"
msgstr "注册"
-#: actions/register.php:142
+#: actions/register.php:135
msgid "Registration not allowed."
msgstr "不允许注册。"
-#: actions/register.php:209
-msgid "You can't register if you don't agree to the license."
-msgstr "你必须同意许可协议才能注册。"
+#: actions/register.php:201
+msgid "You cannot register if you don't agree to the license."
+msgstr "如果您不同意该许可,您不能注册。"
-#: actions/register.php:218
+#: actions/register.php:210
msgid "Email address already exists."
msgstr "电子邮件地址已存在。"
-#: actions/register.php:251 actions/register.php:273
+#: actions/register.php:243 actions/register.php:265
msgid "Invalid username or password."
msgstr "用户名或密码不正确。"
-#: actions/register.php:351
+#: actions/register.php:340
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:433
-msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
-msgstr "1 到 64 位的小写字母或数字,不能使用标点和空格。此项必填。"
-
-#: actions/register.php:438
-msgid "6 or more characters. Required."
-msgstr "至少 6 位字符。此项必填。"
-
-#: actions/register.php:442
-msgid "Same as password above. Required."
-msgstr "与上面输入相同的密码。此项必填。"
+"link up to friends and colleagues."
+msgstr "使用此窗体可以创建一个新的帐户。然后可以张贴告示及链接到的朋友和同事。"
#. TRANS: Link description in user account settings menu.
-#: actions/register.php:446 actions/register.php:450
+#: actions/register.php:431 actions/register.php:435
#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127
msgid "Email"
msgstr "电子邮件"
-#: actions/register.php:447 actions/register.php:451
-msgid "Used only for updates, announcements, and password recovery"
-msgstr "只用于更新、通知及密码恢复"
+#: actions/register.php:432 actions/register.php:436
+msgid "Used only for updates, announcements, and password recovery."
+msgstr "仅用于更新、 公告及密码恢复。"
-#: actions/register.php:458
-msgid "Longer name, preferably your \"real\" name"
-msgstr "更长的名字,最好是“真实姓名”"
+#: actions/register.php:443
+msgid "Longer name, preferably your \"real\" name."
+msgstr "你最好是\"真正的\"的名字的长名称技术。"
-#: actions/register.php:463
-msgid "URL of your homepage, blog, or profile on another site"
-msgstr "你的主页、博客或在其他网站的URL"
+#: actions/register.php:471
+msgid "Where you are, like \"City, State (or Region), Country\"."
+msgstr "你在哪里,像\"城市、 国家(或地区)、国家\"。"
-#: actions/register.php:524
+#: actions/register.php:510
#, php-format
msgid ""
"I understand that content and data of %1$s are private and confidential."
msgstr "我明白%1$s的信息是私人且保密的。"
-#: actions/register.php:534
+#: actions/register.php:520
#, php-format
msgid "My text and files are copyright by %1$s."
msgstr "我的文字和文件的版权归%1$s所有。"
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
-#: actions/register.php:538
+#: actions/register.php:524
msgid "My text and files remain under my own copyright."
msgstr "我的文字和文件的版权由我自己保留。"
#. TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
-#: actions/register.php:541
+#: actions/register.php:527
msgid "All rights reserved."
msgstr "保留所有权利。"
#. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
-#: actions/register.php:546
+#: actions/register.php:532
#, php-format
msgid ""
"My text and files are available under %s except this private data: password, "
@@ -4435,7 +4932,7 @@ msgstr ""
"我的文字和文件在%s下提供,除了如下隐私内容:密码、电子邮件地址、IM 地址和电话"
"号码。"
-#: actions/register.php:589
+#: actions/register.php:573
#, php-format
msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
@@ -4465,13 +4962,13 @@ msgstr ""
"\n"
"感谢你的注册,希望你喜欢这个服务。"
-#: actions/register.php:613
+#: actions/register.php:597
msgid ""
"(You should receive a message by email momentarily, with instructions on how "
"to confirm your email address.)"
msgstr "(你将收到一封邮件,包含了如何确认邮件地址的说明。)"
-#: actions/remotesubscribe.php:98
+#: actions/remotesubscribe.php:97
#, php-format
msgid ""
"To subscribe, you can [login](%%action.login%%), or [register](%%action."
@@ -4482,77 +4979,81 @@ msgstr ""
"%) 一个新账户。如果你已经在另一个[兼容的微博客](%%doc.openmublog%%)有账户,请"
"填入你的资料页 URL。"
-#: actions/remotesubscribe.php:112
+#: actions/remotesubscribe.php:111
msgid "Remote subscribe"
msgstr "远程关注"
-#: actions/remotesubscribe.php:124
+#: actions/remotesubscribe.php:123
msgid "Subscribe to a remote user"
msgstr "关注一个远程用户"
-#: actions/remotesubscribe.php:129
+#: actions/remotesubscribe.php:128
msgid "User nickname"
msgstr "昵称"
-#: actions/remotesubscribe.php:130
-msgid "Nickname of the user you want to follow"
-msgstr "希望关注的用户昵称"
+#: actions/remotesubscribe.php:129
+msgid "Nickname of the user you want to follow."
+msgstr "您要执行的用户的别名。"
-#: actions/remotesubscribe.php:133
+#: actions/remotesubscribe.php:132
msgid "Profile URL"
msgstr "资料页 URL"
-#: actions/remotesubscribe.php:134
-msgid "URL of your profile on another compatible microblogging service"
-msgstr "你在其他兼容的微博客服务的资料页 URL"
+#: actions/remotesubscribe.php:133
+msgid "URL of your profile on another compatible microblogging service."
+msgstr "另一种兼容的微博客服务配置文件的 URL。"
-#: actions/remotesubscribe.php:137 lib/subscribeform.php:139
-#: lib/userprofile.php:411
+#. TRANS: Link text for link that will subscribe to a remote profile.
+#: actions/remotesubscribe.php:136 lib/subscribeform.php:139
+#: lib/userprofile.php:431
msgid "Subscribe"
msgstr "关注"
-#: actions/remotesubscribe.php:159
-msgid "Invalid profile URL (bad format)"
+#: actions/remotesubscribe.php:158
+#, fuzzy
+msgid "Invalid profile URL (bad format)."
msgstr "无效的用户 URL (格式错误)"
-#: actions/remotesubscribe.php:168
+#: actions/remotesubscribe.php:167
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr "不是有效的资料页 URL (没有YADIS 文档或定义了无效的 XRDS)。"
-#: actions/remotesubscribe.php:176
-msgid "That’s a local profile! Login to subscribe."
-msgstr "这是一个本地用户!登录才能关注。"
+#: actions/remotesubscribe.php:175
+msgid "That is a local profile! Login to subscribe."
+msgstr "这是一个本地用户!请登录以关注。"
-#: actions/remotesubscribe.php:183
-msgid "Couldn’t get a request token."
+#: actions/remotesubscribe.php:182
+msgid "Could not get a request token."
msgstr "无法获得一个 request token。"
-#: actions/repeat.php:57
+#: actions/repeat.php:56
msgid "Only logged-in users can repeat notices."
msgstr "只有登录的用户才能重复发消息。"
-#: actions/repeat.php:64 actions/repeat.php:71
+#: actions/repeat.php:63 actions/repeat.php:70
msgid "No notice specified."
msgstr "没有指定的消息。"
-#: actions/repeat.php:76
-msgid "You can't repeat your own notice."
+#: actions/repeat.php:75
+msgid "You cannot repeat your own notice."
msgstr "你不能重复自己的消息。"
-#: actions/repeat.php:90
+#: actions/repeat.php:89
msgid "You already repeated that notice."
msgstr "你已转发过了那个消息。"
-#: actions/repeat.php:114 lib/noticelist.php:691
+#: actions/repeat.php:112 lib/noticelist.php:692
msgid "Repeated"
msgstr "已转发"
-#: actions/repeat.php:119
+#: actions/repeat.php:117
msgid "Repeated!"
msgstr "已转发!"
+#. TRANS: RSS reply feed title. %s is a user nickname.
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing @-replies.
#: actions/replies.php:126 actions/repliesrss.php:68
-#: lib/personalgroupnav.php:108
+#: lib/personalgroupnav.php:109
#, php-format
msgid "Replies to %s"
msgstr "对 %s 的回复"
@@ -4601,11 +5102,99 @@ msgstr ""
"你可以试着 [呼叫%1$s](../%2$s) 或者给他们 [发一些消息](%%%%action.newnotice%%"
"%%?status_textarea=%3$s)。"
-#: actions/repliesrss.php:72
-#, php-format
-msgid "Replies to %1$s on %2$s!"
+#. TRANS: RSS reply feed description.
+#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
+#: actions/repliesrss.php:74
+#, fuzzy, php-format
+msgid "Replies to %1$s on %2$s."
msgstr "在%2$s上对%1$s的回复!"
+#. TRANS: Client exception displayed when trying to restore an account while not logged in.
+#: actions/restoreaccount.php:78
+msgid "Only logged-in users can restore their account."
+msgstr "只有登录的用户才能恢复帐号。"
+
+#. TRANS: Client exception displayed when trying to restore an account without having restore rights.
+#: actions/restoreaccount.php:83
+msgid "You may not restore your account."
+msgstr "您不能恢复您的帐户。"
+
+#. TRANS: Client exception displayed trying to restore an account while something went wrong uploading a file.
+#. TRANS: Client exception. No file; probably just a non-AJAX submission.
+#: actions/restoreaccount.php:121 actions/restoreaccount.php:146
+msgid "No uploaded file."
+msgstr "没有上传文件。"
+
+#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
+#: actions/restoreaccount.php:129 lib/mediafile.php:194
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "上传文件大小超过了 php.ini 中 upload_max_filesize 的设置限制。"
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:135 lib/mediafile.php:200
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "上传文件大小超过了 HTML 表单中 MAX_FILE_SIZE 的设置限制。"
+
+#. TRANS: Client exception.
+#: actions/restoreaccount.php:141 lib/mediafile.php:206
+msgid "The uploaded file was only partially uploaded."
+msgstr "上传的文件只有部分被上传。"
+
+#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
+#: actions/restoreaccount.php:150 lib/mediafile.php:214
+msgid "Missing a temporary folder."
+msgstr "缺少一个临时文件夹。"
+
+#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
+#: actions/restoreaccount.php:154 lib/mediafile.php:218
+msgid "Failed to write file to disk."
+msgstr "写入磁盘失败。"
+
+#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
+#: actions/restoreaccount.php:158 lib/mediafile.php:222
+msgid "File upload stopped by extension."
+msgstr "文件上传被扩展停止了。"
+
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#. TRANS: Exception thrown when uploading an image fails for an unknown reason.
+#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
+#: actions/restoreaccount.php:164 lib/imagefile.php:106 lib/mediafile.php:228
+msgid "System error uploading file."
+msgstr "上传文件时出错。"
+
+#. TRANS: Client exception thrown when a feed is not an Atom feed.
+#: actions/restoreaccount.php:207
+msgid "Not an Atom feed."
+msgstr "不是一个Atom源"
+
+#. TRANS: Success message when a feed has been restored.
+#: actions/restoreaccount.php:241
+msgid ""
+"Feed has been restored. Your old posts should now appear in search and your "
+"profile page."
+msgstr "订阅源已恢复。您以前的帖子现在应已显示在搜索和您的资料页里。"
+
+#. TRANS: Message when a feed restore is in progress.
+#: actions/restoreaccount.php:245
+msgid "Feed will be restored. Please wait a few minutes for results."
+msgstr "将还原订阅源。请等待几分钟。"
+
+#. TRANS: Form instructions for feed restore.
+#: actions/restoreaccount.php:342
+msgid ""
+"You can upload a backed-up stream in Activity Streams format."
+msgstr ""
+"你可以以Activity Streams格式上传一个"
+"备份的流"
+
+#. TRANS: Title for submit button to confirm upload of a user backup file for account restore.
+#: actions/restoreaccount.php:373
+msgid "Upload the file"
+msgstr "上传文件"
+
#: actions/revokerole.php:75
msgid "You cannot revoke user roles on this site."
msgstr "你不能在这个网站移除用户角色。"
@@ -4614,7 +5203,7 @@ msgstr "你不能在这个网站移除用户角色。"
msgid "User doesn't have this role."
msgstr "用户没有此权限。"
-#: actions/rsd.php:146 actions/version.php:159
+#: actions/rsd.php:142 actions/version.php:159
msgid "StatusNet"
msgstr "StatusNet"
@@ -4656,119 +5245,128 @@ msgstr "打开 sessions 的调试输出。"
msgid "Save site settings"
msgstr "保存访问设置"
-#: actions/showapplication.php:82
+#: actions/showapplication.php:78
msgid "You must be logged in to view an application."
msgstr "你必须登录才能创建小组。"
-#: actions/showapplication.php:157
+#: actions/showapplication.php:151
msgid "Application profile"
msgstr "未找到应用。"
#. TRANS: Form input field label for application icon.
-#: actions/showapplication.php:159 lib/applicationeditform.php:173
+#: actions/showapplication.php:153 lib/applicationeditform.php:177
msgid "Icon"
msgstr "图标"
#. TRANS: Form input field label for application name.
-#: actions/showapplication.php:169 actions/version.php:197
+#: actions/showapplication.php:163 actions/version.php:197
#: lib/applicationeditform.php:190
msgid "Name"
msgstr "名称"
#. TRANS: Form input field label.
-#: actions/showapplication.php:178 lib/applicationeditform.php:227
+#: actions/showapplication.php:172 lib/applicationeditform.php:227
msgid "Organization"
msgstr "组织名称必填。"
#. TRANS: Form input field label.
-#: actions/showapplication.php:187 actions/version.php:200
-#: lib/applicationeditform.php:208 lib/groupeditform.php:175
+#: actions/showapplication.php:181 actions/version.php:200
+#: lib/applicationeditform.php:208 lib/groupeditform.php:168
msgid "Description"
msgstr "描述"
#. TRANS: Header for group statistics on a group page (h2).
-#: actions/showapplication.php:192 actions/showgroup.php:448
-#: lib/profileaction.php:187
+#. TRANS: H2 text for user statistics.
+#: actions/showapplication.php:186 actions/showgroup.php:460
+#: lib/profileaction.php:205
msgid "Statistics"
msgstr "统计"
-#: actions/showapplication.php:203
+#: actions/showapplication.php:197
#, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "由%1$s创建 - 默认访问权限%2$s - %3$d个用户"
-#: actions/showapplication.php:213
+#: actions/showapplication.php:207
msgid "Application actions"
msgstr "应用程序动作"
-#: actions/showapplication.php:236
+#: actions/showapplication.php:230
msgid "Reset key & secret"
msgstr "重置key和secret"
-#: actions/showapplication.php:252 lib/deletegroupform.php:121
-#: lib/deleteuserform.php:66 lib/noticelist.php:672
+#. TRANS: Title of form for deleting a user.
+#: actions/showapplication.php:246 lib/deletegroupform.php:121
+#: lib/deleteuserform.php:64 lib/noticelist.php:673
msgid "Delete"
msgstr "删除"
-#: actions/showapplication.php:261
+#: actions/showapplication.php:255
msgid "Application info"
msgstr "应用程序信息"
-#: actions/showapplication.php:263
+#: actions/showapplication.php:257
msgid "Consumer key"
msgstr "Consumer key"
-#: actions/showapplication.php:268
+#: actions/showapplication.php:262
msgid "Consumer secret"
msgstr "Consumer secret"
-#: actions/showapplication.php:273
+#: actions/showapplication.php:267
msgid "Request token URL"
msgstr "请求令牌URL"
-#: actions/showapplication.php:278
+#: actions/showapplication.php:272
msgid "Access token URL"
msgstr "访问令牌URL"
-#: actions/showapplication.php:283
+#: actions/showapplication.php:277
msgid "Authorize URL"
msgstr "授权URL"
-#: actions/showapplication.php:288
+#: actions/showapplication.php:282
msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method."
msgstr "提示:我们支持HMAC-SHA1签名。我们不支持明文的签名方法。"
-#: actions/showapplication.php:309
+#: actions/showapplication.php:302
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "你确定要重置你的consumer key和secret吗?"
-#: actions/showfavorites.php:79
+#. TRANS: Title for all but the first page of favourite notices of a user.
+#. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number.
+#: actions/showfavorites.php:80
#, php-format
msgid "%1$s's favorite notices, page %2$d"
msgstr "%1$s收藏的消息,第%2$d页"
-#: actions/showfavorites.php:132
+#. TRANS: Server error displayed when favourite notices could not be retrieved from the database.
+#: actions/showfavorites.php:134
msgid "Could not retrieve favorite notices."
msgstr "无法获取收藏的消息。"
-#: actions/showfavorites.php:171
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:172
#, php-format
msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "%s 好友的聚合"
-#: actions/showfavorites.php:178
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:180
#, php-format
msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "%s 好友的聚合"
-#: actions/showfavorites.php:185
+#. TRANS: Feed link text. %s is a username.
+#: actions/showfavorites.php:188
#, php-format
msgid "Feed for favorites of %s (Atom)"
msgstr "%s 好友的聚合"
-#: actions/showfavorites.php:206
+#. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites.
+#: actions/showfavorites.php:209
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."
@@ -4776,14 +5374,19 @@ msgstr ""
"你还没收藏任何消息呢。点击消息上的添加收藏按钮就可以添加到收藏夹以后查看或者"
"收藏一堆有趣的消息。"
-#: actions/showfavorites.php:208
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while logged in.
+#. TRANS: %s is a username.
+#: actions/showfavorites.php:213
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Post something interesting they "
"would add to their favorites :)"
msgstr "%s还没有收藏任何的消息。发一些他/她可能会添加到收藏的有趣的消息吧 :)"
-#: actions/showfavorites.php:212
+#. TRANS: Text displayed instead of favourite notices for a user that has no favourites while not logged in.
+#. TRANS: %s is a username, %%%%action.register%%%% is a link to the user registration page.
+#. TRANS: (link text)[link] is a Mark Down link.
+#: actions/showfavorites.php:220
#, php-format
msgid ""
"%s hasn't added any favorite notices yet. Why not [register an account](%%%%"
@@ -4793,7 +5396,8 @@ msgstr ""
"%s还没有收藏任何的消息。现在就 [注册账户](%%%%action.register%%%%) 并发一些"
"他/她可能会添加到收藏的有趣的消息吧 :)"
-#: actions/showfavorites.php:243
+#. TRANS: Page notice for show favourites page.
+#: actions/showfavorites.php:251
msgid "This is a way to share what you like."
msgstr "这是一种分享你喜欢的内容的方式。"
@@ -4811,81 +5415,88 @@ msgid "%1$s group, page %2$d"
msgstr "%1$s小组,第%2$d页"
#. TRANS: Group profile header (h2). Text hidden by default.
-#: actions/showgroup.php:220
+#: actions/showgroup.php:223
msgid "Group profile"
msgstr "小组资料"
#. TRANS: Label for group URL (dt). Text hidden by default.
-#: actions/showgroup.php:270 actions/tagother.php:118
-#: actions/userauthorization.php:175 lib/userprofile.php:180
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT for URL in a profile.
+#: actions/showgroup.php:273 actions/tagother.php:118
+#: actions/userauthorization.php:184 lib/userprofile.php:186
msgid "URL"
msgstr "URL 互联网地址"
#. TRANS: Label for group description or group note (dt). Text hidden by default.
-#: actions/showgroup.php:282 actions/tagother.php:128
-#: actions/userauthorization.php:187 lib/userprofile.php:197
+#. TRANS: DT element on Authorise Subscription page where bio is displayed.
+#. TRANS: DT for note in a profile.
+#: actions/showgroup.php:285 actions/tagother.php:128
+#: actions/userauthorization.php:197 lib/userprofile.php:204
msgid "Note"
msgstr "注释"
#. TRANS: Label for group aliases (dt). Text hidden by default.
-#: actions/showgroup.php:293 lib/groupeditform.php:187
+#: actions/showgroup.php:296 lib/groupeditform.php:180
msgid "Aliases"
msgstr "别名"
#. TRANS: Group actions header (h2). Text hidden by default.
-#: actions/showgroup.php:304
+#: actions/showgroup.php:313
msgid "Group actions"
msgstr "小组动作"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:345
+#: actions/showgroup.php:357
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr "%s小组的消息聚合 (RSS 1.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:352
+#: actions/showgroup.php:364
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr "%s小组的消息聚合 (RSS 2.0)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:359
+#: actions/showgroup.php:371
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr "%s小组的消息聚合 (Atom)"
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:365
+#: actions/showgroup.php:377
#, php-format
msgid "FOAF for %s group"
msgstr "%s 的发件箱"
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:402
+#: actions/showgroup.php:414
msgid "Members"
msgstr "小组成员"
#. TRANS: Description for mini list of group members on a group page when the group has no members.
-#: actions/showgroup.php:408 lib/profileaction.php:117
-#: lib/profileaction.php:152 lib/profileaction.php:255 lib/section.php:95
+#. TRANS: Text for user subscription statistics if the user has no subscriptions.
+#. TRANS: Text for user subscriber statistics if user has no subscribers.
+#. TRANS: Text for user user group membership statistics if user is not a member of any group.
+#: actions/showgroup.php:420 lib/profileaction.php:137
+#: lib/profileaction.php:174 lib/profileaction.php:298 lib/section.php:95
#: lib/subscriptionlist.php:127 lib/tagcloudsection.php:71
msgid "(None)"
msgstr "(无)"
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:417
+#: actions/showgroup.php:429
msgid "All members"
msgstr "所有成员"
#. TRANS: Label for creation date in statistics on group page.
-#: actions/showgroup.php:453
+#: actions/showgroup.php:465
msgctxt "LABEL"
msgid "Created"
msgstr "已创建"
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:461
+#: actions/showgroup.php:473
msgctxt "LABEL"
msgid "Members"
msgstr "成员"
@@ -4894,7 +5505,7 @@ msgstr "成员"
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:476
+#: actions/showgroup.php:488
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4912,7 +5523,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:486
+#: actions/showgroup.php:498
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -4926,30 +5537,30 @@ msgstr ""
"趣的消息。"
#. TRANS: Header for list of group administrators on a group page (h2).
-#: actions/showgroup.php:515
+#: actions/showgroup.php:527
msgid "Admins"
msgstr "管理员"
#. TRANS: Client error displayed requesting a single message that does not exist.
-#: actions/showmessage.php:79
+#: actions/showmessage.php:76
msgid "No such message."
msgstr "未找到此消息。"
#. TRANS: Client error displayed requesting a single direct message the requesting user was not a party in.
-#: actions/showmessage.php:97
+#: actions/showmessage.php:86
msgid "Only the sender and recipient may read this message."
msgstr "只有发送和接受双方可以阅读此消息。"
#. TRANS: Page title for single direct message display when viewing user is the sender.
#. TRANS: %1$s is the addressed user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:110
+#: actions/showmessage.php:105
#, php-format
msgid "Message to %1$s on %2$s"
msgstr "发送给 %1$s 的 %2$s 消息"
#. TRANS: Page title for single message display.
#. TRANS: %1$s is the sending user's nickname, $2$s is a timestamp.
-#: actions/showmessage.php:118
+#: actions/showmessage.php:113
#, php-format
msgid "Message from %1$s on %2$s"
msgstr "来自 %1$s 的 %2$s 消息"
@@ -4965,7 +5576,7 @@ msgid "%1$s tagged %2$s"
msgstr "%1$s 的标签 %2$s"
#. TRANS: Page title showing tagged notices in one user's stream.
-#. TRANS: %1$s is the username, %2$s is the hash tag, %1$d is the page number.
+#. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number.
#: actions/showstream.php:74
#, php-format
msgid "%1$s tagged %2$s, page %3$d"
@@ -5206,106 +5817,106 @@ msgstr "整个网站的公告文字(最长255字符;可使用HTML)"
#. TRANS: Title for button to save site notice in admin panel.
#: actions/sitenoticeadminpanel.php:201
-msgid "Save site notice"
-msgstr "保存网站公告"
+msgid "Save site notice."
+msgstr "保存网站公告。"
#. TRANS: Title for SMS settings.
-#: actions/smssettings.php:59
+#: actions/smssettings.php:57
msgid "SMS settings"
msgstr "SMS 设置"
#. TRANS: SMS settings page instructions.
#. TRANS: %%site.name%% is the name of the site.
-#: actions/smssettings.php:74
+#: actions/smssettings.php:71
#, php-format
msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "你可以通过 %%site.name%% 的电子邮件接收SMS短信。"
#. TRANS: Message given in the SMS settings if SMS is not enabled on the site.
-#: actions/smssettings.php:97
+#: actions/smssettings.php:93
msgid "SMS is not available."
msgstr "SMS 不可用。"
#. TRANS: Form legend for SMS settings form.
-#: actions/smssettings.php:111
+#: actions/smssettings.php:107
msgid "SMS address"
msgstr "SMS 地址"
#. TRANS: Form guide in SMS settings form.
-#: actions/smssettings.php:120
+#: actions/smssettings.php:116
msgid "Current confirmed SMS-enabled phone number."
msgstr "已确认的可以发送SMS短消息的电话号码。"
#. TRANS: Form guide in IM settings form.
-#: actions/smssettings.php:133
+#: actions/smssettings.php:129
msgid "Awaiting confirmation on this phone number."
msgstr "等待确认此电话号码。"
#. TRANS: Field label for SMS address input in SMS settings form.
-#: actions/smssettings.php:142
+#: actions/smssettings.php:138
msgid "Confirmation code"
msgstr "确认码"
#. TRANS: Form field instructions in SMS settings form.
-#: actions/smssettings.php:144
+#: actions/smssettings.php:140
msgid "Enter the code you received on your phone."
msgstr "输入手机收到的验证码。"
#. TRANS: Button label to confirm SMS confirmation code in SMS settings.
-#: actions/smssettings.php:148
+#: actions/smssettings.php:144
msgctxt "BUTTON"
msgid "Confirm"
msgstr "确认"
#. TRANS: Field label for SMS phone number input in SMS settings form.
-#: actions/smssettings.php:153
+#: actions/smssettings.php:149
msgid "SMS phone number"
msgstr "SMS 电话号码"
#. TRANS: SMS phone number input field instructions in SMS settings form.
-#: actions/smssettings.php:156
-msgid "Phone number, no punctuation or spaces, with area code"
-msgstr "电话号码,不带标点或空格,包含地区代码"
+#: actions/smssettings.php:152
+msgid "Phone number, no punctuation or spaces, with area code."
+msgstr "电话号码、 没有标点或带区号的空格。"
#. TRANS: Form legend for SMS preferences form.
-#: actions/smssettings.php:195
+#: actions/smssettings.php:191
msgid "SMS preferences"
msgstr "SMS 偏好"
#. TRANS: Checkbox label in SMS preferences form.
-#: actions/smssettings.php:201
+#: actions/smssettings.php:197
msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier."
msgstr "通过SMS短信将消息发给我;我了解这样也许会给我带来不菲的开支。"
#. TRANS: Confirmation message for successful SMS preferences save.
-#: actions/smssettings.php:315
+#: actions/smssettings.php:308
msgid "SMS preferences saved."
msgstr "SMS设置已保存。"
#. TRANS: Message given saving SMS phone number without having provided one.
-#: actions/smssettings.php:338
+#: actions/smssettings.php:330
msgid "No phone number."
msgstr "没有电话号码。"
#. TRANS: Message given saving SMS phone number without having selected a carrier.
-#: actions/smssettings.php:344
+#: actions/smssettings.php:336
msgid "No carrier selected."
msgstr "未选择运营商。"
#. TRANS: Message given saving SMS phone number that is already set.
-#: actions/smssettings.php:352
+#: actions/smssettings.php:344
msgid "That is already your phone number."
msgstr "你已登记此电话号码。"
#. TRANS: Message given saving SMS phone number that is already set for another user.
-#: actions/smssettings.php:356
+#: actions/smssettings.php:348
msgid "That phone number already belongs to another user."
msgstr "这个电话号码属于另一个用户。"
#. TRANS: Message given saving valid SMS phone number that is to be confirmed.
-#: actions/smssettings.php:384
+#: actions/smssettings.php:376
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."
@@ -5313,39 +5924,39 @@ msgstr ""
"验证码已被发送到你新增的电话号码。请检查你的电话,找到验证码并按要求使用它。"
#. TRANS: Message given canceling SMS phone number confirmation for the wrong phone number.
-#: actions/smssettings.php:413
+#: actions/smssettings.php:404
msgid "That is the wrong confirmation number."
msgstr "确认码错误。"
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
-#: actions/smssettings.php:427
+#: actions/smssettings.php:418
msgid "SMS confirmation cancelled."
msgstr "SMS 验证已取消。"
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
-#: actions/smssettings.php:448
+#: actions/smssettings.php:438
msgid "That is not your phone number."
msgstr "这是他人的电话号码。"
#. TRANS: Message given after successfully removing a registered SMS phone number.
-#: actions/smssettings.php:470
+#: actions/smssettings.php:460
msgid "The SMS phone number was removed."
msgstr "SMS 电话号码已移除。"
#. TRANS: Label for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:511
+#: actions/smssettings.php:499
msgid "Mobile carrier"
msgstr "移动运营商"
#. TRANS: Default option for mobile carrier dropdown menu in SMS settings.
-#: actions/smssettings.php:516
+#: actions/smssettings.php:504
msgid "Select a carrier"
msgstr "选择运营商"
#. TRANS: Form instructions for mobile carrier dropdown menu in SMS settings.
#. TRANS: %s is an administrative contact's e-mail address.
-#: actions/smssettings.php:525
+#: actions/smssettings.php:513
#, php-format
msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over "
@@ -5355,9 +5966,9 @@ msgstr ""
"系 %s 以告知。"
#. TRANS: Message given saving SMS phone number confirmation code without having provided one.
-#: actions/smssettings.php:548
-msgid "No code entered"
-msgstr "没有输入验证码"
+#: actions/smssettings.php:535
+msgid "No code entered."
+msgstr "没有输入的代码。"
#. TRANS: Menu item for site administration
#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196
@@ -5428,15 +6039,19 @@ msgstr "你没有关注这个用户"
msgid "Could not save subscription."
msgstr "无法保存关注。"
+#. TRANS: Client error displayed trying to perform any request method other than POST.
+#. TRANS: Do not translate POST.
#: actions/subscribe.php:77
msgid "This action only accepts POST requests."
msgstr "这个动作只接受 POST 请求"
-#: actions/subscribe.php:117
+#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
+#: actions/subscribe.php:121
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "你不能用这个操作关注一个 OMB 0.1 远程用户。"
-#: actions/subscribe.php:145
+#. TRANS: Page title when subscription succeeded.
+#: actions/subscribe.php:149
msgid "Subscribed"
msgstr "已关注"
@@ -5468,7 +6083,7 @@ msgid "These are the people who listen to %s's notices."
msgstr "这些用户关注了%s的消息。"
#. TRANS: Subscriber list text when the logged in user has no subscribers.
-#: actions/subscribers.php:116
+#: actions/subscribers.php:114
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
@@ -5476,7 +6091,7 @@ msgstr "还没有人关注你,尝试关注一些你认识的用户,他们或
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
-#: actions/subscribers.php:120
+#: actions/subscribers.php:118
#, php-format
msgid "%s has no subscribers. Want to be the first?"
msgstr "还没有人关注%s,成为第一个关注者?"
@@ -5486,7 +6101,7 @@ msgstr "还没有人关注%s,成为第一个关注者?"
#. TRANS: This message contains a Markdown URL. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscribers.php:129
+#: actions/subscribers.php:127
#, php-format
msgid ""
"%s has no subscribers. Why not [register an account](%%%%action.register%%%"
@@ -5519,7 +6134,7 @@ msgstr "这是%s关注的用户。"
#. TRANS: This message contains Markdown URLs. The link description is between
#. TRANS: square brackets, and the link between parentheses. Do not separate "]("
#. TRANS: and do not change the URL part.
-#: actions/subscriptions.php:135
+#: actions/subscriptions.php:133
#, php-format
msgid ""
"You're not listening to anyone's notices right now, try subscribing to "
@@ -5537,23 +6152,24 @@ msgstr ""
#. TRANS: than the logged in user that has no subscriptions. %s is the user nickname.
#. TRANS: Subscription list text when looking at the subscriptions for a of a user that has none
#. TRANS: as an anonymous user. %s is the user nickname.
-#: actions/subscriptions.php:143 actions/subscriptions.php:149
+#: actions/subscriptions.php:141 actions/subscriptions.php:147
#, php-format
msgid "%s is not listening to anyone."
msgstr "%s没有关注任何人。"
-#: actions/subscriptions.php:178
-#, fuzzy, php-format
+#. TRANS: Atom feed title. %s is a profile nickname.
+#: actions/subscriptions.php:176
+#, php-format
msgid "Subscription feed for %s (Atom)"
-msgstr "%s的消息聚合 (Atom)"
+msgstr "%s的订阅源 (Atom)"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:242
+#: actions/subscriptions.php:239
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
-#: actions/subscriptions.php:257
+#: actions/subscriptions.php:254
msgid "SMS"
msgstr "SMS"
@@ -5586,12 +6202,15 @@ msgstr "没有 ID 冲突。"
msgid "Tag %s"
msgstr "将%s加为标签"
+#. TRANS: H2 for user profile information.
#: actions/tagother.php:77 lib/userprofile.php:76
msgid "User profile"
msgstr "用户页面"
-#: actions/tagother.php:81 actions/userauthorization.php:132
-#: lib/userprofile.php:107
+#. TRANS: DT element on Authorise Subscription page.
+#. TRANS: DT element in area for user avatar.
+#: actions/tagother.php:81 actions/userauthorization.php:138
+#: lib/userprofile.php:108
msgid "Photo"
msgstr "相片"
@@ -5606,15 +6225,16 @@ msgid ""
msgstr ""
"给这个用户加注标签 (字母letters, 数字numbers, -, ., and _), 逗号或空格分隔"
+#: actions/tagother.php:178
+#, php-format
+msgid "Invalid tag: \"%s\""
+msgstr "无效的标签:\"%s\"。"
+
#: 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 "使用这个表单给你的关注者或你关注的用户添加标签。"
@@ -5623,6 +6243,7 @@ msgstr "使用这个表单给你的关注者或你关注的用户添加标签。
msgid "No such tag."
msgstr "没有此标签。"
+#. TRANS: Client error displayed when trying to unblock a non-blocked user.
#: actions/unblock.php:59
msgid "You haven't blocked that user."
msgstr "你未屏蔽该用户。"
@@ -5643,7 +6264,7 @@ msgstr "请求不含资料页 ID。"
msgid "Unsubscribed"
msgstr "已取消关注"
-#: actions/updateprofile.php:64 actions/userauthorization.php:337
+#: actions/updateprofile.php:64
#, php-format
msgid ""
"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’."
@@ -5673,13 +6294,12 @@ msgstr "无效的欢迎文字。最大长度255个字符。"
#. TRANS: Client error displayed when trying to set a non-existing user as default subscription for new
#. TRANS: users in user admin panel. %1$s is the invalid nickname.
#: actions/useradminpanel.php:166
-#, php-format
-msgid "Invalid default subscripton: '%1$s' is not a user."
+#, fuzzy, php-format
+msgid "Invalid default subscripton: \"%1$s\" is not a user."
msgstr "无效的默认关注:“%1$s”不是一个用户。"
#. TRANS: Link description in user account settings menu.
#: actions/useradminpanel.php:215 lib/accountsettingsaction.php:106
-#: lib/personalgroupnav.php:112
msgid "Profile"
msgstr "个人信息"
@@ -5735,54 +6355,64 @@ msgstr "是否允许用户发送注册邀请。"
#. TRANS: Title for button to save user settings in user admin panel.
#: actions/useradminpanel.php:302
-msgid "Save user settings"
-msgstr "保存用户设置"
+msgid "Save user settings."
+msgstr "保存用户设置。"
-#: actions/userauthorization.php:105
+#. TRANS: Page title.
+#: actions/userauthorization.php:109
msgid "Authorize subscription"
msgstr "授权关注"
-#: actions/userauthorization.php:110
+#. TRANS: Page notice on "Auhtorize subscription" page.
+#: actions/userauthorization.php:115
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”."
+"click \"Reject\"."
msgstr ""
-"请检查这些详细信息,确认希望关注此用户的消息。如果你不想关注,请点击\\\"拒绝"
-"\\\"。"
+"请检查这些详细信息,请确保您要订阅此用户的通知。如果您不只是要求某人的通知订"
+"阅,请单击\"拒绝\"。"
+#. TRANS: DT element on Authorise Subscription page where license is displayed.
#. TRANS: Menu item for site administration
-#: actions/userauthorization.php:196 actions/version.php:167
+#: actions/userauthorization.php:207 actions/version.php:167
#: lib/adminpanelaction.php:403
msgid "License"
msgstr "许可协议"
-#: actions/userauthorization.php:217
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:229
+msgctxt "BUTTON"
msgid "Accept"
msgstr "接受"
-#: actions/userauthorization.php:218 lib/subscribeform.php:115
-#: lib/subscribeform.php:139
-msgid "Subscribe to this user"
-msgstr "关注这个用户"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:231
+msgid "Subscribe to this user."
+msgstr "订阅此用户。"
-#: actions/userauthorization.php:219
+#. TRANS: Button text on Authorise Subscription page.
+#: actions/userauthorization.php:233
+msgctxt "BUTTON"
msgid "Reject"
msgstr "拒绝"
-#: actions/userauthorization.php:220
-msgid "Reject this subscription"
-msgstr "拒绝此关注"
+#. TRANS: Title for button on Authorise Subscription page.
+#: actions/userauthorization.php:235
+msgid "Reject this subscription."
+msgstr "拒绝此订阅。"
-#: actions/userauthorization.php:232
+#. TRANS: Client error displayed for an empty authorisation request.
+#: actions/userauthorization.php:248
msgid "No authorization request!"
msgstr "没有授权请求!"
-#: actions/userauthorization.php:254
+#. TRANS: Accept message header from Authorise subscription page.
+#: actions/userauthorization.php:271
msgid "Subscription authorized"
msgstr "已授权关注"
-#: actions/userauthorization.php:256
+#: actions/userauthorization.php:274
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 "
@@ -5791,65 +6421,89 @@ msgstr ""
"已授权关注,但是没有回传 URL。请到网站查看如何授权关注。你的 subscription "
"token 是:"
-#: actions/userauthorization.php:266
+#. TRANS: Reject message header from Authorise subscription page.
+#: actions/userauthorization.php:285
msgid "Subscription rejected"
msgstr "关注已拒绝"
-#: actions/userauthorization.php:268
+#: actions/userauthorization.php:288
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 "关注已拒绝,但是没有回传 URL。请到网站查看如何完全拒绝关注。"
-#: actions/userauthorization.php:303
-#, php-format
-msgid "Listener URI ‘%s’ not found here."
+#. TRANS: Exception thrown when no valid user is found for an authorisation request.
+#. TRANS: %s is a listener URI.
+#: actions/userauthorization.php:325
+#, fuzzy, php-format
+msgid "Listener URI \"%s\" not found here."
msgstr "Listener URI ‘%s’ 没有找到。"
-#: actions/userauthorization.php:308
-#, php-format
-msgid "Listenee URI ‘%s’ is too long."
+#. TRANS: Exception thrown when listenee URI is too long for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:332
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is too long."
msgstr "Listenee URI ‘%s’ 过长。"
-#: actions/userauthorization.php:314
-#, php-format
-msgid "Listenee URI ‘%s’ is a local user."
+#. TRANS: Exception thrown when listenee URI is a local user for an authorisation request.
+#. TRANS: %s is a listenee URI.
+#: actions/userauthorization.php:340
+#, fuzzy, php-format
+msgid "Listenee URI \"%s\" is a local user."
msgstr "Listenee URI ‘%s’ 是一个本地用户。"
-#: actions/userauthorization.php:329
-#, php-format
-msgid "Profile URL ‘%s’ is for a local user."
+#. TRANS: Exception thrown when profile URL is a local user for an authorisation request.
+#. TRANS: %s is a profile URL.
+#: actions/userauthorization.php:358
+#, fuzzy, php-format
+msgid "Profile URL \"%s\" is for a local user."
msgstr "个人信息 URL “%s” 是为本地用户的。"
-#: actions/userauthorization.php:345
-#, php-format
-msgid "Avatar URL ‘%s’ is not valid."
+#. TRANS: Exception thrown when licenses are not compatible for an authorisation request.
+#. TRANS: %1$s is the license for the listenee, %2$s is the license for "this" StatusNet site.
+#: actions/userauthorization.php:368
+#, fuzzy, php-format
+msgid ""
+"Listenee stream license \"%1$s\" is not compatible with site license \"%2$s"
+"\"."
+msgstr "Listenee stream 许可证“‘%1$s” 与本网站的许可证 “%2$s”不兼容。"
+
+#. TRANS: Exception thrown when avatar URL is invalid for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:378
+#, fuzzy, php-format
+msgid "Avatar URL \"%s\" is not valid."
msgstr "头像地址‘%s’无效。"
-#: actions/userauthorization.php:350
-#, php-format
-msgid "Can’t read avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL could not be read for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:385
+#, fuzzy, php-format
+msgid "Cannot read avatar URL \"%s\"."
msgstr "无法读取头像 URL '%s'。"
-#: actions/userauthorization.php:355
-#, php-format
-msgid "Wrong image type for avatar URL ‘%s’."
+#. TRANS: Exception thrown when avatar URL return an invalid image type for an authorisation request.
+#. TRANS: %s is an avatar URL.
+#: actions/userauthorization.php:392
+#, fuzzy, php-format
+msgid "Wrong image type for avatar URL \"%s\"."
msgstr "头像 URL ‘%s’ 图像格式错误。"
#. TRANS: Page title for profile design page.
-#: actions/userdesignsettings.php:76 lib/designsettings.php:63
+#: actions/userdesignsettings.php:74 lib/designsettings.php:63
msgid "Profile design"
msgstr "个人页面外观"
#. TRANS: Instructions for profile design page.
-#: actions/userdesignsettings.php:87 lib/designsettings.php:74
+#: actions/userdesignsettings.php:84 lib/designsettings.php:74
msgid ""
"Customize the way your profile looks with a background image and a colour "
"palette of your choice."
msgstr "通过背景图片和调色板自定义你的页面外观。"
-#: actions/userdesignsettings.php:282
+#: actions/userdesignsettings.php:272
msgid "Enjoy your hotdog!"
msgstr "享受你的成果吧!"
@@ -5879,7 +6533,7 @@ msgstr "试一下[搜索小组](%%action.groupsearch%%)并加入他们。"
#. TRANS: Message is used as a subtitle in atom user notice feed.
#. TRANS: %1$s is a user name, %2$s is a site name.
#: actions/userrss.php:97 lib/atomgroupnoticefeed.php:70
-#: lib/atomusernoticefeed.php:75
+#: lib/atomusernoticefeed.php:95
#, php-format
msgid "Updates from %1$s on %2$s!"
msgstr "%2$s 上 %1$s 的更新!"
@@ -5933,7 +6587,7 @@ msgid "Plugins"
msgstr "插件"
#. TRANS: Secondary navigation menu option leading to version information on the StatusNet site.
-#: actions/version.php:198 lib/action.php:885
+#: actions/version.php:198 lib/action.php:898
msgid "Version"
msgstr "版本"
@@ -5942,32 +6596,32 @@ msgid "Author(s)"
msgstr "作者"
#. TRANS: Activity title when marking a notice as favorite.
-#: classes/Fave.php:151 lib/favorform.php:143
+#: classes/Fave.php:164
msgid "Favor"
msgstr "收藏"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
-#: classes/Fave.php:154
+#: classes/Fave.php:167
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%1$s 收藏了消息 %2$s 。"
#. TRANS: Server exception thrown when a URL cannot be processed.
-#: classes/File.php:156
+#: classes/File.php:162
#, php-format
msgid "Cannot process URL '%s'"
msgstr "不能处理 URL “%s”"
#. TRANS: Server exception thrown when... Robin thinks something is impossible!
-#: classes/File.php:188
+#: classes/File.php:194
msgid "Robin thinks something is impossible."
msgstr "麦子认为卖烧麦是份很令人愉快的工作。"
#. TRANS: Message given if an upload is larger than the configured maximum.
#. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file.
#. TRANS: %1$s is used for plural.
-#: classes/File.php:204
+#: classes/File.php:210
#, php-format
msgid ""
"No file may be larger than %1$d byte and the file you sent was %2$d bytes. "
@@ -5979,7 +6633,7 @@ msgstr[0] "文件不能大于%1$d字节,而你上传的文件是%2$d字节。
#. TRANS: Message given if an upload would exceed user quota.
#. TRANS: %d (number) is the user quota in bytes and is used for plural.
-#: classes/File.php:217
+#: classes/File.php:223
#, php-format
msgid "A file this large would exceed your user quota of %d byte."
msgid_plural "A file this large would exceed your user quota of %d bytes."
@@ -5987,14 +6641,14 @@ msgstr[0] "这么大的文件会超过你%d字节的用户配额。"
#. TRANS: Message given id an upload would exceed a user's monthly quota.
#. TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
-#: classes/File.php:229
+#: classes/File.php:235
#, php-format
msgid "A file this large would exceed your monthly quota of %d byte."
msgid_plural "A file this large would exceed your monthly quota of %d bytes."
msgstr[0] "这么大的文件会超过你%d字节的每月配额。"
#. TRANS: Client exception thrown if a file upload does not have a valid name.
-#: classes/File.php:276 classes/File.php:291
+#: classes/File.php:282 classes/File.php:297
msgid "Invalid filename."
msgstr "无效的文件名。"
@@ -6052,7 +6706,7 @@ msgid "Could not create login token for %s"
msgstr "无法创建别名。"
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:533
+#: classes/Memcached_DataObject.php:542
msgid "No database name or DSN found anywhere."
msgstr "没有找到数据库名称或者 DSN。"
@@ -6079,71 +6733,71 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "没有对于 消息 (%2$d) 的 个人信息页 (%1$d) 。"
#. TRANS: Server exception. %s are the error details.
-#: classes/Notice.php:193
+#: classes/Notice.php:199
#, php-format
msgid "Database error inserting hashtag: %s"
msgstr "插入标签时数据库出错:%s"
#. TRANS: Client exception thrown if a notice contains too many characters.
-#: classes/Notice.php:270
+#: classes/Notice.php:279
msgid "Problem saving notice. Too long."
msgstr "保存消息时出错。太长。"
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
-#: classes/Notice.php:275
+#: classes/Notice.php:284
msgid "Problem saving notice. Unknown user."
msgstr "保存消息时出错。未知用户。"
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
-#: classes/Notice.php:281
+#: classes/Notice.php:290
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。"
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
-#: classes/Notice.php:288
+#: classes/Notice.php:297
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr "你在短时间里发布了过多的重复消息,请深呼吸,过几分钟再发消息。"
#. TRANS: Client exception thrown when a user tries to post while being banned.
-#: classes/Notice.php:296
+#: classes/Notice.php:305
msgid "You are banned from posting notices on this site."
msgstr "在这个网站你被禁止发布消息。"
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
-#: classes/Notice.php:363 classes/Notice.php:390
+#: classes/Notice.php:372 classes/Notice.php:399
msgid "Problem saving notice."
msgstr "保存消息时出错。"
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:913
+#: classes/Notice.php:929
msgid "Bad type provided to saveKnownGroups."
msgstr "对 saveKnownGroups 提供的类型无效。"
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1012
+#: classes/Notice.php:1028
msgid "Problem saving group inbox."
msgstr "保存小组收件箱时出错。"
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1126
+#: classes/Notice.php:1142
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "无法保存回复,%1$d 对 %2$d。"
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1645
+#: classes/Notice.php:1661
#, php-format
msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s"
#. TRANS: Full name of a profile or group followed by nickname in parens
-#: classes/Profile.php:172 classes/User_group.php:247
+#: classes/Profile.php:172 classes/User_group.php:242
#, php-format
msgctxt "FANCYNAME"
msgid "%1$s (%2$s)"
@@ -6151,14 +6805,14 @@ msgstr "%1$s (%2$s)"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:798
+#: classes/Profile.php:775
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,不存在。"
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
-#: classes/Profile.php:807
+#: classes/Profile.php:784
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr "无法取消用户#%2$d的\\\"%1$s\\\"权限,数据库错误。"
@@ -6228,35 +6882,56 @@ msgid "Welcome to %1$s, @%2$s!"
msgstr "欢迎来到 %1$s,@%2$s!"
#. TRANS: Server exception.
-#: classes/User.php:923
+#: classes/User.php:918
msgid "No single user defined for single-user mode."
msgstr "没有单独的用户被定义为单用户模式。"
#. TRANS: Server exception.
-#: classes/User.php:927
+#: classes/User.php:922
msgid "Single-user mode code called when not enabled."
msgstr "没启用单用户模式的代码。"
#. TRANS: Server exception thrown when creating a group failed.
-#: classes/User_group.php:511
+#: classes/User_group.php:522
msgid "Could not create group."
msgstr "无法创建小组。"
#. TRANS: Server exception thrown when updating a group URI failed.
-#: classes/User_group.php:521
+#: classes/User_group.php:532
msgid "Could not set group URI."
msgstr "无法设置小组 URI。"
#. TRANS: Server exception thrown when setting group membership failed.
-#: classes/User_group.php:544
+#: classes/User_group.php:555
msgid "Could not set group membership."
msgstr "无法设置小组成员。"
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:559
+#: classes/User_group.php:570
msgid "Could not save local group info."
msgstr "无法保存本地小组信息。"
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:65
+#, php-format
+msgid "Cannot locate account %s."
+msgstr "找不到帐户 %s。"
+
+#. TRANS: Exception thrown when a service document could not be located account move.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:106
+#, php-format
+msgid "Cannot find XRD for %s."
+msgstr ""
+
+#. TRANS: Exception thrown when an account could not be located when it should be moved.
+#. TRANS: %s is the remote site.
+#: lib/accountmover.php:131
+#, php-format
+msgid "No AtomPub API service for %s."
+msgstr ""
+
#. TRANS: Link title attribute in user account settings menu.
#: lib/accountsettingsaction.php:104
msgid "Change your profile settings"
@@ -6293,211 +6968,214 @@ msgid "Other"
msgstr "其他"
#. TRANS: Page title. %1$s is the title, %2$s is the site name.
-#: lib/action.php:148
+#: lib/action.php:161
#, php-format
msgid "%1$s - %2$s"
msgstr "%1$s - %2$s"
#. TRANS: Page title for a page without a title set.
-#: lib/action.php:164
+#: lib/action.php:177
msgid "Untitled page"
msgstr "无标题页"
#. TRANS: Localized tooltip for '...' expansion button on overlong remote messages.
-#: lib/action.php:312
+#: lib/action.php:325
msgctxt "TOOLTIP"
msgid "Show more"
msgstr "显示更多"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
-#: lib/action.php:531
+#: lib/action.php:544
msgid "Primary site navigation"
msgstr "主站导航"
-#. TRANS: Tooltip for main menu option "Personal"
-#: lib/action.php:537
+#. TRANS: Tooltip for main menu option "Personal".
+#: lib/action.php:550
msgctxt "TOOLTIP"
msgid "Personal profile and friends timeline"
msgstr "个人资料及朋友的时间线"
-#. TRANS: Main menu option when logged in for access to personal profile and friends timeline
-#: lib/action.php:540
+#. TRANS: Main menu option when logged in for access to personal profile and friends timeline.
+#. TRANS: Personal group navigation menu option when logged in for viewing timeline of self and friends.
+#: lib/action.php:553 lib/personalgroupnav.php:100
msgctxt "MENU"
msgid "Personal"
msgstr "个人"
-#. TRANS: Tooltip for main menu option "Account"
-#: lib/action.php:542
+#. TRANS: Tooltip for main menu option "Account".
+#: lib/action.php:555
msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile"
msgstr "修改你的 email 地址、头像、密码、资料"
-#. TRANS: Main menu option when logged in for access to user settings
-#: lib/action.php:545
+#. TRANS: Main menu option when logged in for access to user settings.
+#: lib/action.php:558
msgid "Account"
msgstr "帐号"
-#. TRANS: Tooltip for main menu option "Services"
-#: lib/action.php:547
+#. TRANS: Tooltip for main menu option "Services".
+#: lib/action.php:560
msgctxt "TOOLTIP"
msgid "Connect to services"
msgstr "关联的服务"
-#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services
-#: lib/action.php:550
+#. TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services.
+#: lib/action.php:563
msgid "Connect"
msgstr "关联"
-#. TRANS: Tooltip for menu option "Admin"
-#: lib/action.php:553
+#. TRANS: Tooltip for menu option "Admin".
+#: lib/action.php:566
msgctxt "TOOLTIP"
msgid "Change site configuration"
msgstr "更改网站配置"
-#. TRANS: Main menu option when logged in and site admin for access to site configuration
+#. TRANS: Main menu option when logged in and site admin for access to site configuration.
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
-#: lib/action.php:556 lib/groupnav.php:117
+#: lib/action.php:569 lib/groupnav.php:117
msgctxt "MENU"
msgid "Admin"
msgstr "管理"
-#. TRANS: Tooltip for main menu option "Invite"
-#: lib/action.php:560
+#. TRANS: Tooltip for main menu option "Invite".
+#: lib/action.php:573
#, php-format
msgctxt "TOOLTIP"
msgid "Invite friends and colleagues to join you on %s"
msgstr "邀请好友和同事加入%s。"
-#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users
-#: lib/action.php:563
+#. TRANS: Main menu option when logged in and invitations are allowed for inviting new users.
+#: lib/action.php:576
msgctxt "MENU"
msgid "Invite"
msgstr "邀请"
#. TRANS: Tooltip for main menu option "Logout"
-#: lib/action.php:569
+#: lib/action.php:582
msgctxt "TOOLTIP"
msgid "Logout from the site"
msgstr "从网站登出"
-#. TRANS: Main menu option when logged in to log out the current user
-#: lib/action.php:572
+#. TRANS: Main menu option when logged in to log out the current user.
+#: lib/action.php:585
msgctxt "MENU"
msgid "Logout"
msgstr "登出"
-#. TRANS: Tooltip for main menu option "Register"
-#: lib/action.php:577
+#. TRANS: Tooltip for main menu option "Register".
+#: lib/action.php:590
msgctxt "TOOLTIP"
msgid "Create an account"
msgstr "创建一个账户"
-#. TRANS: Main menu option when not logged in to register a new account
-#: lib/action.php:580
+#. TRANS: Main menu option when not logged in to register a new account.
+#. TRANS: Menu item for registering with the StatusNet site.
+#: lib/action.php:593 lib/logingroupnav.php:85
msgctxt "MENU"
msgid "Register"
msgstr "注册"
-#. TRANS: Tooltip for main menu option "Login"
-#: lib/action.php:583
+#. TRANS: Tooltip for main menu option "Login".
+#: lib/action.php:596
msgctxt "TOOLTIP"
msgid "Login to the site"
msgstr "登录这个网站"
-#. TRANS: Main menu option when not logged in to log in
-#: lib/action.php:586
+#. TRANS: Main menu option when not logged in to log in.
+#. TRANS: Menu item for logging in to the StatusNet site.
+#: lib/action.php:599 lib/logingroupnav.php:77
msgctxt "MENU"
msgid "Login"
msgstr "登录"
-#. TRANS: Tooltip for main menu option "Help"
-#: lib/action.php:589
+#. TRANS: Tooltip for main menu option "Help".
+#: lib/action.php:602
msgctxt "TOOLTIP"
msgid "Help me!"
msgstr "帮助我!"
-#. TRANS: Main menu option for help on the StatusNet site
-#: lib/action.php:592
+#. TRANS: Main menu option for help on the StatusNet site.
+#: lib/action.php:605
msgctxt "MENU"
msgid "Help"
msgstr "帮助"
-#. TRANS: Tooltip for main menu option "Search"
-#: lib/action.php:595
+#. TRANS: Tooltip for main menu option "Search".
+#: lib/action.php:608
msgctxt "TOOLTIP"
msgid "Search for people or text"
msgstr "搜索人或文字"
-#. TRANS: Main menu option when logged in or when the StatusNet instance is not private
-#: lib/action.php:598
+#. TRANS: Main menu option when logged in or when the StatusNet instance is not private.
+#: lib/action.php:611
msgctxt "MENU"
msgid "Search"
msgstr "搜索"
#. TRANS: DT element for site notice. String is hidden in default CSS.
#. TRANS: Menu item for site administration
-#: lib/action.php:620 lib/adminpanelaction.php:387
+#: lib/action.php:633 lib/adminpanelaction.php:387
msgid "Site notice"
msgstr "网站消息"
#. TRANS: DT element for local views block. String is hidden in default CSS.
-#: lib/action.php:687
+#: lib/action.php:700
msgid "Local views"
msgstr "本地显示"
#. TRANS: DT element for page notice. String is hidden in default CSS.
-#: lib/action.php:757
+#: lib/action.php:770
msgid "Page notice"
msgstr "页面消息"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
-#: lib/action.php:858
+#: lib/action.php:871
msgid "Secondary site navigation"
msgstr "副站导航"
#. TRANS: Secondary navigation menu option leading to help on StatusNet.
-#: lib/action.php:864
+#: lib/action.php:877
msgid "Help"
msgstr "帮助"
#. TRANS: Secondary navigation menu option leading to text about StatusNet site.
-#: lib/action.php:867
+#: lib/action.php:880
msgid "About"
msgstr "关于"
#. TRANS: Secondary navigation menu option leading to Frequently Asked Questions.
-#: lib/action.php:870
+#: lib/action.php:883
msgid "FAQ"
msgstr "FAQ"
#. TRANS: Secondary navigation menu option leading to Terms of Service.
-#: lib/action.php:875
+#: lib/action.php:888
msgid "TOS"
msgstr "条款"
#. TRANS: Secondary navigation menu option leading to privacy policy.
-#: lib/action.php:879
+#: lib/action.php:892
msgid "Privacy"
msgstr "隐私"
#. TRANS: Secondary navigation menu option. Leads to information about StatusNet and its license.
-#: lib/action.php:882
+#: lib/action.php:895
msgid "Source"
msgstr "源码"
#. TRANS: Secondary navigation menu option leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#: lib/action.php:889
+#: lib/action.php:902
msgid "Contact"
msgstr "联系"
#. TRANS: Secondary navigation menu option. Leads to information about embedding a timeline widget.
-#: lib/action.php:892
+#: lib/action.php:905
msgid "Badge"
msgstr "挂件"
#. TRANS: DT element for StatusNet software license.
-#: lib/action.php:921
+#: lib/action.php:934
msgid "StatusNet software license"
msgstr "StatusNet 软件许可证"
@@ -6505,7 +7183,7 @@ msgstr "StatusNet 软件许可证"
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: "%%site.broughtby%%" is the value of the variable site.broughtby
-#: lib/action.php:928
+#: lib/action.php:941
#, php-format
msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
@@ -6515,7 +7193,7 @@ msgstr ""
"broughtbyurl%%)。"
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
-#: lib/action.php:931
+#: lib/action.php:944
#, php-format
msgid "**%%site.name%%** is a microblogging service."
msgstr "**%%site.name%%** 是一个微博客服务。"
@@ -6524,7 +7202,7 @@ msgstr "**%%site.name%%** 是一个微博客服务。"
#. TRANS: Make sure there is no whitespace between "]" and "(".
#. TRANS: Text between [] is a link description, text between () is the link itself.
#. TRANS: %s is the version of StatusNet that is being used.
-#: lib/action.php:938
+#: lib/action.php:951
#, php-format
msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
@@ -6535,50 +7213,50 @@ msgstr ""
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)授权。"
#. TRANS: DT element for StatusNet site content license.
-#: lib/action.php:954
+#: lib/action.php:967
msgid "Site content license"
msgstr "网站内容许可协议"
#. TRANS: Content license displayed when license is set to 'private'.
#. TRANS: %1$s is the site name.
-#: lib/action.php:961
+#: lib/action.php:974
#, php-format
msgid "Content and data of %1$s are private and confidential."
msgstr "%1$s的内容和数据是私人且保密的。"
#. TRANS: Content license displayed when license is set to 'allrightsreserved'.
#. TRANS: %1$s is the copyright owner.
-#: lib/action.php:968
+#: lib/action.php:981
#, php-format
msgid "Content and data copyright by %1$s. All rights reserved."
msgstr "内容和数据%1$s版权所有并保留所有权利。"
#. TRANS: Content license displayed when license is set to 'allrightsreserved' and no owner is set.
-#: lib/action.php:972
+#: lib/action.php:985
msgid "Content and data copyright by contributors. All rights reserved."
msgstr "内容和数据贡献者版权所有并保留所有权利。"
#. TRANS: license message in footer.
#. TRANS: %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration.
-#: lib/action.php:1004
+#: lib/action.php:1017
#, php-format
msgid "All %1$s content and data are available under the %2$s license."
msgstr "所有%1$s的内容和数据在%2$s许可下有效。"
#. TRANS: DT element for pagination (previous/next, etc.).
-#: lib/action.php:1340
+#: lib/action.php:1353
msgid "Pagination"
msgstr "分页"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: present than the currently displayed information.
-#: lib/action.php:1351
+#: lib/action.php:1364
msgid "After"
msgstr "之后"
#. TRANS: Pagination message to go to a page displaying information more in the
#. TRANS: past than the currently displayed information.
-#: lib/action.php:1361
+#: lib/action.php:1374
msgid "Before"
msgstr "之前"
@@ -6587,10 +7265,77 @@ msgstr "之前"
msgid "Expecting a root feed element but got a whole XML document."
msgstr "只期待一个 root feed 元素但收到了整个的 XML 文档。"
-#: lib/activity.php:360
-#, fuzzy
-msgid "Post"
-msgstr "相片"
+#. TRANS: Client exception thrown when using an unknown verb for the activity importer.
+#: lib/activityimporter.php:81
+#, php-format
+msgid "Unknown verb: \"%s\"."
+msgstr "未知的动词:“%s”"
+
+#. TRANS: Client exception thrown when trying to force a subscription for an untrusted user.
+#: lib/activityimporter.php:107
+msgid "Cannot force subscription for untrusted user."
+msgstr "不能强迫不受信任的用户订阅。"
+
+#. TRANS: Client exception thrown when trying to for a remote user to subscribe.
+#: lib/activityimporter.php:117
+msgid "Cannot force remote user to subscribe."
+msgstr "不能强制远程用户订阅。"
+
+#. TRANS: Client exception thrown when trying to subscribe to an unknown profile.
+#: lib/activityimporter.php:132
+msgid "Unknown profile."
+msgstr "未知的配置文件"
+
+#. TRANS: Client exception thrown when trying to import an event not related to the importing user.
+#: lib/activityimporter.php:138
+msgid "This activity seems unrelated to our user."
+msgstr "这项活动似乎与我们的用户无关。"
+
+#. TRANS: Client exception thrown when trying to join a remote group that is not a group.
+#: lib/activityimporter.php:154
+msgid "Remote profile is not a group!"
+msgstr "远程配置文件不是一个组 !"
+
+#. TRANS: Client exception thrown when trying to join a group the importing user is already a member of.
+#: lib/activityimporter.php:163
+msgid "User is already a member of this group."
+msgstr "用户已经是该小组成员。"
+
+#. TRANS: Client exception thrown when trying to import a notice by another user.
+#. TRANS: %1$s is the source URI of the notice, %2$s is the URI of the author.
+#: lib/activityimporter.php:201
+#, php-format
+msgid "Already know about notice %1$s and it has a different author %2$s."
+msgstr ""
+
+#. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import.
+#: lib/activityimporter.php:207
+msgid "Not overwriting author info for non-trusted user."
+msgstr "不受信任的用户的信息不被重写。"
+
+#. TRANS: Client exception thrown when trying to import a notice without content.
+#. TRANS: %s is the notice URI.
+#: lib/activityimporter.php:223
+#, php-format
+msgid "No content for notice %s."
+msgstr "通知 %s 没有内容。"
+
+#: lib/activitymover.php:84
+#, php-format
+msgid "No such user %s."
+msgstr "没有这样的用户 %s。"
+
+#. TRANS: Client exception thrown when post to collection fails with a 400 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Server exception thrown when post to collection fails with a 500 status.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#. TRANS: Exception thrown when post to collection fails with a status that is not handled.
+#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
+#: lib/activitysink.php:163 lib/activitysink.php:167 lib/activitysink.php:172
+#, php-format
+msgctxt "URLSTATUSREASON"
+msgid "%1$s %2$s %3$s"
+msgstr "%1$s %2$s %3$s"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
@@ -6662,7 +7407,7 @@ msgid "User configuration"
msgstr "用户配置"
#. TRANS: Menu item for site administration
-#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:118
+#: lib/adminpanelaction.php:355 lib/personalgroupnav.php:122
msgid "User"
msgstr "用户"
@@ -6706,19 +7451,23 @@ msgstr "API 资源需要读写的访问权限,但是你只有只读的权限
msgid "No application for that consumer key."
msgstr "没有应用使用这个 consumer key。"
+#: lib/apiauth.php:202 lib/apiauth.php:284
+msgid "Not allowed to use API."
+msgstr ""
+
#. TRANS: OAuth exception given when an incorrect access token was given for a user.
-#: lib/apiauth.php:219
+#: lib/apiauth.php:225
msgid "Bad access token."
msgstr "无效的 access token。"
#. TRANS: OAuth exception given when no user was found for a given token (no token was found).
-#: lib/apiauth.php:224
+#: lib/apiauth.php:230
msgid "No user for that token."
msgstr "没有用户使用这个 token。"
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
-#: lib/apiauth.php:266 lib/apiauth.php:293
+#: lib/apiauth.php:272 lib/apiauth.php:302
msgid "Could not authenticate you."
msgstr "无法验证你。"
@@ -6739,27 +7488,30 @@ msgid ""
msgstr "无法找到请求 token 对应的用户和应用。"
#. TRANS: Exception thrown when no access token can be issued.
-#: lib/apioauthstore.php:186
+#: lib/apioauthstore.php:209
msgid "Could not issue access token."
msgstr "无法发行 access token。"
-#. TRANS: Server error displayed when a database error occurs.
-#: lib/apioauthstore.php:243
+#: lib/apioauthstore.php:317
msgid "Database error inserting OAuth application user."
msgstr "插入 OAuth 应用用户时数据库出错。"
+#: lib/apioauthstore.php:345
+msgid "Database error updating OAuth application user."
+msgstr "插入 OAuth 应用用户时数据库出错。"
+
#. TRANS: Exception thrown when an attempt is made to revoke an unknown token.
-#: lib/apioauthstore.php:285
+#: lib/apioauthstore.php:371
msgid "Tried to revoke unknown token."
msgstr "尝试了取消未知的 token。"
#. TRANS: Exception thrown when an attempt is made to remove a revoked token.
-#: lib/apioauthstore.php:290
+#: lib/apioauthstore.php:376
msgid "Failed to delete revoked token."
msgstr "删除取消的 token 失败。"
#. TRANS: Form guide.
-#: lib/applicationeditform.php:178
+#: lib/applicationeditform.php:182
msgid "Icon for this application"
msgstr "该应用的图标"
@@ -6869,17 +7621,22 @@ msgctxt "BUTTON"
msgid "Revoke"
msgstr "取消"
-#: lib/atom10feed.php:112
-msgid "author element must contain a name element."
+#: lib/atom10feed.php:113
+msgid "Author element must contain a name element."
msgstr "作者元素必须包含一个名称元素。"
+#. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed.
+#: lib/atom10feed.php:160
+msgid "Do not use this method!"
+msgstr "不要使用此方法 !"
+
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:294
+#: lib/attachmentlist.php:293
msgid "Author"
msgstr "作者"
#. TRANS: DT element label in attachment list item.
-#: lib/attachmentlist.php:308
+#: lib/attachmentlist.php:307
msgid "Provider"
msgstr "提供者"
@@ -6908,6 +7665,11 @@ msgstr "不允许更改密码。"
msgid "Block"
msgstr "屏蔽"
+#. TRANS: Description of the form to block a user.
+#: lib/blockform.php:79
+msgid "Block this user"
+msgstr "屏蔽这个用户"
+
#. TRANS: Title for command results.
#: lib/channel.php:160 lib/channel.php:181
msgid "Command results"
@@ -7021,7 +7783,7 @@ msgstr "全名:%s"
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:434 lib/mail.php:278
+#: lib/command.php:434 lib/mail.php:270
#, php-format
msgid "Location: %s"
msgstr "位置:%s"
@@ -7029,7 +7791,7 @@ msgstr "位置:%s"
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:438 lib/mail.php:282
+#: lib/command.php:438 lib/mail.php:274
#, php-format
msgid "Homepage: %s"
msgstr "主页:%s"
@@ -7292,24 +8054,24 @@ msgstr ""
"tracking - 尚未实现。\n"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:147
+#: lib/common.php:162
msgid "No configuration file found."
msgstr "没有找到配置文件。"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: Is followed by a list of directories (separated by HTML breaks).
-#: lib/common.php:150
+#: lib/common.php:165
msgid "I looked for configuration files in the following places:"
msgstr "我在以下位置查找了配置文件:"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
-#: lib/common.php:153
+#: lib/common.php:168
msgid "You may wish to run the installer to fix this."
msgstr "或许你想运行安装程序来解决这个问题。"
#. TRANS: Error message displayed when no configuration file was found for a StatusNet installation.
#. TRANS: The text is link text that leads to the installer page.
-#: lib/common.php:157
+#: lib/common.php:172
msgid "Go to the installer."
msgstr "去安装程序。"
@@ -7350,14 +8112,19 @@ msgstr "被授权已连接的应用"
msgid "Database error"
msgstr "数据库错误"
+#. TRANS: Description of form for deleting a user.
+#: lib/deleteuserform.php:75
+msgid "Delete this user"
+msgstr "删除这个用户"
+
#. TRANS: Label in form on profile design page.
#. TRANS: Field contains file name on user's computer that could be that user's custom profile background image.
-#: lib/designsettings.php:104
+#: lib/designsettings.php:108
msgid "Upload file"
msgstr "上传文件"
#. TRANS: Instructions for form on profile design page.
-#: lib/designsettings.php:109
+#: lib/designsettings.php:113
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "你可以上传你的个人页面背景。文件最大 2MB。"
@@ -7374,25 +8141,72 @@ msgctxt "RADIO"
msgid "Off"
msgstr "关闭"
-#. TRANS: Button text on profile design page to reset all colour settings to default without saving.
-#: lib/designsettings.php:264
-msgctxt "BUTTON"
-msgid "Reset"
-msgstr "重置"
+#. TRANS: Fieldset legend on profile design page to change profile page colours.
+#: lib/designsettings.php:175
+msgid "Change colours"
+msgstr "改变颜色"
+
+#. TRANS: Button text on profile design page to immediately reset all colour settings to default.
+#: lib/designsettings.php:257
+msgid "Use defaults"
+msgstr "使用默认值"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default.
+#: lib/designsettings.php:259
+msgid "Restore default designs"
+msgstr "恢复默认外观"
+
+#. TRANS: Title for button on profile design page to reset all colour settings to default without saving.
+#: lib/designsettings.php:267
+msgid "Reset back to default"
+msgstr "重置到默认"
+
+#. TRANS: Title for button on profile design page to save settings.
+#: lib/designsettings.php:272
+msgid "Save design"
+msgstr "保存外观"
+
+#. TRANS: Error message displayed if design settings could not be saved.
+#. TRANS: Error message displayed if design settings could not be saved after clicking "Use defaults".
+#: lib/designsettings.php:405 lib/designsettings.php:427
+msgid "Couldn't update your design."
+msgstr "无法更新你的外观。"
#. TRANS: Success message displayed if design settings were saved after clicking "Use defaults".
#: lib/designsettings.php:433
msgid "Design defaults restored."
msgstr "默认外观已恢复。"
-#: lib/disfavorform.php:114 lib/disfavorform.php:144
+#. TRANS: Exception. %s is an ID.
+#: lib/discovery.php:153
+#, php-format
+msgid "Unable to find services for %s."
+msgstr "无法找到 %s 的服务。"
+
+#. TRANS: Form legend for removing the favourite status for a favourite notice.
+#. TRANS: Title for button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:108 lib/disfavorform.php:140
msgid "Disfavor this notice"
msgstr "取消收藏这个消息"
-#: lib/favorform.php:114 lib/favorform.php:143
+#. TRANS: Button text for removing the favourite status for a favourite notice.
+#: lib/disfavorform.php:136
+msgctxt "BUTTON"
+msgid "Disfavor favorite"
+msgstr "不赞成的最爱"
+
+#. TRANS: Form legend for adding the favourite status to a notice.
+#. TRANS: Title for button text for adding the favourite status to a notice.
+#: lib/favorform.php:108 lib/favorform.php:139
msgid "Favor this notice"
msgstr "收藏"
+#. TRANS: Button text for adding the favourite status to a notice.
+#: lib/favorform.php:135
+msgctxt "BUTTON"
+msgid "Favor"
+msgstr "请"
+
#: lib/feed.php:84
msgid "RSS 1.0"
msgstr "RSS 1.0"
@@ -7409,6 +8223,18 @@ msgstr "Atom"
msgid "FOAF"
msgstr "FOAF"
+#: lib/feedimporter.php:75
+msgid "Not an atom feed."
+msgstr "不是一个Atom源"
+
+#: lib/feedimporter.php:82
+msgid "No author in the feed."
+msgstr "没有在源中的作者。"
+
+#: lib/feedimporter.php:89
+msgid "Can't import without a user."
+msgstr "没有用户无法导入。"
+
#. TRANS: Header for feed links (h2).
#: lib/feedlist.php:66
msgid "Feeds"
@@ -7443,30 +8269,30 @@ msgstr "执行"
msgid "Grant this user the \"%s\" role"
msgstr "给这个用户添加\\\"%s\\\"权限"
-#: lib/groupeditform.php:154
+#: lib/groupeditform.php:147
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr "1 到 64 个小写字母或数字,不包含标点或空格"
-#: lib/groupeditform.php:163
+#: lib/groupeditform.php:156
msgid "URL of the homepage or blog of the group or topic."
msgstr "这个小组或主题的主页或博客 URL。"
-#: lib/groupeditform.php:168
+#: lib/groupeditform.php:161
msgid "Describe the group or topic"
msgstr "小组或主题的描述"
-#: lib/groupeditform.php:170
+#: lib/groupeditform.php:163
#, php-format
msgid "Describe the group or topic in %d character or less"
msgid_plural "Describe the group or topic in %d characters or less"
msgstr[0] "用不超过%d个字符描述下这个小组或者主题"
-#: lib/groupeditform.php:182
+#: lib/groupeditform.php:175
msgid ""
"Location for the group, if any, like \"City, State (or Region), Country\"."
msgstr "小组的地理位置,例如“国家、省份、城市”。"
-#: lib/groupeditform.php:190
+#: lib/groupeditform.php:183
#, php-format
msgid ""
"Extra nicknames for the group, separated with commas or spaces. Maximum %d "
@@ -7570,54 +8396,55 @@ msgstr "这个组所发布的消息的标签"
msgid "This page is not available in a media type you accept"
msgstr "这个页面不提供你想要的媒体类型"
-#: lib/imagefile.php:72
+#. TRANS: Exception thrown when trying to upload an unsupported image file format.
+#: lib/imagefile.php:73
msgid "Unsupported image file format."
msgstr "不支持这种图像格式。"
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#: lib/imagefile.php:90
+#: lib/imagefile.php:91
#, php-format
msgid "That file is too big. The maximum file size is %s."
msgstr "文件太大。文件大小限制在%s以下。"
-#: lib/imagefile.php:95
+#. TRANS: Exception thrown when uploading an image and that action could not be completed.
+#: lib/imagefile.php:97
msgid "Partial upload."
msgstr "部分上传。"
-#. TRANS: Client exception thrown when a file upload operation has failed with an unknown reason.
-#: lib/imagefile.php:103 lib/mediafile.php:228
-msgid "System error uploading file."
-msgstr "上传文件时出错。"
-
-#: lib/imagefile.php:111
+#. TRANS: Exception thrown when uploading a file as image that is not an image or is a corrupt file.
+#: lib/imagefile.php:115
msgid "Not an image or corrupt file."
msgstr "不是图片文件或文件已损坏。"
-#: lib/imagefile.php:160
+#. TRANS: Exception thrown during resize when image has been registered as present, but is no longer there.
+#: lib/imagefile.php:178
msgid "Lost our file."
msgstr "文件数据丢失"
-#: lib/imagefile.php:197 lib/imagefile.php:237
+#. TRANS: Exception thrown when trying to resize an unknown file type.
+#. TRANS: Exception thrown when trying resize an unknown file type.
+#: lib/imagefile.php:216 lib/imagefile.php:257
msgid "Unknown file type"
msgstr "未知文件类型"
#. TRANS: Number of megabytes. %d is the number.
-#: lib/imagefile.php:283
+#: lib/imagefile.php:303
#, php-format
msgid "%dMB"
msgid_plural "%dMB"
msgstr[0] "%dMB"
#. TRANS: Number of kilobytes. %d is the number.
-#: lib/imagefile.php:287
+#: lib/imagefile.php:307
#, php-format
msgid "%dkB"
msgid_plural "%dkB"
msgstr[0] "%dkB"
#. TRANS: Number of bytes. %d is the number.
-#: lib/imagefile.php:290
+#: lib/imagefile.php:310
#, php-format
msgid "%dB"
msgid_plural "%dB"
@@ -7637,23 +8464,25 @@ msgstr "未知的收件箱来源%d。"
msgid "Leave"
msgstr "离开"
-#: lib/logingroupnav.php:80
+#. TRANS: Title for menu item for logging in to the StatusNet site.
+#: lib/logingroupnav.php:79
msgid "Login with a username and password"
msgstr "用用户名和密码登录。"
-#: lib/logingroupnav.php:86
+#. TRANS: Title for menu item for registering with the StatusNet site.
+#: lib/logingroupnav.php:87
msgid "Sign up for a new account"
msgstr "注册一个新帐户"
#. TRANS: Subject for address confirmation email.
-#: lib/mail.php:174
+#: lib/mail.php:168
msgid "Email address confirmation"
msgstr "电子邮件地址确认"
#. TRANS: Body for address confirmation email.
#. TRANS: %1$s is the addressed user's nickname, %2$s is the StatusNet sitename,
#. TRANS: %3$s is the URL to confirm at.
-#: lib/mail.php:179
+#: lib/mail.php:173
#, php-format
msgid ""
"Hey, %1$s.\n"
@@ -7684,14 +8513,14 @@ msgstr ""
#. TRANS: Subject of new-subscriber notification e-mail.
#. TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename.
-#: lib/mail.php:246
+#: lib/mail.php:238
#, php-format
msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s 开始关注你在 %2$s 的消息。"
#. TRANS: This is a paragraph in a new-subscriber e-mail.
#. TRANS: %s is a URL where the subscriber can be reported as abusive.
-#: lib/mail.php:253
+#: lib/mail.php:245
#, php-format
msgid ""
"If you believe this account is being used abusively, you can block them from "
@@ -7705,7 +8534,7 @@ msgstr ""
#. TRANS: %3$s is the subscriber's profile URL, %4$s is the subscriber's location (or empty)
#. TRANS: %5$s is the subscriber's homepage URL (or empty), %6%s is the subscriber's bio (or empty)
#. TRANS: %7$s is a link to the addressed user's e-mail settings.
-#: lib/mail.php:263
+#: lib/mail.php:255
#, php-format
msgid ""
"%1$s is now listening to your notices on %2$s.\n"
@@ -7732,14 +8561,14 @@ msgstr ""
#. TRANS: Profile info line in new-subscriber notification e-mail.
#. TRANS: %s is biographical information.
-#: lib/mail.php:286
+#: lib/mail.php:278
#, php-format
msgid "Bio: %s"
msgstr "自我介绍:%s"
#. TRANS: Subject of notification mail for new posting email address.
#. TRANS: %s is the StatusNet sitename.
-#: lib/mail.php:315
+#: lib/mail.php:307
#, php-format
msgid "New email address for posting to %s"
msgstr "新的电子邮件地址,用于发布 %s 信息"
@@ -7747,7 +8576,7 @@ msgstr "新的电子邮件地址,用于发布 %s 信息"
#. TRANS: Body of notification mail for new posting email address.
#. TRANS: %1$s is the StatusNet sitename, %2$s is the e-mail address to send
#. TRANS: to to post by e-mail, %3$s is a URL to more instructions.
-#: lib/mail.php:321
+#: lib/mail.php:313
#, php-format
msgid ""
"You have a new posting address on %1$s.\n"
@@ -7771,34 +8600,34 @@ msgstr ""
#. TRANS: Subject line for SMS-by-email notification messages.
#. TRANS: %s is the posting user's nickname.
-#: lib/mail.php:442
+#: lib/mail.php:434
#, php-format
msgid "%s status"
msgstr "%s 状态"
#. TRANS: Subject line for SMS-by-email address confirmation message.
-#: lib/mail.php:468
+#: lib/mail.php:460
msgid "SMS confirmation"
msgstr "SMS 验证"
#. TRANS: Main body heading for SMS-by-email address confirmation message.
#. TRANS: %s is the addressed user's nickname.
-#: lib/mail.php:472
+#: lib/mail.php:464
#, php-format
msgid "%s: confirm you own this phone number with this code:"
msgstr "%s:通过此代码证明这是你的手机:"
#. TRANS: Subject for 'nudge' notification email.
#. TRANS: %s is the nudging user.
-#: lib/mail.php:493
+#: lib/mail.php:485
#, php-format
-msgid "You've been nudged by %s"
-msgstr "你被%s呼叫了"
+msgid "You have been nudged by %s"
+msgstr "您被 %s 已推动"
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at, %4$s is the StatusNet sitename.
-#: lib/mail.php:500
+#: lib/mail.php:492
#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
@@ -7826,7 +8655,7 @@ msgstr ""
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
-#: lib/mail.php:547
+#: lib/mail.php:539
#, php-format
msgid "New private message from %s"
msgstr "来自%s的私信"
@@ -7835,7 +8664,7 @@ msgstr "来自%s的私信"
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
#. TRANS: %5$s is the StatusNet sitename.
-#: lib/mail.php:555
+#: lib/mail.php:547
#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
@@ -7870,7 +8699,7 @@ msgstr ""
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:607
+#: lib/mail.php:599
#, php-format
msgid "%1$s (@%2$s) added your notice as a favorite"
msgstr "%1$s (@%2$s) 收藏了你的消息"
@@ -7880,7 +8709,7 @@ msgstr "%1$s (@%2$s) 收藏了你的消息"
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#: lib/mail.php:614
+#: lib/mail.php:606
#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
@@ -7918,7 +8747,7 @@ msgstr ""
"%6$s\n"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
-#: lib/mail.php:672
+#: lib/mail.php:664
#, php-format
msgid ""
"The full conversation can be read here:\n"
@@ -7931,7 +8760,7 @@ msgstr ""
#. TRANS: E-mail subject for notice notification.
#. TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-#: lib/mail.php:680
+#: lib/mail.php:672
#, php-format
msgid "%1$s (@%2$s) sent a notice to your attention"
msgstr "%1$s (@%2$s) 给你发送了一条消息"
@@ -7942,7 +8771,7 @@ msgstr "%1$s (@%2$s) 给你发送了一条消息"
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replied for the addressed user,
#. TRANS: %8$s is a URL to the addressed user's e-mail settings, %9$s is the sender's nickname.
-#: lib/mail.php:688
+#: lib/mail.php:680
#, php-format
msgid ""
"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n"
@@ -7991,11 +8820,11 @@ msgstr ""
"\n"
"P.S. 你可以到这里关掉这些邮件提醒:%8$s\n"
-#: lib/mailbox.php:89
+#: lib/mailbox.php:87
msgid "Only the user can read their own mailboxes."
msgstr "只有该用户才能查看自己的私信。"
-#: lib/mailbox.php:139
+#: lib/mailbox.php:125
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."
@@ -8003,10 +8832,6 @@ msgstr ""
"你没有任何私信。你可以试着发送私信给其他用户鼓励他们用私信和你交流。其他用户"
"发给你你私信只有你看得到。"
-#: lib/mailbox.php:228 lib/noticelist.php:521
-msgid "from"
-msgstr "通过"
-
#: lib/mailhandler.php:37
msgid "Could not parse message."
msgstr "无法解析消息。"
@@ -8033,38 +8858,6 @@ msgstr "不支持的信息格式:%s"
msgid "There was a database error while saving your file. Please try again."
msgstr "保存你的文件时数据库出现了一个错误。请重试。"
-#. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini.
-#: lib/mediafile.php:194
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "上传文件大小超过了 php.ini 中 upload_max_filesize 的设置限制。"
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:200
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "上传文件大小超过了 HTML 表单中 MAX_FILE_SIZE 的设置限制。"
-
-#. TRANS: Client exception.
-#: lib/mediafile.php:206
-msgid "The uploaded file was only partially uploaded."
-msgstr "上传的文件只有部分被上传。"
-
-#. TRANS: Client exception thrown when a temporary folder is not present to store a file upload.
-#: lib/mediafile.php:214
-msgid "Missing a temporary folder."
-msgstr "缺少一个临时文件夹。"
-
-#. TRANS: Client exception thrown when writing to disk is not possible during a file upload operation.
-#: lib/mediafile.php:218
-msgid "Failed to write file to disk."
-msgstr "写入磁盘失败。"
-
-#. TRANS: Client exception thrown when a file upload operation has been stopped by an extension.
-#: lib/mediafile.php:222
-msgid "File upload stopped by extension."
-msgstr "文件上传被扩展停止了。"
-
#. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota.
#: lib/mediafile.php:238 lib/mediafile.php:281
msgid "File exceeds user's quota."
@@ -8085,7 +8878,7 @@ msgstr "无法判断文件的 MIME 类型。"
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %1$s is the file type that was denied, %2$s is the application part of
#. TRANS: the MIME type that was denied.
-#: lib/mediafile.php:394
+#: lib/mediafile.php:396
#, php-format
msgid ""
"\"%1$s\" is not a supported file type on this server. Try using another %2$s "
@@ -8094,7 +8887,7 @@ msgstr "此服务器不支持 “%1$s” 的文件格式,试下使用其他的
#. TRANS: Client exception thrown trying to upload a forbidden MIME type.
#. TRANS: %s is the file type that was denied.
-#: lib/mediafile.php:399
+#: lib/mediafile.php:401
#, php-format
msgid "\"%s\" is not a supported file type on this server."
msgstr "这个服务器不支持 %s 的文件格式。"
@@ -8126,18 +8919,26 @@ msgctxt "Send button for sending notice"
msgid "Send"
msgstr "发布"
+#: lib/messagelist.php:77
+msgid "Messages"
+msgstr "消息"
+
+#: lib/messagelistitem.php:123 lib/noticelist.php:522
+msgid "from"
+msgstr "通过"
+
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:163
+#: lib/nickname.php:165
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "昵称只能使用小写字母和数字且不能使用空格。"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:176
+#: lib/nickname.php:178
msgid "Nickname cannot be empty."
msgstr "昵称不能为空。"
#. TRANS: Validation error in form for registration, profile and group settings, etc.
-#: lib/nickname.php:189
+#: lib/nickname.php:191
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@@ -8152,11 +8953,11 @@ msgstr "发送一个通知"
msgid "What's up, %s?"
msgstr "%s,最近怎么样?"
-#: lib/noticeform.php:193
+#: lib/noticeform.php:194
msgid "Attach"
msgstr "附件"
-#: lib/noticeform.php:197
+#: lib/noticeform.php:198
msgid "Attach a file"
msgstr "添加一个文件附件"
@@ -8175,55 +8976,59 @@ msgid ""
msgstr "抱歉,获取你的地理位置时间过长,请稍候重试"
#. TRANS: Used in coordinates as abbreviation of north
-#: lib/noticelist.php:451
+#: lib/noticelist.php:452
msgid "N"
msgstr "N"
#. TRANS: Used in coordinates as abbreviation of south
-#: lib/noticelist.php:453
+#: lib/noticelist.php:454
msgid "S"
msgstr "S"
#. TRANS: Used in coordinates as abbreviation of east
-#: lib/noticelist.php:455
+#: lib/noticelist.php:456
msgid "E"
msgstr "E"
#. TRANS: Used in coordinates as abbreviation of west
-#: lib/noticelist.php:457
+#: lib/noticelist.php:458
msgid "W"
msgstr "W"
-#: lib/noticelist.php:459
+#: lib/noticelist.php:460
#, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
-#: lib/noticelist.php:468
+#: lib/noticelist.php:469
msgid "at"
msgstr "位于"
-#: lib/noticelist.php:517
+#: lib/noticelist.php:518
msgid "web"
msgstr "网页"
-#: lib/noticelist.php:583
+#: lib/noticelist.php:584
msgid "in context"
msgstr "查看对话"
-#: lib/noticelist.php:618
+#: lib/noticelist.php:619
msgid "Repeated by"
msgstr "转发来自"
-#: lib/noticelist.php:645
+#: lib/noticelist.php:646
msgid "Reply to this notice"
msgstr "回复"
-#: lib/noticelist.php:646
+#: lib/noticelist.php:647
msgid "Reply"
msgstr "回复"
-#: lib/noticelist.php:690
+#: lib/noticelist.php:673
+msgid "Delete this notice"
+msgstr "删除"
+
+#: lib/noticelist.php:691
msgid "Notice repeated"
msgstr "消息已转发"
@@ -8260,77 +9065,108 @@ msgstr "复制消息。"
msgid "Couldn't insert new subscription."
msgstr "无法添加新的关注。"
-#: lib/personalgroupnav.php:102
-msgid "Personal"
-msgstr "我的主页"
-
+#. TRANS: Personal group navigation menu option when logged in for viewing @-replies.
#: lib/personalgroupnav.php:107
+msgctxt "MENU"
msgid "Replies"
-msgstr "回复"
+msgstr "答复"
-#: lib/personalgroupnav.php:117
+#. TRANS: Personal group navigation menu option when logged in for seeing own profile.
+#: lib/personalgroupnav.php:114
+msgctxt "MENU"
+msgid "Profile"
+msgstr "配置文件"
+
+#. TRANS: Personal group navigation menu option when logged in for viewing own favourited notices.
+#: lib/personalgroupnav.php:120
+msgctxt "MENU"
msgid "Favorites"
msgstr "收藏夹"
-#: lib/personalgroupnav.php:128
+#. TRANS: Personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:133
+msgctxt "MENU"
msgid "Inbox"
msgstr "收件箱"
-#: lib/personalgroupnav.php:129
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing recieved personal messages.
+#: lib/personalgroupnav.php:135
msgid "Your incoming messages"
msgstr "你收到的私信"
-#: lib/personalgroupnav.php:133
+#. TRANS: Personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:140
+msgctxt "MENU"
msgid "Outbox"
msgstr "发件箱"
-#: lib/personalgroupnav.php:134
+#. TRANS: Tooltip for personal group navigation menu option when logged in for viewing senet personal messages.
+#: lib/personalgroupnav.php:142
msgid "Your sent messages"
msgstr "你发送的私信"
+#. TRANS: Title for personal tag cloud section. %s is a user nickname.
#: lib/personaltagcloudsection.php:56
#, php-format
msgid "Tags in %s's notices"
msgstr "%s的消息中的标签"
#. TRANS: Displayed as version information for a plugin if no version information was found.
-#: lib/plugin.php:121
+#: lib/plugin.php:126
msgid "Unknown"
msgstr "未知的"
-#: lib/profileaction.php:109 lib/profileaction.php:205 lib/subgroupnav.php:82
+#. TRANS: H2 text for user subscription statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:127 lib/profileaction.php:225 lib/subgroupnav.php:82
msgid "Subscriptions"
msgstr "关注的"
-#: lib/profileaction.php:126
+#. TRANS: Text for user subscription statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:144
msgid "All subscriptions"
msgstr "所有关注的"
-#: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90
+#. TRANS: H2 text for user subscriber statistics.
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:164 lib/profileaction.php:232 lib/subgroupnav.php:90
msgid "Subscribers"
msgstr "关注者"
-#: lib/profileaction.php:161
+#. TRANS: Text for user subscription statistics if user has more subscribers than displayed.
+#: lib/profileaction.php:181
msgid "All subscribers"
msgstr "所有关注者"
-#: lib/profileaction.php:191
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:213
msgid "User ID"
msgstr "用户 ID"
-#: lib/profileaction.php:196
+#. TRANS: Label for user statistics.
+#: lib/profileaction.php:219
msgid "Member since"
msgstr "注册时间"
-#. TRANS: Average count of posts made per day since account registration
-#: lib/profileaction.php:235
+#. TRANS: Label for user statistics.
+#. TRANS: H2 text for user group membership statistics.
+#: lib/profileaction.php:239 lib/profileaction.php:290
+#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
+msgid "Groups"
+msgstr "小组"
+
+#. TRANS: Label for user statistics.
+#. TRANS: Average count of posts made per day since account registration.
+#: lib/profileaction.php:253
msgid "Daily average"
msgstr "日均"
-#: lib/profileaction.php:264
+#. TRANS: Text for user group membership statistics if user has more subscriptions than displayed.
+#: lib/profileaction.php:305
msgid "All groups"
msgstr "所有小组"
+#. TRANS: Server error displayed when using an unimplemented method.
#: lib/profileformaction.php:123
msgid "Unimplemented method."
msgstr "未使用的方法。"
@@ -8377,7 +9213,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr "取消这个用户的\"%s\"权限"
#. TRANS: Client error on action trying to visit a non-existing page.
-#: lib/router.php:957
+#: lib/router.php:974
msgid "Page not found."
msgstr "没有找到页面。"
@@ -8467,6 +9303,10 @@ msgstr "邀请"
msgid "Invite friends and colleagues to join you on %s"
msgstr "邀请朋友和同事来%s一起和你交流"
+#: lib/subscribeform.php:115 lib/subscribeform.php:139
+msgid "Subscribe to this user"
+msgstr "关注这个用户"
+
#: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged"
@@ -8576,118 +9416,130 @@ msgstr "取消关注"
msgid "User %1$s (%2$d) has no profile record."
msgstr "用户 %1$s (%2$d) 没有个人信息记录。"
-#: lib/userprofile.php:119
+#. TRANS: Link text for changeing the avatar of the logged in user.
+#: lib/userprofile.php:121
msgid "Edit Avatar"
msgstr "编辑头像"
-#: lib/userprofile.php:236 lib/userprofile.php:250
+#. TRANS: H2 for user actions in a profile.
+#. TRANS: H2 for entity actions in a profile.
+#: lib/userprofile.php:245 lib/userprofile.php:261
msgid "User actions"
msgstr "用户动作"
-#: lib/userprofile.php:239
+#. TRANS: Text shown in user profile of not yet compeltely deleted users.
+#: lib/userprofile.php:249
msgid "User deletion in progress..."
msgstr "用户删除处理中……"
-#: lib/userprofile.php:265
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:277
msgid "Edit profile settings"
msgstr "编辑个人信息设置"
-#: lib/userprofile.php:266
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:279
msgid "Edit"
msgstr "编辑"
-#: lib/userprofile.php:289
+#. TRANS: Link title for link on user profile.
+#: lib/userprofile.php:303
msgid "Send a direct message to this user"
msgstr "给该用户发送私信"
-#: lib/userprofile.php:290
+#. TRANS: Link text for link on user profile.
+#: lib/userprofile.php:305
msgid "Message"
msgstr "私信"
-#: lib/userprofile.php:331
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:347
msgid "Moderate"
msgstr "审核"
-#: lib/userprofile.php:369
+#. TRANS: Label text on user profile to select a user role.
+#: lib/userprofile.php:386
msgid "User role"
msgstr "用户权限"
-#: lib/userprofile.php:371
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:389
msgctxt "role"
msgid "Administrator"
msgstr "管理员"
-#: lib/userprofile.php:372
+#. TRANS: Role that can be set for a user profile.
+#: lib/userprofile.php:391
msgctxt "role"
msgid "Moderator"
msgstr "审核员"
+#: lib/util.php:305
+#, fuzzy
+msgid "Not allowed to log in."
+msgstr "未登录。"
+
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1306
+#: lib/util.php:1309
msgid "a few seconds ago"
msgstr "几秒前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1309
+#: lib/util.php:1312
msgid "about a minute ago"
msgstr "约1分钟前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1313
+#: lib/util.php:1316
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
msgstr[0] "约%d分钟前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1316
+#: lib/util.php:1319
msgid "about an hour ago"
msgstr "约1小时前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1320
+#: lib/util.php:1323
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
msgstr[0] "约%d小时前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1323
+#: lib/util.php:1326
msgid "about a day ago"
msgstr "约1天前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1327
+#: lib/util.php:1330
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
msgstr[0] "约%d天前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1330
+#: lib/util.php:1333
msgid "about a month ago"
msgstr "约1个月前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1334
+#: lib/util.php:1337
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
msgstr[0] "约%d个月前"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
-#: lib/util.php:1337
+#: lib/util.php:1340
msgid "about a year ago"
msgstr "约1年前"
-#: lib/webcolor.php:80
-#, php-format
-msgid "%s is not a valid color!"
-msgstr "%s不是有效的颜色!"
-
-#. TRANS: Validation error for a web colour.
-#. TRANS: %s is the provided (invalid) text for colour.
-#: lib/webcolor.php:120
+#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
+#. TRANS: %s is the provided (invalid) color code.
+#: lib/webcolor.php:81 lib/webcolor.php:121
#, php-format
msgid "%s is not a valid color! Use 3 or 6 hex characters."
msgstr "%s不是有效的颜色!应使用3或6个十六进制字符。"
@@ -8707,29 +9559,17 @@ msgid_plural "Message too long. Maximum is %1$d characters, you sent %2$d."
msgstr[0] "消息太长了,不能超过%1$d个字符,你发送的是%2$d。"
#. TRANS: Exception.
-#: lib/xrd.php:64
+#: lib/xrd.php:63
msgid "Invalid XML."
msgstr "无效的 XML。"
#. TRANS: Exception.
-#: lib/xrd.php:69
+#: lib/xrd.php:68
msgid "Invalid XML, missing XRD root."
-msgstr ""
+msgstr "不合法的XML, 缺少XRD根"
#. TRANS: Commandline script output. %s is the filename that contains a backup for a user.
-#: scripts/restoreuser.php:61
+#: scripts/restoreuser.php:62
#, php-format
msgid "Getting backup from file '%s'."
msgstr "从文件'%s'获取备份。"
-
-#. TRANS: Commandline script output.
-#: scripts/restoreuser.php:91
-msgid "No user specified; using backup user."
-msgstr "没有用户被指定;使用备份用户。"
-
-#. TRANS: Commandline script output. %d is the number of entries in the activity stream in backup; used for plural.
-#: scripts/restoreuser.php:98
-#, php-format
-msgid "%d entry in backup."
-msgid_plural "%d entries in backup."
-msgstr[0] "备份中有 %d 个条目。"
diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot
index 5a02165ae5..9069b7d867 100644
--- a/plugins/APC/locale/APC.pot
+++ b/plugins/APC/locale/APC.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po
index bf8ac0c1ff..efc6b353c7 100644
--- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
-# Translation of StatusNet - APC to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
-# Expored from translatewiki.net
+# Translation of StatusNet - APC to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
+# Exported from translatewiki.net
#
# Author: EugeneZelenko
# --
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po
index 2183ce6590..5323bcd24f 100644
--- a/plugins/APC/locale/br/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Breton (Brezhoneg)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Fulup
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po
new file mode 100644
index 0000000000..8461a88ae3
--- /dev/null
+++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - APC to German (Deutsch)
+# Exported from translatewiki.net
+#
+# Author: Fujnky
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - APC\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-02-14 16:01+0000\n"
+"PO-Revision-Date: 2011-02-14 16:07:01+0000\n"
+"Language-Team: German \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-01-29 22:19:19+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: de\n"
+"X-Message-Group: #out-statusnet-plugin-apc\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: APCPlugin.php:115
+msgid ""
+"Use the APC variable cache "
+"to cache query results."
+msgstr ""
+"Benutze den APC-Variablen-"
+"Cache um Anfragenergebnisse zwischenzuspeichern."
diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po
index c3f550489d..8542aa3825 100644
--- a/plugins/APC/locale/es/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Spanish (Español)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Translationista
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po
index 727ff53925..8e7e7b1654 100644
--- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to French (Français)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Verdy p
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po
index 346f56c223..d23ee59795 100644
--- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Galician (Galego)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Toliño
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Galician \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po
index 1dcb5622ac..ced1738a2e 100644
--- a/plugins/APC/locale/he/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Hebrew (עברית)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: YaronSh
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Hebrew \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po
index 044126ae65..cbdb37f563 100644
--- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Interlingua (Interlingua)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: McDutchie
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po
index 377e44831b..7adc407f07 100644
--- a/plugins/APC/locale/id/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Indonesian (Bahasa Indonesia)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Farras
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Indonesian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: id\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po
index db9d292608..88636ac364 100644
--- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Macedonian (Македонски)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Bjankuloski06
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po
index 80afde4aeb..728079ab8b 100644
--- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Norwegian (bokmål) (Norsk (bokmål))
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Nghtwlkr
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Norwegian (bokmål) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po
index 827e5b07af..6fd9d5097e 100644
--- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Dutch (Nederlands)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: McDutchie
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po
index 12d77edb4c..ce4e3d775f 100644
--- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Polish (Polski)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Sp5uhe
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Polish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po
index 51f5644beb..272a40f285 100644
--- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Portuguese (Português)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Waldir
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po
index ed7583e5c8..820cc399e3 100644
--- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Brazilian Portuguese (Português do Brasil)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Giro720
# --
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Brazilian Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po
index 617b924567..22e138b3ab 100644
--- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Russian (Русский)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Александр Сигачёв
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po
index b9b45b8a0c..d4fd9a85f0 100644
--- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Tagalog (Tagalog)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: AnakngAraw
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po
index 2b381d3313..e120089a3c 100644
--- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Ukrainian (Українська)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Boogie
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po
index 39666116b4..de1063286a 100644
--- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - APC to Simplified Chinese (中文(简体))
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Chenxiaoqino
# --
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:16+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:28+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot
index 3adac7ea93..9f4cb0ccd1 100644
--- a/plugins/Adsense/locale/Adsense.pot
+++ b/plugins/Adsense/locale/Adsense.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po
index 114231d779..0e3bd0e0f7 100644
--- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
-# Translation of StatusNet - Adsense to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
-# Expored from translatewiki.net
+# Translation of StatusNet - Adsense to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
+# Exported from translatewiki.net
#
# Author: EugeneZelenko
# Author: Jim-by
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:23+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po
index 8cb8ca2c9e..d828b6fc13 100644
--- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Breton (Brezhoneg)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Y-M D
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:25+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po
index bfd9c91557..4a796eef40 100644
--- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po
@@ -1,6 +1,8 @@
# Translation of StatusNet - Adsense to German (Deutsch)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
+# Author: Fujnky
+# Author: Michael
# Author: The Evil IP address
# --
# This file is distributed under the same license as the StatusNet package.
@@ -9,13 +11,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-02-14 16:01+0000\n"
+"PO-Revision-Date: 2011-02-14 16:06:55+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-29 22:19:16+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
@@ -58,7 +60,7 @@ msgstr "Skript-URL"
#: adsenseadminpanel.php:171
msgid "Script URL (advanced)"
-msgstr ""
+msgstr "Skript-URL (erweitert)"
#: adsenseadminpanel.php:176
msgid "Medium rectangle"
@@ -70,7 +72,7 @@ msgstr ""
#: adsenseadminpanel.php:182
msgid "Rectangle"
-msgstr ""
+msgstr "Rechteck"
#: adsenseadminpanel.php:183
msgid "Rectangle slot code"
diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po
index 600e93b3a0..090083bcef 100644
--- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Spanish (Español)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Translationista
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po
index 64dd5a19fb..a27df2f7ba 100644
--- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to French (Français)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Peter17
# Author: Verdy p
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po
index 3109ce0005..89922e3e58 100644
--- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Galician (Galego)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Toliño
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Galician \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
@@ -78,7 +78,7 @@ msgstr ""
#: adsenseadminpanel.php:188
msgid "Leaderboard"
-msgstr ""
+msgstr "Taboleiro de logros"
#: adsenseadminpanel.php:189
msgid "Leaderboard slot code"
diff --git a/plugins/Adsense/locale/he/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/he/LC_MESSAGES/Adsense.po
new file mode 100644
index 0000000000..e636877490
--- /dev/null
+++ b/plugins/Adsense/locale/he/LC_MESSAGES/Adsense.po
@@ -0,0 +1,101 @@
+# Translation of StatusNet - Adsense to Hebrew (עברית)
+# Expored from translatewiki.net
+#
+# Author: YaronSh
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Adsense\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-01-15 00:20+0000\n"
+"PO-Revision-Date: 2011-01-15 00:23:05+0000\n"
+"Language-Team: Hebrew \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-01-14 13:18:25+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: he\n"
+"X-Message-Group: #out-statusnet-plugin-adsense\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Menu item title/tooltip
+#: AdsensePlugin.php:194
+msgid "AdSense configuration"
+msgstr "תצורת AdSense"
+
+#. TRANS: Menu item for site administration
+#: AdsensePlugin.php:196
+msgid "AdSense"
+msgstr ""
+
+#: AdsensePlugin.php:209
+msgid "Plugin to add Google AdSense to StatusNet sites."
+msgstr ""
+
+#: adsenseadminpanel.php:52
+msgctxt "TITLE"
+msgid "AdSense"
+msgstr ""
+
+#: adsenseadminpanel.php:62
+msgid "AdSense settings for this StatusNet site"
+msgstr ""
+
+#: adsenseadminpanel.php:164
+msgid "Client ID"
+msgstr ""
+
+#: adsenseadminpanel.php:165
+msgid "Google client ID"
+msgstr ""
+
+#: adsenseadminpanel.php:170
+msgid "Ad script URL"
+msgstr ""
+
+#: adsenseadminpanel.php:171
+msgid "Script URL (advanced)"
+msgstr ""
+
+#: adsenseadminpanel.php:176
+msgid "Medium rectangle"
+msgstr ""
+
+#: adsenseadminpanel.php:177
+msgid "Medium rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:182
+msgid "Rectangle"
+msgstr ""
+
+#: adsenseadminpanel.php:183
+msgid "Rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:188
+msgid "Leaderboard"
+msgstr ""
+
+#: adsenseadminpanel.php:189
+msgid "Leaderboard slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:194
+msgid "Skyscraper"
+msgstr "גורד שחקים"
+
+#: adsenseadminpanel.php:195
+msgid "Wide skyscraper slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:208
+msgid "Save"
+msgstr "שמירה"
+
+#: adsenseadminpanel.php:208
+msgid "Save AdSense settings"
+msgstr ""
diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po
index 398f41cb92..b6e28cbecb 100644
--- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Interlingua (Interlingua)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: McDutchie
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po
index b741344093..4e24b45d5d 100644
--- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Italian (Italiano)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Milocasagrande
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Italian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: it\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po
index 7ff0daff8b..af27e31ea1 100644
--- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Georgian (ქართული)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Zaal
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Georgian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ka\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/lb/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/lb/LC_MESSAGES/Adsense.po
new file mode 100644
index 0000000000..8126640244
--- /dev/null
+++ b/plugins/Adsense/locale/lb/LC_MESSAGES/Adsense.po
@@ -0,0 +1,101 @@
+# Translation of StatusNet - Adsense to Luxembourgish (Lëtzebuergesch)
+# Expored from translatewiki.net
+#
+# Author: Robby
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Adsense\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-01-14 10:29+0000\n"
+"PO-Revision-Date: 2011-01-14 10:32:40+0000\n"
+"Language-Team: Luxembourgish \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-01-10 18:25:56+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: lb\n"
+"X-Message-Group: #out-statusnet-plugin-adsense\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Menu item title/tooltip
+#: AdsensePlugin.php:194
+msgid "AdSense configuration"
+msgstr "AdSense Astellungen"
+
+#. TRANS: Menu item for site administration
+#: AdsensePlugin.php:196
+msgid "AdSense"
+msgstr ""
+
+#: AdsensePlugin.php:209
+msgid "Plugin to add Google AdSense to StatusNet sites."
+msgstr ""
+
+#: adsenseadminpanel.php:52
+msgctxt "TITLE"
+msgid "AdSense"
+msgstr ""
+
+#: adsenseadminpanel.php:62
+msgid "AdSense settings for this StatusNet site"
+msgstr ""
+
+#: adsenseadminpanel.php:164
+msgid "Client ID"
+msgstr ""
+
+#: adsenseadminpanel.php:165
+msgid "Google client ID"
+msgstr ""
+
+#: adsenseadminpanel.php:170
+msgid "Ad script URL"
+msgstr ""
+
+#: adsenseadminpanel.php:171
+msgid "Script URL (advanced)"
+msgstr ""
+
+#: adsenseadminpanel.php:176
+msgid "Medium rectangle"
+msgstr ""
+
+#: adsenseadminpanel.php:177
+msgid "Medium rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:182
+msgid "Rectangle"
+msgstr "Rechteck"
+
+#: adsenseadminpanel.php:183
+msgid "Rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:188
+msgid "Leaderboard"
+msgstr ""
+
+#: adsenseadminpanel.php:189
+msgid "Leaderboard slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:194
+msgid "Skyscraper"
+msgstr "Vertikale Banner"
+
+#: adsenseadminpanel.php:195
+msgid "Wide skyscraper slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:208
+msgid "Save"
+msgstr "Späicheren"
+
+#: adsenseadminpanel.php:208
+msgid "Save AdSense settings"
+msgstr "AdSense-Astellunge späicheren"
diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po
index d09bd254a8..3e27633f30 100644
--- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Macedonian (Македонски)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Bjankuloski06
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po
index 2ee52177c3..0a5a62f4cf 100644
--- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Dutch (Nederlands)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Siebrand
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/pl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pl/LC_MESSAGES/Adsense.po
new file mode 100644
index 0000000000..9dcd7a99fa
--- /dev/null
+++ b/plugins/Adsense/locale/pl/LC_MESSAGES/Adsense.po
@@ -0,0 +1,102 @@
+# Translation of StatusNet - Adsense to Polish (Polski)
+# Expored from translatewiki.net
+#
+# Author: Raven
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Adsense\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-01-15 00:20+0000\n"
+"PO-Revision-Date: 2011-01-15 00:23:05+0000\n"
+"Language-Team: Polish \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-01-14 13:18:25+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: pl\n"
+"X-Message-Group: #out-statusnet-plugin-adsense\n"
+"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && "
+"(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
+
+#. TRANS: Menu item title/tooltip
+#: AdsensePlugin.php:194
+msgid "AdSense configuration"
+msgstr ""
+
+#. TRANS: Menu item for site administration
+#: AdsensePlugin.php:196
+msgid "AdSense"
+msgstr "AdSense"
+
+#: AdsensePlugin.php:209
+msgid "Plugin to add Google AdSense to StatusNet sites."
+msgstr ""
+
+#: adsenseadminpanel.php:52
+msgctxt "TITLE"
+msgid "AdSense"
+msgstr "AdSense"
+
+#: adsenseadminpanel.php:62
+msgid "AdSense settings for this StatusNet site"
+msgstr ""
+
+#: adsenseadminpanel.php:164
+msgid "Client ID"
+msgstr ""
+
+#: adsenseadminpanel.php:165
+msgid "Google client ID"
+msgstr ""
+
+#: adsenseadminpanel.php:170
+msgid "Ad script URL"
+msgstr ""
+
+#: adsenseadminpanel.php:171
+msgid "Script URL (advanced)"
+msgstr ""
+
+#: adsenseadminpanel.php:176
+msgid "Medium rectangle"
+msgstr ""
+
+#: adsenseadminpanel.php:177
+msgid "Medium rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:182
+msgid "Rectangle"
+msgstr ""
+
+#: adsenseadminpanel.php:183
+msgid "Rectangle slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:188
+msgid "Leaderboard"
+msgstr ""
+
+#: adsenseadminpanel.php:189
+msgid "Leaderboard slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:194
+msgid "Skyscraper"
+msgstr "Skyscraper"
+
+#: adsenseadminpanel.php:195
+msgid "Wide skyscraper slot code"
+msgstr ""
+
+#: adsenseadminpanel.php:208
+msgid "Save"
+msgstr ""
+
+#: adsenseadminpanel.php:208
+msgid "Save AdSense settings"
+msgstr ""
diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po
index bc0707079b..9c882f885e 100644
--- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Portuguese (Português)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Waldir
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po
index 7fa9b02822..b631e40d8b 100644
--- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Brazilian Portuguese (Português do Brasil)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Giro720
# Author: Luckas Blade
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:13+0000\n"
"Language-Team: Brazilian Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po
index 684769b7c8..cd13346eed 100644
--- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Russian (Русский)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Lockal
# Author: Сrower
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:14+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po
index 0c2efda116..3f801f9389 100644
--- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Swedish (Svenska)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Jamminjohn
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:14+0000\n"
"Language-Team: Swedish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: sv\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po
index 0f474a73e9..796418a82d 100644
--- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Tagalog (Tagalog)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: AnakngAraw
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:14+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po
index 591ce56c46..6c027b4ba7 100644
--- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Ukrainian (Українська)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Boogie
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:14+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po
index dde80f4e9e..820a9a8821 100644
--- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - Adsense to Simplified Chinese (中文(简体))
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Chenxiaoqino
# Author: ZhengYiFeng
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:14+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-15 11:03:12+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot
index 46e5e79565..27f66777b3 100644
--- a/plugins/AnonymousFave/locale/AnonymousFave.pot
+++ b/plugins/AnonymousFave/locale/AnonymousFave.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po
index 7ca33b65e8..8f992cc067 100644
--- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
-# Translation of StatusNet - AnonymousFave to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
-# Expored from translatewiki.net
+# Translation of StatusNet - AnonymousFave to Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца))
+# Exported from translatewiki.net
#
# Author: EugeneZelenko
# Author: Jim-by
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po
index 63d668602b..c0540eb433 100644
--- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to Breton (Brezhoneg)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Y-M D
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po
index ed7eee5050..f105adc3c8 100644
--- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to German (Deutsch)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: The Evil IP address
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po
index f8ca6f6962..9dfe3737f5 100644
--- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to Spanish (Español)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Locos epraix
# Author: Translationista
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po
index 7057d23a5c..576e6a6e93 100644
--- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to French (Français)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Peter17
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po
index 4219415255..3c15e819cf 100644
--- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to Galician (Galego)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Toliño
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: Galician \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po
index 6f3039db2d..1fb662431c 100644
--- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to Interlingua (Interlingua)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: McDutchie
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po
index ff338c7a83..851bbcf3a0 100644
--- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to Macedonian (Македонски)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Bjankuloski06
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po
index 2910085a28..e98a66c527 100644
--- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to Dutch (Nederlands)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: SPQRobin
# Author: Siebrand
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po
index eaea31ce33..83febad297 100644
--- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to Portuguese (Português)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Waldir
# --
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
+"X-POT-Import-Date: 2011-01-14 13:18:27+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po
index a0f4c8c8da..315f19a735 100644
--- a/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/ru/LC_MESSAGES/AnonymousFave.po
@@ -1,5 +1,5 @@
# Translation of StatusNet - AnonymousFave to Russian (Русский)
-# Expored from translatewiki.net
+# Exported from translatewiki.net
#
# Author: Lockal
# Author: MaxSem
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-16 15:08+0000\n"
-"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
+"POT-Creation-Date: 2011-01-29 21:45+0000\n"
+"PO-Revision-Date: 2011-01-29 21:49:15+0000\n"
"Language-Team: Russian